/* ===================================
   CSS CUSTOM PROPERTIES - KAST BRAND
   =================================== */

:root {
    /* Brand Colors */
    --primary-purple: #772afc;
    --primary-blue: #4644fd;
    --secondary-orange: #f1a843;
    --light-neutral: #f9f9f9;
    --dark-neutral: #242038;

    /* Extended Palette */
    --purple-light: #9d6bfd;
    --purple-pale: #f5f1ff;
    --blue-light: #7b79fd;
    --blue-pale: #f1f1fe;
    --neutral-white: #ffffff;
    --neutral-100: #fafafa;
    --neutral-200: #f4f4f5;
    --neutral-300: #e4e4e7;
    --neutral-400: #a1a1aa;
    --neutral-600: #52525b;
    --neutral-700: #3f3f46;
    --neutral-800: #27272a;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing System (8px base) */
    --space-1: 0.5rem;   /* 8px */
    --space-2: 1rem;     /* 16px */
    --space-3: 1.5rem;   /* 24px */
    --space-4: 2rem;     /* 32px */
    --space-5: 2.5rem;   /* 40px */
    --space-6: 3rem;     /* 48px */
    --space-7: 4rem;     /* 64px */
    --space-8: 5rem;     /* 80px */
    --space-10: 6rem;    /* 96px */
    --space-12: 8rem;    /* 128px */

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-neutral);
    background-color: var(--light-neutral);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(119, 42, 252, 0.1);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 var(--space-4);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-logo svg {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--purple-light);
}

.nav-cta {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--neutral-white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(119, 42, 252, 0.3);
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
    }

    .nav-content {
        padding: 0 var(--space-2);
    }

    .nav-links {
        gap: var(--space-3);
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .nav-link-pricing {
        display: none;
    }

    .nav-link:last-of-type {
        display: block;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .nav-logo svg {
        width: 90px;
        height: 30px;
    }
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-5);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */

.superheadline {
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: var(--space-2);
}

.section-headline {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-neutral);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.section-headline.centered {
    text-align: center;
}

.section-headline.gradient {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-headline {
    font-size: clamp(2.25rem, 2rem + 2vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-neutral);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.hero-supporting {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    line-height: 1.6;
    color: var(--neutral-600);
    margin-bottom: var(--space-5);
}

.pillar-headline {
    font-size: clamp(1.75rem, 1.5rem + 1.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-neutral);
    margin-bottom: var(--space-3);
}

.pillar-subheadline {
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--neutral-700);
    margin-bottom: var(--space-3);
}

.pillar-text {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-3);
}

.pillar-text.emphasis {
    font-weight: 600;
    color: var(--dark-neutral);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: var(--neutral-white);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 25px -5px rgba(119, 42, 252, 0.4),
        0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--purple-pale);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--neutral-white);
    color: var(--dark-neutral);
    border-color: var(--neutral-300);
}

.btn-outline:hover {
    border-color: var(--primary-purple);
    background: var(--purple-pale);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    padding: var(--space-10) 0 var(--space-12);
    background: linear-gradient(135deg, #f5f1ff 0%, #ebe4ff 50%, #f8f5ff 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(119, 42, 252, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(70, 68, 253, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 2.75rem;
    overflow: hidden;
    box-shadow:
        0 50px 100px -20px rgba(119, 42, 252, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, var(--neutral-800), var(--neutral-700));
    padding: 1rem;
    transform: rotate(-8deg);
    transition: transform 0.4s ease;
}

.phone-mockup:hover {
    transform: rotate(-8deg) translateY(-10px) scale(1.03);
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 1.75rem;
}

.chat-overlay {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-lg);
}

.chat-bubble {
    margin-bottom: var(--space-2);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    max-width: 85%;
}

.chat-bubble.received {
    background: var(--neutral-200);
    margin-right: auto;
}

.chat-bubble.sent {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: var(--neutral-white);
    margin-left: auto;
}

.chat-bubble p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.chat-time {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: var(--space-10) 0;
    background: var(--neutral-white);
    position: relative;
    overflow: hidden;
}

