/* =============================================
   🔮 NUMEROLOGY LANDING PAGE STYLES
   Premium conversion-focused landing page
   ============================================= */

/* =============================================
   HERO SECTION
   ============================================= */
.nl-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--midnight-blue);
    overflow: hidden;
    padding: 140px 0 80px;
}

.nl-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.nl-hero-gradient-orb {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(91,44,138,0.08) 40%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: nl-orb-pulse 8s ease-in-out infinite;
    filter: blur(50px);
}

.nl-hero-gradient-orb.orb-secondary {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(91,44,138,0.2) 0%, transparent 60%);
    animation: nl-orb-pulse 6s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes nl-orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50%      { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.nl-stars {
    position: absolute;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212,175,55,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(212,175,55,0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: nl-twinkle 5s ease-in-out infinite;
}

@keyframes nl-twinkle {
    0%, 100% { opacity: 0.6; }
    50%      { opacity: 1; }
}

.nl-floating-numbers {
    position: absolute;
    width: 100%; height: 100%;
    pointer-events: none;
}

.nl-num {
    position: absolute;
    font-family: var(--font-primary);
    font-weight: 700;
    color: rgba(212,175,55,0.06);
    animation: nl-float-num 15s ease-in-out infinite;
}
.nl-num.n1 { top: 8%; left: 5%; font-size: 110px; animation-delay: 0s; }
.nl-num.n2 { top: 18%; right: 8%; font-size: 80px; animation-delay: 2s; }
.nl-num.n3 { top: 55%; left: 3%; font-size: 90px; animation-delay: 4s; }
.nl-num.n4 { top: 65%; right: 5%; font-size: 100px; animation-delay: 1s; }
.nl-num.n5 { bottom: 12%; left: 12%; font-size: 75px; animation-delay: 3s; }
.nl-num.n6 { bottom: 20%; right: 12%; font-size: 85px; animation-delay: 5s; }

@keyframes nl-float-num {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
    50%      { transform: translateY(-25px) rotate(5deg); opacity: 0.1; }
}

.nl-hero-content {
    position: relative;
    z-index: 5;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Badge */
.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.4);
    backdrop-filter: blur(10px);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--divine-gold);
    margin-bottom: var(--space-8);
    position: relative;
    overflow: hidden;
}

.nl-badge i {
    width: 18px; height: 18px;
}

.nl-badge-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    animation: nl-shimmer 4s infinite;
}

@keyframes nl-shimmer {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* Hero Titles */
.nl-hero-title {
    margin-bottom: var(--space-6);
    line-height: 1.15;
}

.nl-title-line {
    display: block;
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 700;
    color: var(--pure-white);
    animation: nl-fade-in-up 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.nl-title-line.nl-accent {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
    font-size: clamp(2.2rem, 6.5vw, 4rem);
}

@keyframes nl-fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nl-hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--soft-cream);
    margin-bottom: var(--space-10);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: nl-fade-in-up 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.nl-hero-subtitle strong {
    color: var(--divine-gold);
}

/* Pricing Pills */
.nl-pricing-pills {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
    animation: nl-fade-in-up 0.8s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.nl-price-pill {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
}

.nl-price-pill:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nl-price-pill i {
    width: 28px; height: 28px;
    color: var(--divine-gold);
}

.nl-price-info {
    text-align: left;
}

.nl-price-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--soft-cream);
    font-weight: 500;
}

.nl-price-amount {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    color: var(--divine-gold);
    font-weight: 700;
}

.nl-price-featured {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.08);
}

/* Hero Buttons */
.nl-hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
    animation: nl-fade-in-up 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

/* Trust Row */
.nl-trust-row {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    animation: nl-fade-in-up 0.8s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

.nl-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
}

.nl-trust-item i {
    width: 18px; height: 18px;
    color: var(--divine-gold);
}

/* Scroll Indicator */
.nl-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    z-index: 10;
    color: rgba(255,255,255,0.5);
    font-size: var(--text-xs);
    animation: nl-bounce-subtle 2s infinite;
}

.nl-mouse {
    width: 24px; height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.nl-wheel {
    width: 4px; height: 8px;
    background: var(--divine-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: nl-scroll-wheel 2s infinite;
}

@keyframes nl-scroll-wheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes nl-bounce-subtle {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}


/* =============================================
   ABOUT SECTION
   ============================================= */
.nl-about {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--midnight-blue) 0%, var(--celestial-navy) 100%);
}

