* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0f1f;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 10, 22, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    cursor: pointer;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff4d8d, #b13e6f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.logo:hover .logo-icon {
    transform: rotate(6deg) scale(1.03);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #e0e4f0;
    font-weight: 500;
    font-size: 15px;
    transition: 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff7eb3;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4d8d;
    border-radius: 4px;
}

.build-btn {
    background: linear-gradient(95deg, #ff4d8d, #ff7eb3);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s;
}

.build-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 77, 141, 0.35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    border-radius: 12px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    padding: 140px 5% 80px;
    position: relative;
    background: radial-gradient(circle at 20% 30%, #0f172f, #050a18);
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    margin-bottom: 24px;
}

.hero-left h1 {
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-left p {
    color: #cbd5e6;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.primary-btn {
    background: linear-gradient(95deg, #ff4d8d, #ff7eb3);
    border: none;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 77, 141, 0.35);
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.resume-card {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.resume-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.float-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.box1 {
    top: 10px;
    left: -20px;
}

.box2 {
    bottom: 20px;
    right: -20px;
}

.float-box h3 {
    color: #ff7eb3;
    font-size: 24px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.arrow:hover {
    background: #ff4d8d;
}

.arrow.left {
    left: -30px;
}

.arrow.right {
    right: -30px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ==================== STATS ==================== */
.stats-section {
    padding: 70px 5%;
    background: #0d1224;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.stat-card h2 {
    font-size: 42px;
    color: #ff7eb3;
}

/* ==================== FEATURES ==================== */
.features-preview,
.steps-section,
.testimonials-section {
    padding: 90px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #ff7eb3;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: clamp(36px, 5vw, 52px);
    margin: 16px 0;
}

.features-grid,
.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card,
.feature-detailed {
    background: #131c2c;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}

.feature-card:hover,
.feature-detailed:hover {
    transform: translateY(-6px);
    border-color: #ff7eb3;
}

.feature-icon {
    font-size: 44px;
    margin-bottom: 20px;
}

.feature-card h3,
.feature-detailed h3 {
    margin-bottom: 14px;
}

.feature-detailed i {
    font-size: 44px;
    color: #ff7eb3;
    margin-bottom: 20px;
    display: block;
}

/* ==================== STEPS ==================== */
.steps-container {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.step-card {
    width: 48%;
    background: #131c2c;
    padding: 28px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-card.left {
    align-self: flex-start;
    margin-left: 0;
}

.step-card.right {
    margin-left: auto;
}

.step-icon {
    font-size: 40px;
}

.step-card span {
    color: #ff7eb3;
    font-size: 12px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-slider {
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

.testimonial-track {
    display: flex;
    transition: 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: #131c2c;
    padding: 40px;
    border-radius: 28px;
    text-align: center;
}

.quote {
    font-size: 60px;
    color: #ff7eb3;
}

.stars {
    color: #ffd966;
    margin: 16px 0;
}

.user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: #ff7eb3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 140px 5% 70px;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, #111827, #080c1a);
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.page-header p {
    color: #b0bbd4;
}




/* ==================== FOOTER ==================== */
.footer {
    background: #0b1020;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 70px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    background: linear-gradient(135deg, #ff4d8d, #b13e6f);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-about {
    color: #b0bbd4;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 280px;
}

.footer-contact {
    color: #b0bbd4;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 22px;
    font-size: 18px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #b0bbd4;
    margin-bottom: 14px;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #ff7eb3;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 50px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons a {
    color: #cfd9f0;
    background: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    text-decoration: none;
    transition: 0.25s;
}

.social-icons a:hover {
    background: #ff4d8d;
    transform: translateY(-3px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 950px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 5%;
        width: 90%;
        background: #111a2c;
        flex-direction: column;
        padding: 32px;
        border-radius: 28px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-links.show {
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .build-btn {
        display: none;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .steps-container::before {
        display: none;
    }

    .step-card {
        width: 100%;
        margin-left: 0 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .arrow {
        display: none;
    }

    .float-box {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .page-header h1 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}