.problem-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-purple) 50%, transparent 100%);
    opacity: 0.2;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(239, 236, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(circle at 20% 30%, rgba(119, 42, 252, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(70, 68, 253, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.problem-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-section .section-headline {
    font-size: clamp(2.25rem, 2rem + 1.5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.15;
}

.problem-text {
    font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: var(--space-5);
}

/* ===================================
   IMPACT SECTION
   =================================== */

.impact-section {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(241, 168, 67, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.impact-section::after {
    content: '⚠';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 8rem;
    opacity: 0.03;
    color: #ef4444;
    pointer-events: none;
    z-index: 0;
}

.impact-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.impact-section .section-headline {
    font-size: clamp(2rem, 1.8rem + 1.5vw, 3.25rem);
    font-weight: 800;
}

.impact-text {
    font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
    line-height: 1.75;
    color: var(--neutral-700);
    font-weight: 500;
}

/* ===================================
   FRAMEWORK SECTION
   =================================== */

.framework-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, #f5f0ff 0%, #ebe4ff 50%, #f5f1ff 100%);
    position: relative;
}

.framework-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(119, 42, 252, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(70, 68, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.framework-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.framework-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .framework-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.framework-card {
    background: var(--neutral-white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-number {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(119, 42, 252, 0.15);
    background: linear-gradient(135deg, rgba(119, 42, 252, 0.05), rgba(70, 68, 253, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.framework-card:hover .card-number {
    color: rgba(119, 42, 252, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 25px -5px rgba(119, 42, 252, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: var(--radius-lg);
    color: var(--neutral-white);
    margin-bottom: var(--space-3);
}

.card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-600);
}

.framework-closing {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-neutral);
}

/* ===================================
   PILLAR SECTIONS
   =================================== */

.pillar-section {
    padding: var(--space-10) 0;
}

.pillar-one {
    background: var(--neutral-white);
}

.pillar-three {
    background: var(--neutral-white);
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
    align-items: center;
}

@media (min-width: 1024px) {
    .pillar-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .pillar-grid.reverse {
        direction: rtl;
    }

    .pillar-grid.reverse > * {
        direction: ltr;
    }
}

.pillar-visual {
    position: relative;
}

.pillar-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-image:hover {
    transform: scale(1.02);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pillar-image.elevated {
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* ===================================
   WHATSAPP SECTION
   =================================== */

.whatsapp-section {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--purple-pale) 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(70, 68, 253, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(119, 42, 252, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-mockup-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-phone {
    position: relative;
    z-index: 2;
    max-width: 400px;
    background: var(--neutral-white);
    border-radius: 2.75rem;
    box-shadow:
        0 50px 100px -20px rgba(37, 211, 102, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: rotate(8deg);
    transition: transform 0.4s ease;
}

.whatsapp-phone:hover {
    transform: rotate(8deg) translateY(-10px) scale(1.03);
}

.whatsapp-bg-image {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 40%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: 1;
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--neutral-white);
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-header span {
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-messages {
    padding: var(--space-4);
    background: #ECE5DD;
    min-height: 400px;
}

.whatsapp-message {
    margin-bottom: var(--space-3);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    max-width: 80%;
    position: relative;
}

.whatsapp-message.received {
    background: var(--neutral-white);
    margin-right: auto;
    border-bottom-left-radius: 0.25rem;
}

.whatsapp-message.sent {
    background: #DCF8C6;
    margin-left: auto;
    border-bottom-right-radius: 0.25rem;
}

.whatsapp-message p {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    color: var(--neutral-800);
}

.whatsapp-message span {
    font-size: 0.6875rem;
    color: var(--neutral-600);
}

/* ===================================
   AI MOCKUP
   =================================== */

.ai-mockup {
    position: relative;
}

.ai-chat-overlay {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-lg);
}

.ai-bubble {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.ai-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: var(--neutral-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    width: fit-content;
}

.ai-bubble p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--dark-neutral);
}

/* ===================================
   DECORATIVE DIVIDERS
   =================================== */

.decorative-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    margin: var(--space-4) auto;
    border-radius: 2px;
}

.decorative-divider.left {
    margin-left: 0;
}

.decorative-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   DIAGONAL DIVIDERS
   =================================== */

.section-divider-slant {
    position: absolute;
    width: 100%;
    height: 100px;
    background: inherit;
    z-index: 1;
}

.section-divider-slant.top {
    top: 0;
    transform: skewY(-2deg);
    transform-origin: top left;
}

.section-divider-slant.bottom {
    bottom: 0;
    transform: skewY(2deg);
    transform-origin: bottom right;
}

/* ===================================
   GROWTH SECTION - PREMIUM TIER
   =================================== */

.growth-section {
    padding: var(--space-10) 0 var(--space-12);
    background: linear-gradient(135deg, #1a1625 0%, #2d2640 50%, #1a1625 100%);
    position: relative;
    overflow: hidden;
}

.growth-section::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1a1625 0%, #2d2640 50%, #1a1625 100%);
    transform: skewY(-2deg);
    z-index: 0;
}

.growth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(119, 42, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(70, 68, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(241, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.growth-header {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

.growth-superheadline {
    font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.growth-headline {
    color: var(--neutral-white);
    font-size: clamp(2.25rem, 2rem + 1.5vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #e8d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.growth-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 800px;
}

.growth-section .pillar-headline {
    color: var(--neutral-white);
    font-size: clamp(2.25rem, 2rem + 1.5vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #e8d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-section .pillar-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
}

.growth-section .pillar-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
}

.growth-section .pillar-text.emphasis {
    color: var(--neutral-white);
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-section .pillar-image {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(119, 42, 252, 0.3);
}

.growth-section .pillar-visual {
    position: relative;
}

.growth-section .pillar-visual::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    opacity: 0.15;
    border-radius: var(--radius-xl);
    filter: blur(40px);
    z-index: -1;
}

.growth-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-orange), #ffd700);
    color: var(--dark-neutral);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 2rem;
    box-shadow:
        0 10px 20px -5px rgba(241, 168, 67, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-4);
    animation: badgePulse 2s ease-in-out infinite;
}

.growth-badge svg {
    fill: currentColor;
    stroke: none;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 10px 20px -5px rgba(241, 168, 67, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 15px 30px -5px rgba(241, 168, 67, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.3);
    }
}

/* ===================================
   AS SEEN ON SECTION
   =================================== */

.as-seen-on-section {
    padding: var(--space-8) 0;
    background: var(--neutral-100);
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.as-seen-header {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-400);
    margin-bottom: var(--space-5);
}

.media-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .media-logos {
        gap: var(--space-8);
    }
}

.media-logo {
    opacity: 0.4;
    transition: opacity var(--transition-base);
    color: var(--neutral-600);
}

.media-logo:hover {
    opacity: 0.7;
}

.media-logo svg {
    height: 40px;
    width: auto;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, #faf8ff 0%, #f8f5ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(119, 42, 252, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(70, 68, 253, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

.testimonials-subheadline {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    color: var(--neutral-600);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--neutral-white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 25px -5px rgba(119, 42, 252, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: relative;
}

.quote-icon {
    color: var(--primary-purple);
    opacity: 0.2;
    margin-bottom: var(--space-2);
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-700);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--neutral-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    flex-shrink: 0;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-neutral);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    padding: var(--space-10) 0;
    background: var(--neutral-white);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(119, 42, 252, 0.02) 50px, rgba(119, 42, 252, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(70, 68, 253, 0.02) 50px, rgba(70, 68, 253, 0.02) 51px);
    pointer-events: none;
    z-index: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-7);
    position: relative;
    z-index: 1;
}

.pricing-subheadline {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    color: var(--neutral-600);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--neutral-white);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(119, 42, 252, 0.1);
    border-color: var(--primary-purple);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #faf8ff 0%, #ffffff 100%);
    border-width: 3px;
    border-color: var(--primary-purple);
    box-shadow:
        0 20px 40px -10px rgba(119, 42, 252, 0.2),
        0 0 0 1px rgba(119, 42, 252, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: var(--neutral-white);
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: var(--space-3);
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-5);
}

.pricing-amount > div {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-600);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-neutral);
}

.pricing-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--neutral-500);
    margin-top: var(--space-1);
    display: block;
}

.contact {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-5);
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--neutral-600);
    border-bottom: 1px solid var(--neutral-200);
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-closing {
    text-align: center;
    font-size: 1.125rem;
    color: var(--neutral-600);
}

/* ===================================
   USE CASES SECTION
   =================================== */

.use-cases-section {
    padding: var(--space-10) 0;
    background: var(--light-neutral);
}

.use-cases-content {
    text-align: center;
    margin-bottom: var(--space-7);
}

.use-cases-subheadline {
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: var(--space-3);
}

.use-cases-text {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-emphasis {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    font-weight: 600;
    color: var(--dark-neutral);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.use-case-card {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.use-case-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.use-case-content {
    padding: var(--space-4);
}

.use-case-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: var(--space-1);
}

.use-case-content p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* ===================================
   SLIDER SECTION
   =================================== */

.slider-section {
    padding: var(--space-10) 0;
    background: var(--purple-pale);
}

.slider-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.slider-subheadline {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    color: var(--neutral-600);
}

.event-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto var(--space-6);
}

.slider-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
    .slide img {
        height: 600px;
    }
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--space-6) var(--space-5);
    color: var(--neutral-white);
}

.slide-caption h3 {
    font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.slide-caption p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-neutral);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--neutral-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.slider-btn.prev {
    left: var(--space-3);
}

.slider-btn.next {
    right: var(--space-3);
}

@media (min-width: 768px) {
    .slider-btn.prev {
        left: -24px;
    }

    .slider-btn.next {
        right: -24px;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-300);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: var(--primary-purple);
    width: 32px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--primary-purple);
    opacity: 0.7;
}

.slider-closing {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-neutral);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--space-10) 0;
    background: var(--neutral-white);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.faq-subheadline {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    color: var(--neutral-600);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--neutral-200);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    background: none;
    border: none;
    text-align: left;
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    font-weight: 600;
    color: var(--dark-neutral);
    cursor: pointer;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-question:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 4px;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: var(--space-2);
    color: var(--primary-purple);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer p {
    padding-bottom: var(--space-4);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.7;
    color: var(--neutral-600);
}

/* ===================================
   APP DOWNLOAD SECTION
   =================================== */

.app-download-section {
    position: relative;
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5a3fd6 50%, var(--primary-blue) 100%);
    overflow: hidden;
}

.download-slant-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 120px 0;
    border-color: transparent var(--neutral-white) transparent transparent;
    z-index: 0;
}

.download-slant-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 120px 100vw;
    border-color: transparent transparent var(--neutral-white) transparent;
    z-index: 0;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .download-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

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

@media (min-width: 1024px) {
    .download-content {
        text-align: left;
    }
}

.download-headline {
    font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

@media (min-width: 768px) {
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .download-buttons {
        justify-content: flex-start;
    }
}

.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.875rem 1.75rem;
    background: rgba(0, 0, 0, 0.9);
    color: var(--neutral-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.store-button:hover {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.store-icon {
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.store-name {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
}

.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
    transform: rotate(-15deg);
    transition: transform 0.4s ease;
}

.download-phone-mockup:hover {
    transform: rotate(-15deg) translateY(-12px) scale(1.05);
}

.download-phone-screen {
    width: 100%;
    height: auto;
    border-radius: 2.5rem;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        0 30px 60px -30px rgba(0, 0, 0, 0.8),
        0 0 0 12px rgba(255, 255, 255, 0.1),
        0 0 0 14px rgba(255, 255, 255, 0.05);
}

.download-logo-watermark {
    position: absolute;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    font-family: var(--font-primary);
    letter-spacing: -0.03em;
}

.download-logo-watermark.top-right {
    top: -2rem;
    right: -2rem;
}

.download-logo-watermark.bottom-left {
    bottom: -2rem;
    left: -2rem;
}

@media (max-width: 1023px) {
    .download-logo-watermark {
        display: none;
    }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    position: relative;
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    overflow: hidden;
    margin-bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.final-cta-headline {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-white);
    margin-bottom: var(--space-6);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #1a1625;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-10) 0 var(--space-4);
}

.footer-cta {
    text-align: center;
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-headline {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-white);
    margin-bottom: var(--space-5);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: var(--space-2);
}

.footer-brand svg {
    margin-bottom: var(--space-2);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: var(--space-8);
    justify-content: flex-end;
}

.footer-column h4 {
    color: var(--neutral-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: var(--space-2);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-4);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .footer-links {
        justify-content: flex-start;
        gap: var(--space-6);
    }
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

@media (max-width: 767px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .hero-cta,
    .slider-btn,
    .btn {
        display: none;
    }
}
