/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
    line-height: 1.6;
    background: #080c1a;
    overflow-x: hidden
}

a {
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
    color: inherit
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

/* ========== HEADER ========== */
.custom-header {
    background: #080c1a;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06)
}

.header-container {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px
}

.logo-section {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    align-items: center
}

.logo-img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain
}

.nav-section {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: flex-end;
    list-style: none
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    opacity: .8
}

.nav-menu a:hover {
    opacity: 1
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #818cf8, #a78bfa);
    transition: width .3s
}

.nav-menu a:hover::after {
    width: 100%
}

.login-btn {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s;
    margin-left: 20px;
    font-family: inherit;
    font-size: 14px
}

.login-btn:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    transform: translateY(-1px)
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 0
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #080c1a;
    padding: 20px;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.mobile-dropdown.show {
    display: block;
    animation: slideDown .3s ease
}

.mobile-dropdown a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    padding: 5rem 0 3rem;
    text-align: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(99, 102, 241, .15) 0%, transparent 60%), radial-gradient(ellipse at 70% 100%, rgba(139, 92, 246, .1) 0%, transparent 50%);
    pointer-events: none
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(165, 148, 249, .4);
    border-radius: 50%;
    animation: float-particle linear infinite
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0
    }
}

.hero-section h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative
}

.hero-section h1 .gradient-text {
    background: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-section p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 1rem;
    position: relative
}

.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #818cf8;
    font-size: .9rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: bounceDown 2s ease-in-out infinite;
    position: relative
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    color: #a5b4fc;
    margin-bottom: 2rem;
    position: relative
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #818cf8;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.6)
    }
}

/* ========== STEP INDICATOR ========== */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    position: relative
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% - 160px);
    width: 320px;
    height: 2px;
    background: rgba(255, 255, 255, .06)
}

.step-ind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    width: 160px
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #64748b;
    background: #0f1629;
    transition: all .4s
}

.step-ind.active .step-circle {
    border-color: #818cf8;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 0 20px rgba(99, 102, 241, .4)
}

.step-ind.completed .step-circle {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff
}

.step-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    transition: color .3s
}

.step-ind.active .step-label {
    color: #a5b4fc
}

/* ========== EXPERIENCE SELECTOR ========== */
.experience-section {
    padding: 2rem 0 3rem
}

.experience-highlight-box {
    position: relative;
    background: rgba(99, 102, 241, .06);
    border: 2px solid rgba(99, 102, 241, .25);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden
}

.experience-highlight-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .4), rgba(139, 92, 246, .2), rgba(99, 102, 241, .4));
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    z-index: -1
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.highlight-pulse {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #818cf8, transparent);
    border-radius: 0 0 4px 4px;
    animation: pulseGlow 2s ease-in-out infinite
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: .4;
        width: 80px;
    }

    50% {
        opacity: 1;
        width: 160px;
    }
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .5rem
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: .95rem
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto
}

.exp-card {
    position: relative;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.exp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, .08), rgba(139, 92, 246, .08));
    opacity: 0;
    transition: opacity .4s;
    border-radius: 20px
}

.exp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, .3)
}

.exp-card:hover::before {
    opacity: 1
}

.exp-card.selected {
    border-color: #818cf8;
    background: rgba(99, 102, 241, .08);
    box-shadow: 0 0 40px rgba(99, 102, 241, .15), inset 0 1px 0 rgba(255, 255, 255, .06)
}

.exp-card.selected::before {
    opacity: 1
}

.exp-card .check-mark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.5);
    transition: all .3s
}

.exp-card.selected .check-mark {
    opacity: 1;
    transform: scale(1)
}

.exp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.exp-icon svg {
    width: 28px;
    height: 28px
}

.exp-card:nth-child(1) .exp-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(59, 130, 246, .05))
}

.exp-card:nth-child(1) .exp-icon svg {
    color: #60a5fa
}

.exp-card:nth-child(2) .exp-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, .2), rgba(168, 85, 247, .05))
}

.exp-card:nth-child(2) .exp-icon svg {
    color: #a78bfa
}

.exp-card:nth-child(3) .exp-icon {
    background: linear-gradient(135deg, rgba(234, 179, 8, .2), rgba(234, 179, 8, .05))
}

.exp-card:nth-child(3) .exp-icon svg {
    color: #facc15
}

.exp-years {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .25rem;
    position: relative;
    z-index: 1
}

.exp-label {
    font-size: .85rem;
    color: #94a3b8;
    position: relative;
    z-index: 1
}

.exp-tag {
    display: inline-block;
    margin-top: .75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    position: relative;
    z-index: 1
}

