/* 
 * CleanScale UK - Premium Styles
 * Brand Colors: Green #80BC60, Blue #345492
 */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* Brand Colors */
    --green-50: #f4f9f1;
    --green-100: #e5f2de;
    --green-200: #c9e4bb;
    --green-300: #a8d391;
    --green-400: #80BC60;
    --green-500: #6aab48;
    --green-600: #558a3a;
    --green-700: #446d30;
    --green-800: #375728;
    --green-900: #2d4822;
    
    --blue-50: #f0f4f9;
    --blue-100: #dce5f2;
    --blue-200: #b8cce6;
    --blue-300: #8badd4;
    --blue-400: #5a8abf;
    --blue-500: #345492;
    --blue-600: #2d4a80;
    --blue-700: #263d6a;
    --blue-800: #1f3256;
    --blue-900: #1a2a47;
    
    /* Primary = Blue, Accent = Green */
    --primary: #345492;
    --primary-light: #5a8abf;
    --primary-dark: #263d6a;
    --accent: #80BC60;
    --accent-light: #a8d391;
    --accent-dark: #558a3a;
    
    /* Neutrals */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    /* Semantic colors */
    --success: #80BC60;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-display: 'DM Sans', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    
    /* Spacing */
    --section-padding: clamp(5rem, 12vw, 10rem);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-800);
    background: var(--slate-50);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--slate-500);
}

.text-sm {
    font-size: 0.875rem;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.nav-scrolled {
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-inner.nav-centered {
    justify-content: center;
    position: relative;
}

/* Centered Logo */
.nav-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--transition-base);
}

.nav-logo-center img {
    height: 140px;
    width: auto;
    transition: all var(--transition-base);
}

.nav-scrolled .nav-logo-center img {
    height: 110px;
}

.nav-logo-center:hover {
    transform: translateX(-50%) scale(1.03);
}

/* Left and Right Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links-left {
    margin-right: auto;
}

.nav-links-right {
    margin-left: auto;
}

.nav-links a {
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Old logo style (fallback) */
.nav-logo {
    height: 48px;
    width: auto;
    transition: transform var(--transition-base);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: 100%;
    width: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    box-shadow: 
        0 4px 15px rgba(52, 84, 146, 0.35),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(52, 84, 146, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
    color: white !important;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white !important;
    box-shadow: 
        0 4px 15px rgba(128, 188, 96, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(128, 188, 96, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.15);
    color: white !important;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--blue-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background: var(--blue-50);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 84, 146, 0.12);
}

.btn-lg {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    border-radius: 16px;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    border-radius: 18px;
}

.btn-block {
    width: 100%;
}

.btn svg {
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--blue-50) 0%, white 40%, var(--slate-50) 100%);
}

/* Animated gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(128, 188, 96, 0.1) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(52, 84, 146, 0.08) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(20px, -30px) rotate(5deg) scale(1.05); 
    }
    50% { 
        transform: translate(-10px, 20px) rotate(-3deg) scale(0.98); 
    }
    75% { 
        transform: translate(-25px, -15px) rotate(4deg) scale(1.02); 
    }
}

/* Grid pattern overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(52, 84, 146, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 84, 146, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 100%);
    color: var(--green-700);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    border: 1px solid var(--green-200);
    box-shadow: 0 2px 12px rgba(128, 188, 96, 0.15);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    margin-bottom: 1.75rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .hero-ctas {
        justify-content: center;
    }
}

/* Hero Image with floating animation */
.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image-wrapper {
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); 
    }
    50% { 
        transform: translateY(-8px) rotateX(-1deg) rotateY(1deg); 
    }
    75% { 
        transform: translateY(-20px) rotateX(1deg) rotateY(-1deg); 
    }
}

.hero-image img {
    border-radius: 28px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(52, 84, 146, 0.1);
    transition: all var(--transition-slow);
}

.hero-image:hover img {
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(52, 84, 146, 0.15);
}

/* Decorative elements around hero image */
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 24px;
    opacity: 0.15;
    animation: decorPulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 20px;
    opacity: 0.12;
    animation: decorPulse 4s ease-in-out infinite 2s;
    z-index: -1;
}