.nl-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.nl-about-card {
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nl-about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.nl-about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-purple);
    border-color: rgba(212,175,55,0.3);
}

.nl-about-icon {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-glow);
}

.nl-about-icon i {
    width: 36px; height: 36px;
    color: var(--midnight-blue);
}

.nl-about-card h3 {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--pure-white);
}

.nl-about-card p {
    color: var(--soft-cream);
    font-size: var(--text-base);
    line-height: 1.8;
}


/* =============================================
   SERVICES SECTION (2 Cards)
   ============================================= */
.nl-services {
    padding: var(--space-24) 0;
    background: var(--midnight-blue);
    position: relative;
}

.nl-services::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(91,44,138,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.nl-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    margin-top: var(--space-12);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.nl-service-card {
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nl-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.nl-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-purple);
    border-color: rgba(212,175,55,0.3);
}

/* Featured Card */
.nl-service-featured {
    border-color: rgba(212,175,55,0.4);
    background: linear-gradient(145deg, rgba(212,175,55,0.08) 0%, rgba(91,44,138,0.3) 50%, rgba(45,27,105,0.5) 100%);
}

.nl-service-featured::before {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
    height: 3px;
}

/* Ribbon */
.nl-service-ribbon {
    position: absolute;
    top: 20px; right: -35px;
    background: var(--royal-purple);
    color: var(--pure-white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 3;
}

.nl-ribbon-gold {
    background: var(--gradient-gold);
    color: var(--midnight-blue);
}

/* Icon Wrap */
.nl-service-icon-wrap {
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 auto var(--space-6);
    transition: var(--transition-base);
}

.nl-service-icon-wrap i {
    width: 40px; height: 40px;
    color: var(--divine-gold);
}

.nl-icon-featured {
    background: var(--gradient-gold);
    border: none;
    box-shadow: var(--shadow-glow);
}

.nl-icon-featured i {
    color: var(--midnight-blue);
}

.nl-service-title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    color: var(--pure-white);
    margin-bottom: var(--space-4);
}

/* Price */
.nl-service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-8);
}

.nl-currency {
    font-size: var(--text-xl);
    color: var(--divine-gold);
    font-weight: 600;
}

.nl-amount {
    font-family: var(--font-primary);
    font-size: var(--text-5xl);
    color: var(--divine-gold);
    font-weight: 800;
    line-height: 1;
}

.nl-period {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
}

/* Features List */
.nl-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
    text-align: left;
}

.nl-service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--soft-cream);
    font-size: var(--text-base);
}

.nl-service-features li:last-child {
    border-bottom: none;
}

.nl-service-features li i {
    width: 18px; height: 18px;
    color: var(--divine-gold);
    flex-shrink: 0;
}

.nl-service-btn {
    width: 100%;
}


/* =============================================
   HOW IT WORKS
   ============================================= */
.nl-how {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--midnight-blue) 0%, var(--celestial-navy) 100%);
}

.nl-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
    position: relative;
}

.nl-step {
    text-align: center;
    position: relative;
    padding: var(--space-8) var(--space-4);
}

.nl-step-number {
    position: absolute;
    top: 0; right: 10px;
    font-family: var(--font-primary);
    font-size: 80px;
    font-weight: 800;
    color: rgba(212,175,55,0.06);
    line-height: 1;
    pointer-events: none;
}

.nl-step-icon {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.nl-step-icon i {
    width: 36px; height: 36px;
    color: var(--midnight-blue);
}

.nl-step h3 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    color: var(--pure-white);
    margin-bottom: var(--space-3);
}

.nl-step p {
    font-size: var(--text-sm);
    color: var(--soft-cream);
    line-height: 1.6;
}

/* Connector Lines */
.nl-step-connector {
    position: absolute;
    top: calc(var(--space-8) + 40px);
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(212,175,55,0.4), rgba(212,175,55,0.1));
    z-index: 1;
}


/* =============================================
   BENEFITS SECTION
   ============================================= */
.nl-benefits {
    padding: var(--space-24) 0;
    background: var(--midnight-blue);
}

.nl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.nl-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.nl-benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nl-benefit-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-lg);
}

.nl-benefit-icon i {
    width: 26px; height: 26px;
    color: var(--divine-gold);
}