.exp-card:nth-child(1) .exp-tag {
    background: rgba(59, 130, 246, .12);
    color: #60a5fa
}

.exp-card:nth-child(2) .exp-tag {
    background: rgba(168, 85, 247, .12);
    color: #a78bfa
}

.exp-card:nth-child(3) .exp-tag {
    background: rgba(234, 179, 8, .12);
    color: #facc15
}

/* ========== PLANS SECTION ========== */
.plans-section {
    padding: 0 0 4rem;
    display: none
}

.plans-section.visible {
    display: block;
    animation: fadeUp .5s ease
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.currency-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    padding: 4px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto
}

.currency-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all .3s;
    font-family: inherit
}

.currency-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .3)
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.plan-card {
    position: relative;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 2rem;
    transition: all .4s;
    overflow: hidden
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.plan-card.featured {
    border-color: rgba(129, 140, 248, .3);
    background: rgba(99, 102, 241, .06)
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a78bfa, #c084fc)
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem
}

.plan-icon svg {
    width: 24px;
    height: 24px
}

.plan-card:nth-child(1) .plan-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(59, 130, 246, .05))
}

.plan-card:nth-child(1) .plan-icon svg {
    color: #60a5fa
}

.plan-card:nth-child(2) .plan-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, .2), rgba(168, 85, 247, .05))
}

.plan-card:nth-child(2) .plan-icon svg {
    color: #a78bfa
}

.plan-card:nth-child(3) .plan-icon {
    background: linear-gradient(135deg, rgba(234, 179, 8, .2), rgba(234, 179, 8, .05))
}

.plan-card:nth-child(3) .plan-icon svg {
    color: #facc15
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.plan-description {
    font-size: .85rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    min-height: 40px
}

.plan-price {
    margin-bottom: 1.5rem
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-right: 2px
}

.price-alt {
    font-size: .8rem;
    color: #64748b;
    margin-top: 4px
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: .88rem;
    color: #cbd5e1
}

.plan-features li svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px
}

.btn-buy {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s;
    font-family: inherit;
    position: relative;
    overflow: hidden
}

.btn-buy.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .3)
}

.btn-buy.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, .4)
}

.btn-buy.secondary {
    background: rgba(255, 255, 255, .06);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, .1)
}

.btn-buy.secondary:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px)
}

/* ========== TRUST SECTION ========== */
.trust-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, .04);
    display: none
}

.trust-section.visible {
    display: block;
    animation: fadeUp .5s ease
}

.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: .9rem;
    font-weight: 500
}

.trust-item svg {
    width: 22px;
    height: 22px;
    color: #818cf8
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .08)
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center
}

.payment-icons .pay-icon {
    height: 32px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #a5b4fc;
    font-size: 12px;
    font-weight: 600;
    gap: 5px;
    white-space: nowrap
}

.payment-icons .pay-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

/* ========== BELOW FOLD (hidden until experience selected) ========== */
.below-fold {
    display: none
}

.below-fold.visible {
    display: block;
    animation: fadeUp .5s ease
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: 4rem 0
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.process-step {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
    transition: all .3s;
    position: relative;
    text-align: center
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, .2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2)
}

.step-icon-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.step-icon-wrap svg {
    width: 26px;
    height: 26px
}

.process-step:nth-child(1) .step-icon-wrap {
    background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(59, 130, 246, .05))
}

.process-step:nth-child(1) .step-icon-wrap svg {
    color: #60a5fa
}

.process-step:nth-child(2) .step-icon-wrap {
    background: linear-gradient(135deg, rgba(34, 197, 94, .2), rgba(34, 197, 94, .05))
}

.process-step:nth-child(2) .step-icon-wrap svg {
    color: #4ade80
}

.process-step:nth-child(3) .step-icon-wrap {
    background: linear-gradient(135deg, rgba(168, 85, 247, .2), rgba(168, 85, 247, .05))
}

.process-step:nth-child(3) .step-icon-wrap svg {
    color: #a78bfa
}

.process-step:nth-child(4) .step-icon-wrap {
    background: linear-gradient(135deg, rgba(251, 146, 60, .2), rgba(251, 146, 60, .05))
}

.process-step:nth-child(4) .step-icon-wrap svg {
    color: #fb923c
}

.process-step:nth-child(5) .step-icon-wrap {
    background: linear-gradient(135deg, rgba(56, 189, 248, .2), rgba(56, 189, 248, .05))
}

.process-step:nth-child(5) .step-icon-wrap svg {
    color: #38bdf8
}

.step-num-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.process-step h3 {
    color: #fff;
    margin: 0 0 .5rem;
    font-size: .95rem;
    font-weight: 700
}