@keyframes decorPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.15;
    }
    50% { 
        transform: scale(1.1) rotate(5deg); 
        opacity: 0.25;
    }
}

/* Stats bar under hero */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--slate-200);
}

@media (max-width: 1000px) {
    .hero-stats {
        justify-content: center;
    }
}

.hero-stat {
    text-align: left;
}

@media (max-width: 1000px) {
    .hero-stat {
        text-align: center;
    }
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Hero Trust Signals */
.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .hero-trust {
        justify-content: center;
    }
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-500);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--accent);
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
    background: linear-gradient(180deg, white 0%, var(--slate-50) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1000px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--slate-200);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--slate-800);
}

.problem-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.problem-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.problem-cta p {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.problem-cta p strong {
    color: var(--slate-900);
}

/* =============================================
   SOLUTION SECTION
   ============================================= */
.solution-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(128, 188, 96, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.solution-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.solution-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--accent);
    margin-top: 2px;
}

.solution-list li strong {
    color: white;
}

.solution-image img {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* =============================================
   METHOD VISUAL
   ============================================= */
.method-visual {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.method-image {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =============================================
   INCLUDED SECTION
   ============================================= */
.included-section {
    background: var(--slate-50);
}

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

@media (max-width: 900px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
    position: relative;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--blue-200);
}

.included-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.included-card.featured h3 {
    color: white;
}

.included-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.included-card.featured .included-icon {
    background: rgba(255, 255, 255, 0.15);
}

.included-card.featured .included-icon svg {
    color: white;
}

.included-card.featured .included-value {
    color: var(--accent);
}

.included-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.included-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.included-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-dark);
}

.included-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.included-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.included-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.included-total {
    margin-top: 3rem;
}

.included-total-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--accent);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .included-total-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.total-left,
.total-right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.total-label {
    font-size: 0.85rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.total-original {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-300);
    text-decoration: line-through;
}

.total-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1;
}

.total-price span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-500);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    padding: 2rem;
    background: var(--slate-50);
    border-radius: 20px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--blue-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--slate-800);
}

.faq-item p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   CTA GUARANTEES
   ============================================= */
.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.cta-guarantee svg {
    color: var(--accent);
}

/* =============================================
   FEATURES / CARDS
   ============================================= */
.features {
    background: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.section-header p {
    color: var(--slate-500);
    font-size: 1.2rem;
    margin-top: 1.25rem;
    line-height: 1.7;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--blue-100);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--slate-50) 0%, white 100%);
    border-radius: 24px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(52, 84, 146, 0.08);
    border-color: var(--blue-200);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 100%);
    border-radius: 18px;
    margin-bottom: 1.75rem;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--green-200) 0%, var(--green-100) 100%);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-dark);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.875rem;
}

.feature-card p {
    color: var(--slate-500);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   STAGES / TIMELINE
   ============================================= */
.stages {
    background: linear-gradient(180deg, var(--slate-50) 0%, white 50%, var(--slate-50) 100%);
    position: relative;
}

.stages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Vertical line connecting stages */
.stages-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, var(--green-200), var(--primary), var(--green-200));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .stages-list::before {
        display: none;
    }
}

.stage-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
    position: relative;
}

.stage-item:hover {
    border-color: var(--blue-200);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(52, 84, 146, 0.06);
    transform: translateX(8px);
}

.stage-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(52, 84, 146, 0.3);
    transition: all var(--transition-base);
}

.stage-item:hover .stage-number {
    transform: scale(1.1) rotate(-5deg);
}

.stage-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.625rem;
}

