/* ============================================
   THE SOCIAL RETAIL
   Modern, Professional Landing Page
   Clean, Sophisticated Design
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors - Modern Professional Palette */
    --color-primary: #C45C3E;
    --color-primary-dark: #A34832;
    --color-primary-light: #D97B5C;
    --color-primary-bg: #FAF6F3;

    --color-secondary: #1A1A1A;
    --color-secondary-light: #333333;

    --color-accent-beige: #E8DFD5;
    --color-accent-cream: #F5F0EB;
    --color-accent-charcoal: #2D2D2D;

    /* Backgrounds */
    --color-bg: #FFFFFF;
    --color-bg-alt: #FAFAFA;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #1A1A1A;

    /* Text */
    --color-text: #1A1A1A;
    --color-text-secondary: #5C5C5C;
    --color-text-muted: #8C8C8C;

    /* Borders */
    --color-border: #E5E5E5;
    --color-border-light: #F0F0F0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #C45C3E 0%, #A34832 100%);
    --gradient-card-1: linear-gradient(135deg, #FAF6F3 0%, #F5F0EB 100%);
    --gradient-card-2: linear-gradient(135deg, #F5F5F5 0%, #EBEBEB 100%);
    --gradient-card-3: linear-gradient(135deg, #4A4A4A 0%, #5C5C5C 100%);
    --gradient-cta: linear-gradient(135deg, #C45C3E 0%, #D97B5C 50%, #C45C3E 100%);

    /* Typography */
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

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

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100vw;
}

::selection {
    background: var(--color-primary);
    color: white;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

.text-accent {
    color: var(--color-primary);
}

.highlight {
    background: linear-gradient(120deg, var(--color-primary-bg) 0%, var(--color-primary-bg) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    padding: 0 0.25em;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(196, 92, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(196, 92, 62, 0.3);
}

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

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

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

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-bg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

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

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Check Icon */
.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

/* ============================================
   DECORATIVE SHAPES - Modern Minimal Style
   ============================================ */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.shape {
    position: absolute;
}

/* Large organic blob - top right */
.shape-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: radial-gradient(ellipse at 30% 30%, rgba(196, 92, 62, 0.06) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 25s ease-in-out infinite;
}

/* Thin arc line - left */
.shape-2 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: -150px;
    background: transparent;
    border: 1px solid rgba(196, 92, 62, 0.08);
    border-radius: 50%;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    animation: floatSlow 30s ease-in-out infinite;
}

/* Gradient mesh - center right */
.shape-3 {
    width: 300px;
    height: 300px;
    top: 45%;
    right: 5%;
    background:
        radial-gradient(circle at 30% 30%, rgba(232, 223, 213, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(196, 92, 62, 0.05) 0%, transparent 50%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphBlob 20s ease-in-out infinite reverse;
}

/* Soft glow - bottom left */
.shape-4 {
    width: 800px;
    height: 800px;
    bottom: -30%;
    left: -20%;
    background: radial-gradient(ellipse at center, rgba(245, 240, 235, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

/* Floating line accent - top left */
.shape-5 {
    width: 150px;
    height: 2px;
    top: 15%;
    left: 10%;
    background: linear-gradient(90deg, transparent, rgba(196, 92, 62, 0.15), transparent);
    transform: rotate(-30deg);
    animation: floatSlow 20s ease-in-out infinite;
}

/* Small accent dot - mid left */
.shape-6 {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 8%;
    background: rgba(196, 92, 62, 0.2);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

/* Subtle grid pattern overlay - right side */
.shape-7 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: 15%;
    background:
        linear-gradient(rgba(232, 223, 213, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 223, 213, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 20px;
    opacity: 0.5;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

/* Large terracotta glow - bottom right */
.shape-8 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(ellipse at 70% 70%, rgba(196, 92, 62, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(30px);
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 30% 70% 60%;
        transform: translate(-5px, 10px) rotate(-3deg);
    }
    75% {
        border-radius: 50% 40% 50% 60% / 40% 60% 50% 50%;
        transform: translate(5px, -5px) rotate(2deg);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-30deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(10px) rotate(-25deg);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Shapes stay behind content */
main, .footer {
    position: relative;
    z-index: 20;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base) var(--ease-out);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    padding: var(--space-sm) 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.hero-author {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.hero-reassurance .check-icon {
    width: 18px;
    height: 18px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1F2937;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: transform var(--transition-slow) var(--ease-out);
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FDF4FF 0%, #FAE8FF 100%);
    background-image: url('https://res.cloudinary.com/dt908clbo/image/upload/image_1768989242856_e1okgt_yf1zbg.png');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
}

.video-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.video-logo {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.video-account {
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.video-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.video-text p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    line-height: 1.4;
}

.video-engagement {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.video-engagement span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 223, 213, 0.4) 0%, transparent 70%);
    top: 10%;
    right: -10%;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 92, 62, 0.08) 0%, transparent 70%);
    bottom: 20%;
    left: -5%;
}

.decoration-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(232, 223, 213, 0.3) 0%, rgba(245, 240, 235, 0.2) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

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

.problem-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.problem-text p {
    margin-bottom: var(--space-lg);
}

.problem-text .highlight-block {
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    margin: var(--space-xl) 0;
    text-align: left;
}

.problem-conclusion {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: var(--space-xl);
}

.problem-punchline {
    font-size: 1.375rem;
    color: var(--color-primary-dark);
    margin: var(--space-lg) 0;
}

.problem-final {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    top: 10%;
    right: -80px;
    background: linear-gradient(135deg, rgba(232, 223, 213, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solution::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    border: 2px solid rgba(196, 92, 62, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.solution-header {
    margin-bottom: var(--space-2xl);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.pillar-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base) var(--ease-out);
}

.pillar-1 {
    background: var(--gradient-card-1);
}

.pillar-2 {
    background: var(--gradient-card-2);
}

.pillar-3 {
    background: var(--gradient-card-1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.pillar-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.solution-result {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-primary-bg);
    border-radius: var(--radius-xl);
}

.solution-result h3 {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
}

.solution-result p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ============================================
   DEMO SECTION
   ============================================ */
.demo {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.demo-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base) var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.demo-video {
    aspect-ratio: 9/16;
    max-height: 400px;
    cursor: pointer;
    margin: 0 auto;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: linear-gradient(135deg, #F5F0EB 0%, #E8DFD5 100%);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.demo-video:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button-large {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button-large svg {
    width: 50px;
    height: 50px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.demo-video:hover .play-button-large {
    transform: scale(1.1);
}

.video-thumbnail-container .video-type-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 2;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-placeholder-1 {
    background: linear-gradient(135deg, #F5F0EB 0%, #E8DFD5 100%);
}

.video-placeholder-2 {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
}

.video-placeholder-3 {
    background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 100%);
}

.play-button {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base) var(--ease-out);
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    color: var(--color-primary);
}

.demo-card:hover .play-button {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.video-type-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.375rem 0.75rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
}

.demo-info {
    padding: var(--space-lg);
}

.demo-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.demo-info h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.demo-info p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.demo-note {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

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

.demo-cta p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: 20%;
    left: -60px;
    background: rgba(232, 223, 213, 0.3);
    border-radius: 30px;
    transform: rotate(20deg);
    pointer-events: none;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: var(--space-2xl) 0;
    position: relative;
}

.timeline-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    padding: 0 var(--space-md);
}

.step-day {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-border));
    z-index: -1;
}

.timeline-step:last-child .step-connector {
    display: none;
}

.process-reassurance {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-primary-bg);
    border-radius: var(--radius-xl);
    max-width: 500px;
    margin: 0 auto;
}

.process-reassurance p {
    font-size: 1.125rem;
}

/* ============================================
   CREDIBILITY SECTION
   ============================================ */
.credibility {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.credibility-photo {
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, #E8DFD5 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.founder-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.photo-initials {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
}

.credibility-content .section-title {
    text-align: left;
}

.credibility-intro {
    margin-bottom: var(--space-md);
}

.credibility-name {
    font-size: 1.25rem;
}

.credibility-stats {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.credibility-stats li {
    padding: var(--space-xs) 0;
    color: var(--color-text-secondary);
    font-size: 1.0625rem;
}

.credibility-pitch {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.credibility-location {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
}

.location-icon {
    font-size: 1.5rem;
}

.credibility-location p {
    font-size: 0.9375rem;
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer {
    padding: var(--space-4xl) 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.offer-list ul {
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--color-border-light);
}

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

.offer-list .check-icon {
    margin-top: 2px;
}

.offer-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.price-anchor {
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
}

.price-anchor p {
    margin-bottom: var(--space-sm);
}

.price-crossed {
    text-decoration: line-through;
    color: var(--color-text-muted);
}

.price-highlight {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-top: var(--space-sm);
}

.qualification {
    padding: var(--space-lg);
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: var(--radius-xl);
}

.qualification h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.qualification ul {
    list-style: none;
}

.qualification li {
    padding: var(--space-xs) 0;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.offer-cta {
    text-align: center;
    padding-top: var(--space-lg);
}

.cta-reassurance {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.comparison-table {
    display: none;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 180px repeat(3, 1fr);
}

.comparison-header {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.comparison-cell {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
}

.comparison-label {
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.comparison-highlight {
    background: var(--color-primary-bg);
    color: var(--color-primary-dark);
}

.comparison-header .comparison-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.recommended-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-yes {
    color: var(--color-primary);
}

.icon-no {
    color: #EF4444;
}

/* Comparison Cards (Mobile) */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.comparison-card {
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.comparison-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border-light);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.comparison-card li .label {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-card-highlight {
    background: var(--color-primary-bg);
    border: 2px solid var(--color-primary);
    position: relative;
}

.comparison-card-highlight .recommended-badge {
    position: absolute;
    top: -10px;
    right: var(--space-md);
}

.comparison-conclusion {
    text-align: center;
    margin-top: var(--space-2xl);
}

.comparison-conclusion p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.comparison-conclusion .conclusion-highlight {
    font-size: 1.375rem;
    color: var(--color-text);
    margin-top: var(--space-md);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 10%;
    right: -70px;
    border: 2px solid rgba(196, 92, 62, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.faq::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 10%;
    background: rgba(196, 92, 62, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.faq-list {
    max-width: 720px;
    margin: var(--space-2xl) auto 0;
}

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

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    transition: transform var(--transition-base) var(--ease-out);
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 var(--space-md);
    color: var(--color-text-secondary);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #FAF6F3 0%, #F5F0EB 50%, #E8DFD5 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 92, 62, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: var(--space-xl);
}

.cta-offer {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.offer-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-offer p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.offer-terms {
    color: var(--color-text-secondary);
}

.cta-urgency {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid #FCD34D;
    text-align: left;
    margin-bottom: var(--space-xl);
}

.urgency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.urgency-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: #B45309;
}

.urgency-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.cta-button {
    margin-bottom: var(--space-lg);
}

.cta-final .cta-reassurance {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cta-final .cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--color-text);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand .logo-text {
    color: white;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.video-modal-frame {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
}

.video-modal-frame iframe,
.video-modal-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   CONTACT FORM MODAL
   ============================================ */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

/* Backdrop opaque pour accès direct via #contact */
.contact-modal.direct-access .contact-modal-backdrop {
    background: #000;
}

.contact-modal-content {
    position: relative;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-modal.active .contact-modal-content {
    transform: scale(1) translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--color-bg-alt);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.contact-modal-close:hover {
    background: var(--color-border);
}

.contact-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--color-text);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-right: var(--space-xl);
}

.contact-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.contact-modal-header p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238C8C8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.contact-form select option[value=""][disabled] {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(196, 92, 62, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    margin-top: var(--space-sm);
}

/* Responsive for form */
@media (max-width: 550px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-modal-content {
        padding: var(--space-lg);
    }

    .contact-modal-header {
        padding-right: var(--space-lg);
    }

    .contact-modal-header h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.success-modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.success-modal.active .success-modal-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease-out;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.success-modal-content p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.success-modal-content .success-subtext {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.success-modal-content .btn {
    min-width: 200px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    animation: fadeIn 0.8s var(--ease-out) both;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1024px) {
    .comparison-table {
        display: block;
    }

    .comparison-cards {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-reassurance {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-step {
        max-width: 100%;
    }

    .step-connector {
        display: none;
    }

    .credibility-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .credibility-content .section-title {
        text-align: center;
    }

    .credibility-location {
        justify-content: center;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-legal {
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-links {
        display: none;
    }

    .nav .btn-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: clamp(1.125rem, 4vw, 1.5rem);
        word-wrap: break-word;
    }

    .hero-description,
    .hero-author {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large,
    .btn-xl {
        width: 100%;
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
    }

    .problem-text {
        font-size: 1.125rem;
    }

    .problem-text .highlight-block {
        padding: var(--space-md);
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .cta-urgency {
        flex-direction: column;
        text-align: center;
    }

    .cta-final .cta-reassurance {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .hero-title {
        font-size: 1.625rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

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

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .hero-decoration {
        display: none;
    }

    .bg-shapes {
        display: none;
    }

    .solution::before,
    .solution::after,
    .process::before,
    .faq::before,
    .faq::after {
        display: none;
    }
}