.process-step p {
    color: #64748b;
    font-size: .82rem;
    line-height: 1.4
}

/* ========== CTA HELP ========== */
.expert-help-section {
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, .12), rgba(139, 92, 246, .08));
    border: 1px solid rgba(99, 102, 241, .15);
    border-radius: 24px;
    text-align: center;
    max-width: 700px
}

.help-title {
    color: #fff !important;
    font-size: 1.5rem;
    margin-bottom: .75rem
}

.help-description {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: .95rem
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(34, 197, 94, .3)
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, .4)
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: #fff
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 26, .85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 2000
}

.modal-content {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2.5rem;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .5)
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
    transition: color .3s;
    background: none;
    border: none
}

.close-modal:hover {
    color: #fff
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.modal-subtitle {
    color: #64748b;
    font-size: .9rem;
    margin-bottom: 1.5rem
}

.modal-plan-info {
    background: rgba(99, 102, 241, .08);
    border: 1px solid rgba(99, 102, 241, .15);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: block
}

.modal-plan-name {
    font-weight: 600;
    color: #a5b4fc;
    font-size: .9rem
}

.modal-plan-price {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    transition: border .2s
}

.form-group input:focus {
    border-color: #818cf8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .15)
}

.form-group input::placeholder {
    color: #475569
}

.btn-pay {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s;
    font-family: inherit;
    margin-top: .5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .3)
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, .4)
}

.btn-pay:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

/* ========== FOOTER ========== */
.footer-section {
    background: #060a16;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px
}

.footer-col h3 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: #64748b;
    font-size: 14px
}

.footer-col ul li a:hover {
    color: #a5b4fc
}

.social-links {
    display: flex;
    gap: 12px
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all .3s
}

.social-links a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin-top: 60px;
    color: #475569;
    font-size: 13px
}

/* ========== RESPONSIVE ========== */
@media(max-width:992px) {
    .nav-menu {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .logo-section {
        flex: 0 0 70%;
        max-width: 70%
    }

    .nav-section {
        flex: 0 0 30%
    }

    .hero-section h1 {
        font-size: 2.4rem
    }

    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }

    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .hero-section h1 {
        font-size: 2rem
    }

    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px
    }

    .exp-card {
        padding: 1.25rem 1rem
    }

    .exp-years {
        font-size: 1.2rem
    }

    .plans-grid {
        grid-template-columns: 1fr
    }

    .plan-card {
        padding: 1.5rem
    }

    .trust-grid {
        flex-direction: column;
        gap: 1.25rem
    }

    .trust-divider {
        width: 60px;
        height: 1px
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center
    }

    .footer-container {
        grid-template-columns: 1fr 1fr
    }

    .step-indicator::before {
        left: calc(50% - 120px);
        width: 240px
    }

    .step-ind {
        width: 120px
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .hero-section {
        padding: 3rem 0 2rem
    }

    .hero-section h1 {
        font-size: 1.6rem
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .exp-card {
        padding: 1rem .75rem;
        border-radius: 14px
    }

    .exp-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: .75rem
    }

    .exp-icon svg {
        width: 20px;
        height: 20px
    }

    .exp-years {
        font-size: 1rem
    }

    .exp-label {
        font-size: .75rem
    }

    .exp-tag {
        font-size: 10px;
        padding: 3px 8px;
        margin-top: .5rem
    }

    .plans-grid {
        gap: 16px
    }

    .currency-toggle {
        max-width: 100%
    }

    .footer-container {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }

    .process-step {
        padding: 1.25rem 1rem
    }

    .expert-help-section {
        padding: 2rem 1.5rem;
        margin: 0 auto 3rem
    }

    .price-amount {
        font-size: 1.8rem
    }

    /* Mobile modal full-screen */
    .modal {
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        max-height: none;
        min-height: 100vh;
        border-radius: 0;
        /* Push content below browser chrome / safe area on iOS/Android */
        padding: max(env(safe-area-inset-top, 56px), 56px) 1.25rem 2rem;
        display: flex;
        flex-direction: column
    }

    .modal-plan-info {
        max-height: 35vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .modal-title {
        font-size: 1.15rem
    }

    .modal-subtitle {
        font-size: .82rem
    }

    .login-prompt {
        padding: 1rem 0
    }

    .close-modal {
        top: 12px;
        right: 14px
    }

    .experience-highlight-box {
        padding: 1.5rem 1rem 1.25rem;
        border-radius: 18px
    }

    .hero-scroll-hint {
        font-size: .8rem
    }
}

/* ========== CART FLOATING BUTTON ========== */
.cart-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(99, 102, 241, .45);
    transition: all .3s
}