.nl-benefit-text h4 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    color: var(--pure-white);
    margin-bottom: var(--space-2);
}

.nl-benefit-text p {
    font-size: var(--text-sm);
    color: var(--soft-cream);
    line-height: 1.6;
    margin-bottom: 0;
}


/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.nl-testimonials {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--midnight-blue) 0%, var(--celestial-navy) 100%);
    overflow: hidden;
}

.nl-testimonial-slider {
    margin-top: var(--space-12);
    position: relative;
}

.nl-testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nl-testimonial-slide {
    min-width: 100%;
    padding: 0 var(--space-4);
    box-sizing: border-box;
}

.nl-testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nl-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.nl-testimonial-stars {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.nl-testimonial-quote {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--soft-cream);
    line-height: 1.8;
    margin: 0 0 var(--space-8);
    position: relative;
    padding: 0 var(--space-4);
}

.nl-testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px; left: -10px;
    font-family: var(--font-accent);
    font-size: 80px;
    color: rgba(212,175,55,0.15);
    line-height: 1;
}

.nl-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.nl-author-avatar {
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--midnight-blue);
}

.nl-author-info {
    text-align: left;
}

.nl-author-info strong {
    display: block;
    color: var(--pure-white);
    font-size: var(--text-base);
}

.nl-author-info span {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
}

.nl-service-tag {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    color: var(--divine-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Slider Controls */
.nl-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.nl-slider-btn {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--pure-white);
}

.nl-slider-btn:hover {
    background: var(--divine-gold);
    border-color: var(--divine-gold);
    color: var(--midnight-blue);
}

.nl-slider-btn i {
    width: 22px; height: 22px;
}

.nl-slider-dots {
    display: flex;
    gap: var(--space-3);
}

.nl-slider-dots .nl-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.nl-slider-dots .nl-dot.active {
    background: var(--divine-gold);
    border-color: var(--divine-gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
}


/* =============================================
   CTA SECTION
   ============================================= */
.nl-cta {
    padding: var(--space-20) 0;
    background: var(--gradient-cosmic);
    position: relative;
    overflow: hidden;
}

.nl-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.nl-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.nl-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--pure-white);
    margin-bottom: var(--space-4);
}

.nl-cta-subtitle {
    font-size: var(--text-lg);
    color: var(--soft-cream);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
}

.nl-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}


/* =============================================
   FORM SECTION
   ============================================= */
.nl-form-section {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--celestial-navy) 0%, var(--midnight-blue) 100%);
}

.nl-form-wrapper {
    max-width: 760px;
    margin: var(--space-12) auto 0;
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    position: relative;
    overflow: hidden;
}

.nl-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.nl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.nl-form-full {
    grid-column: 1 / -1;
}

.nl-form-group label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--soft-cream);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nl-form-group label i {
    width: 16px; height: 16px;
    color: var(--divine-gold);
}

.nl-required {
    color: #ff6b6b;
}

.nl-form-group input,
.nl-form-group select,
.nl-form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    color: var(--pure-white);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    outline: none;
}

.nl-form-group input::placeholder,
.nl-form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.nl-form-group input:focus,
.nl-form-group select:focus,
.nl-form-group textarea:focus {
    border-color: var(--divine-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
    background: rgba(255,255,255,0.08);
}

.nl-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.nl-form-group select option {
    background: var(--midnight-blue);
    color: var(--pure-white);
}

.nl-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Area */
.nl-form-submit {
    margin-top: var(--space-8);
    text-align: center;
}

.nl-submit-btn {
    min-width: 300px;
}

.nl-form-note {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    margin-top: var(--space-4);
    margin-bottom: 0;
}

/* Spinner */
.nl-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(10,22,40,0.3);
    border-top-color: var(--midnight-blue);
    border-radius: 50%;
    animation: nl-spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes nl-spin {
    to { transform: rotate(360deg); }
}

/* Form Response */
.nl-form-response {
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    text-align: center;
    font-weight: 500;
}

.nl-form-response.nl-success {
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.4);
    color: #81c784;
}

.nl-form-response.nl-error {
    background: rgba(244,67,54,0.15);
    border: 1px solid rgba(244,67,54,0.4);
    color: #ef9a9a;
}


/* =============================================
   FAQ SECTION
   ============================================= */
.nl-faq {
    padding: var(--space-24) 0;
    background: var(--midnight-blue);
}