.stage-content p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* =============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================= */
.social-proof {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-950) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(128, 188, 96, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(52, 84, 146, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.social-proof h2 {
    color: white;
}

.social-proof .section-header p {
    color: var(--slate-400);
}

.social-proof .section-eyebrow {
    background: rgba(128, 188, 96, 0.2);
    color: var(--accent);
    border: 1px solid rgba(128, 188, 96, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(128, 188, 96, 0.3);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--slate-200);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* =============================================
   LEAD MAGNETS SECTION
   ============================================= */
.lead-magnets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.lead-magnet-card {
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    border: 2px solid var(--slate-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.lead-magnet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 188, 96, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lead-magnet-card:hover {
    border-color: var(--accent);
    box-shadow: 
        0 25px 60px rgba(128, 188, 96, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
}

.lead-magnet-card:hover::before {
    opacity: 1;
}

.lead-magnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(128, 188, 96, 0.3);
}

.lead-magnet-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.875rem;
    position: relative;
    z-index: 1;
}

.lead-magnet-card p {
    color: var(--slate-500);
    flex-grow: 1;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.lead-magnet-card .btn {
    position: relative;
    z-index: 1;
}

/* =============================================
   LEAD MAGNET LANDING PAGE - PREMIUM
   ============================================= */
.lm-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--blue-50) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.lm-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(128, 188, 96, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.lm-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1000px) {
    .lm-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.lm-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 1000px) {
    .lm-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Ebook Display */
.lm-ebook-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-ebook-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-base);
}

.lm-ebook-image:hover {
    transform: scale(1.03) rotate(-2deg);
}

.lm-ebook-fallback {
    max-width: 400px;
    border-radius: 20px;
}

@media (max-width: 1000px) {
    .lm-ebook-display {
        order: -1;
    }
    
    .lm-ebook-image {
        max-height: 400px;
    }
}

.lm-content {
    max-width: 620px;
}

.lm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 15px rgba(128, 188, 96, 0.35);
}

.lm-value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--slate-900);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.75rem;
}

.lm-value-tag .original {
    text-decoration: line-through;
    opacity: 0.6;
}

.lm-title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.lm-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Transformation promise */
.lm-promise {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--blue-50) 100%);
    border: 2px solid var(--green-200);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}

.lm-promise-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lm-promise-text {
    color: var(--slate-700);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits list */
.lm-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.lm-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
    transition: all var(--transition-fast);
}

.lm-benefits li:last-child {
    border-bottom: none;
}

.lm-benefits li:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, var(--green-50), transparent);
    margin-left: -1rem;
    padding-left: 1rem;
    border-radius: 12px;
}

.lm-benefits .check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(128, 188, 96, 0.3);
}

.lm-benefits .check-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.lm-benefits strong {
    color: var(--slate-900);
}

/* What's inside section */
.lm-whats-inside {
    background: var(--slate-50);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.lm-whats-inside h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--slate-700);
}

.lm-whats-inside ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .lm-whats-inside ul {
        grid-template-columns: 1fr;
    }
}

.lm-whats-inside li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--slate-600);
}

.lm-whats-inside li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Social proof on lead magnet page */
.lm-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    margin-top: 2rem;
}

.lm-social-proof-avatars {
    display: flex;
}

.lm-social-proof-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 2px solid white;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.lm-social-proof-avatars .avatar:first-child {
    margin-left: 0;
}

.lm-social-proof-text {
    font-size: 0.9rem;
    color: var(--slate-600);
}

.lm-social-proof-text strong {
    color: var(--slate-900);
}

/* Lead Capture Form - Premium */
.lm-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 30px 90px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--slate-100);
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.lm-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

/* =============================================
   LEAD MAGNET FORM SECTION - LANDSCAPE
   ============================================= */
.lm-form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    position: relative;
}

.lm-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(128, 188, 96, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.lm-form-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.lm-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lm-form-header h2 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.lm-form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.lm-form-horizontal {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.lm-form-fields {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 800px) {
    .lm-form-fields {
        grid-template-columns: 1fr;
    }
}

.lm-form-field .lead-input {
    margin: 0;
}

.lm-form-submit .btn {
    white-space: nowrap;
    height: 100%;
    min-height: 60px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.lm-form-field .lead-input {
    min-height: 60px;
    font-size: 1rem;
}

.lm-form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
}

.lm-form-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lm-form-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-500);
    font-size: 0.9rem;
}

.lm-form-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.lm-form-title {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-top: 0.5rem;
}