.cart-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(99, 102, 241, .55)
}

.cart-fab svg {
    width: 24px;
    height: 24px
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #080c1a
}

.cart-badge.show {
    display: flex
}

/* ========== CART DRAWER ========== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 26, .7);
    backdrop-filter: blur(4px);
    z-index: 1600;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 92vw;
    height: 100vh;
    background: #111827;
    border-left: 1px solid rgba(255, 255, 255, .08);
    z-index: 1700;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .5)
}

.cart-drawer.open {
    right: 0
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.cart-drawer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px
}

.cart-drawer-title span {
    background: rgba(99, 102, 241, .15);
    color: #a5b4fc;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600
}

.cart-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.cart-close:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #475569
}

.cart-empty svg {
    width: 48px;
    height: 48px;
    color: #334155;
    margin-bottom: 1rem
}

.cart-empty p {
    font-size: .9rem
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.cart-item-info {
    flex: 1
}

.cart-item-name {
    font-weight: 600;
    color: #e2e8f0;
    font-size: .9rem;
    margin-bottom: 2px
}

.cart-item-tier {
    font-size: .75rem;
    color: #64748b
}

.cart-item-price {
    font-weight: 700;
    color: #a5b4fc;
    font-size: .95rem;
    margin-right: 12px;
    white-space: nowrap
}

.cart-remove {
    background: none;
    border: none;
    color: #475569;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0
}

.cart-remove:hover {
    background: rgba(239, 68, 68, .15);
    color: #ef4444
}

.cart-remove svg {
    width: 16px;
    height: 16px
}

.cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .2)
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.cart-total-label {
    color: #94a3b8;
    font-size: .9rem;
    font-weight: 500
}

.cart-total-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff
}

.btn-cart-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .3)
}

.btn-cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, .4)
}

.btn-cart-checkout:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

.cart-secure {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.cart-secure svg {
    width: 12px;
    height: 12px;
    color: #818cf8
}

/* Plan card "Added" state */
.btn-buy.added {
    background: rgba(34, 197, 94, .12) !important;
    color: #4ade80 !important;
    border-color: rgba(34, 197, 94, .3) !important
}

/* Login prompt in modal */
.login-prompt {
    text-align: center;
    padding: 1.5rem 0
}

.login-prompt p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: .9rem
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    font-family: inherit
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, .3)
}

.btn-login svg {
    width: 18px;
    height: 18px
}

.skip-login {
    color: #64748b;
    font-size: .8rem;
    margin-top: 12px;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    font-family: inherit
}

.skip-login:hover {
    color: #a5b4fc
}

@media(max-width:480px) {
    .cart-fab {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px
    }

    .cart-fab svg {
        width: 20px;
        height: 20px
    }
}

/* ========== INLINE CART PANEL ========== */
.inline-cart-section {
    padding: 0 0 3rem;
    animation: fadeUp .5s ease;
}

.inline-cart-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.inline-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: rgba(99, 102, 241, .08);
}

.inline-cart-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
}

.inline-cart-count {
    font-size: .78rem;
    font-weight: 500;
    color: #a5b4fc;
    background: rgba(99, 102, 241, .2);
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.inline-cart-toggle-btns {
    display: flex;
    gap: 6px;
}

.toggle-view-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .45);
    font-size: .8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s;
}

.toggle-view-btn.active {
    background: rgba(99, 102, 241, .5);
    border-color: rgba(99, 102, 241, .7);
    color: #fff;
}

.inline-cart-items {
    padding: 16px 24px;
    min-height: 80px;
}

.inline-cart-empty {
    text-align: center;
    color: #64748b;
    font-size: .9rem;
    padding: 20px 0;
}

.inline-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    gap: 12px;
}

.inline-cart-item:last-child {
    border-bottom: none;
}

.inline-item-info {
    flex: 1;
}

.inline-item-name {
    font-size: .9rem;
    color: #e2e8f0;
    font-weight: 600;
}

.inline-item-tier {
    font-size: .78rem;
    color: #64748b;
    margin-top: 2px;
}

.inline-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #a5b4fc;
    white-space: nowrap;
}

.inline-remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(239, 68, 68, .1);
    color: #f87171;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}

.inline-remove-btn:hover {
    background: rgba(239, 68, 68, .25);
}

.inline-cart-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .1);
}

.inline-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #94a3b8;
}

.inline-cart-total span:last-child {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.inline-checkout-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .35);
    margin-bottom: 10px;
}

.inline-checkout-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none !important;
}

.inline-checkout-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, .45);
}

.inline-cart-secure {
    text-align: center;
    font-size: .75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media(max-width:600px) {
    .inline-cart-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}