.nl-faq-list {
    max-width: 800px;
    margin: var(--space-12) auto 0;
}

.nl-faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    transition: var(--transition-base);
}

.nl-faq-item:hover {
    border-color: rgba(212,175,55,0.2);
}

.nl-faq-item.active {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.03);
}

.nl-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--pure-white);
    text-align: left;
    transition: var(--transition-base);
}

.nl-faq-question:hover {
    color: var(--divine-gold);
}

.nl-faq-icon {
    width: 22px; height: 22px;
    color: var(--divine-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nl-faq-item.active .nl-faq-icon {
    transform: rotate(180deg);
}

.nl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-6);
}

.nl-faq-item.active .nl-faq-answer {
    max-height: 300px;
    padding: 0 var(--space-6) var(--space-6);
}

.nl-faq-answer p {
    font-size: var(--text-base);
    color: var(--soft-cream);
    line-height: 1.8;
}


/* =============================================
   FINAL CTA SECTION
   ============================================= */
.nl-final-cta {
    padding: var(--space-24) 0;
    background: var(--gradient-cosmic);
    position: relative;
    overflow: hidden;
}

.nl-final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.nl-final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.nl-final-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(244,67,54,0.15);
    border: 1px solid rgba(244,67,54,0.4);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #ef9a9a;
    margin-bottom: var(--space-6);
    animation: nl-pulse-badge 2s ease-in-out infinite;
}

.nl-final-badge i {
    width: 16px; height: 16px;
}

@keyframes nl-pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244,67,54,0.3); }
    50%      { box-shadow: 0 0 0 8px rgba(244,67,54,0); }
}

.nl-final-cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--pure-white);
    margin-bottom: var(--space-4);
}

.nl-final-cta-content > p {
    font-size: var(--text-lg);
    color: var(--soft-cream);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
}

.nl-final-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.nl-final-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.nl-final-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
    transition: var(--transition-base);
}

.nl-final-contact a:hover {
    color: var(--divine-gold);
}

.nl-final-contact a i {
    width: 16px; height: 16px;
}

.nl-divider {
    color: rgba(255,255,255,0.2);
}


/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.nl-sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0; right: 0;
    z-index: var(--z-fixed);
    display: none;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.5);
    transition: bottom 0.4s ease;
}

.nl-sticky-cta.visible {
    bottom: 0;
}

.nl-sticky-btn {
    flex: 1;
    max-width: 200px;
    font-size: var(--text-sm) !important;
    padding: var(--space-3) var(--space-4) !important;
    letter-spacing: 0.05em !important;
}


/* =============================================
   SECTION HEADER (shared pattern)
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    color: var(--divine-gold);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.section-badge i {
    width: 16px; height: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--pure-white);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--soft-cream);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.nl-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.nl-animate.nl-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .nl-about-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .nl-services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .nl-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nl-step-connector {
        display: none;
    }

    .nl-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nl-hero {
        padding: 120px 0 60px;
    }

    .nl-pricing-pills {
        flex-direction: column;
        align-items: center;
    }

    .nl-price-pill {
        width: 100%;
        max-width: 280px;
    }

    .nl-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nl-hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .nl-trust-row {
        gap: var(--space-4);
    }

    .nl-about-grid {
        grid-template-columns: 1fr;
    }

    .nl-steps-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .nl-benefits-grid {
        grid-template-columns: 1fr;
    }

    .nl-form-grid {
        grid-template-columns: 1fr;
    }

    .nl-form-wrapper {
        padding: var(--space-8) var(--space-6);
    }

    .nl-submit-btn {
        min-width: auto;
        width: 100%;
    }

    .nl-cta-buttons,
    .nl-final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nl-cta-buttons .btn,
    .nl-final-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .nl-testimonial-card {
        padding: var(--space-8) var(--space-6);
    }

    /* Show sticky CTA on mobile */
    .nl-sticky-cta {
        display: flex;
    }

    .nl-scroll-indicator {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nl-hero {
        padding: 110px 0 50px;
    }

    .nl-title-line {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .nl-title-line.nl-accent {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .nl-amount {
        font-size: var(--text-4xl);
    }

    .nl-service-card {
        padding: var(--space-8) var(--space-6);
    }

    .nl-trust-row {
        flex-direction: column;
        gap: var(--space-3);
    }
}