.lm-form-subtitle {
    color: var(--slate-500);
    text-align: center;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.lm-form-value {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--green-50);
    border-radius: 12px;
    border: 1px dashed var(--green-300);
}

.lm-form-value .label {
    font-size: 0.8rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lm-form-value .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.lm-form-value .original {
    text-decoration: line-through;
    color: var(--slate-400);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-input,
.lead-select {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1.05rem;
    border: 2px solid var(--slate-200);
    border-radius: 14px;
    background: var(--slate-50);
    transition: all var(--transition-fast);
    font-family: inherit;
}

.lead-input:focus,
.lead-select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 84, 146, 0.1);
}

.lead-input::placeholder {
    color: var(--slate-400);
}

.form-consent {
    font-size: 0.8rem;
    color: var(--slate-500);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.lm-form-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
}

.lm-form-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.lm-form-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.lm-form-features li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* =============================================
   LEAD MAGNET ADDITIONAL SECTIONS
   ============================================= */
.lm-section {
    padding: 5rem 0;
}

.lm-section.alt {
    background: var(--slate-50);
}

.lm-section.dark {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-950) 100%);
    color: white;
}

.lm-section.dark h2,
.lm-section.dark h3 {
    color: white;
}

.lm-section.dark p {
    color: var(--slate-300);
}

/* Author avatar in lead magnet page */
.lm-author-avatar {
    width: auto;
    height: 280px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 15px 50px rgba(0,0,0,0.12));
    object-fit: contain;
}

/* Who this is for */
.lm-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lm-who-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.lm-who-box {
    padding: 2rem;
    border-radius: 20px;
}

.lm-who-box.for {
    background: linear-gradient(135deg, var(--green-50) 0%, white 100%);
    border: 2px solid var(--green-200);
}

.lm-who-box.not-for {
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
    border: 2px solid #fecaca;
}

.lm-who-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lm-who-box.for h3 {
    color: var(--accent-dark);
}

.lm-who-box.not-for h3 {
    color: #dc2626;
}

.lm-who-box ul {
    list-style: none;
}

.lm-who-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--slate-700);
}

.lm-who-box li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.lm-who-box.for li svg {
    color: var(--accent);
}

.lm-who-box.not-for li svg {
    color: #dc2626;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(128, 188, 96, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, white 0%, var(--slate-50) 100%);
}

.thank-you-content {
    max-width: 620px;
}

.thank-you-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(128, 188, 96, 0.35);
}

@keyframes scaleIn {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.thank-you-icon svg {
    width: 44px;
    height: 44px;
    color: white;
}

.thank-you-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.thank-you-content > p {
    font-size: 1.2rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.next-steps {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--slate-100);
    margin-top: 3rem;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.next-steps h3 {
    margin-bottom: 1.75rem;
    text-align: center;
    font-size: 1.35rem;
}

.next-steps ol {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-50) 100%);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(128, 188, 96, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.25rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--primary) !important;
    font-size: 1.15rem;
    padding: 1.25rem 3rem;
}

.cta-section .btn:hover {
    background: var(--slate-50);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    color: var(--primary) !important;
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.price-tag .currency {
    font-size: 1.75rem;
    font-weight: 600;
}

.price-tag .amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.price-tag .period {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 5rem 0 2.5rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.footer-logo {
    height: 240px;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--slate-400);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   UTILITIES
   ============================================= */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.text-center { text-align: center; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .nav-links-left,
    .nav-links-right {
        display: none;
    }
    
    .nav-logo-center {
        position: relative;
        left: auto;
        transform: none;
    }
    
    .nav-logo-center:hover {
        transform: scale(1.03);
    }
    
    .nav-inner.nav-centered {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .nav-logo-center img {
        height: 100px;
    }
    
    .nav-scrolled .nav-logo-center img {
        height: 90px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .stage-item {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    
    .stages-list::before {
        display: none;
    }
    
    .lm-form-wrapper {
        padding: 2rem;
        position: relative;
        top: 0;
    }
    
    .features-grid,
    .lead-magnets-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
