/* ============================================
   PAUSE ACTIVE - STYLE PRINCIPAL
   Palette : Vert forêt + Beige/Crème
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Couleurs principales */
    --green-900: #2D3F2A;
    --green-800: #3A5236;
    --green-700: #4A6741;
    --green-600: #5A7D4F;
    --green-500: #6B935E;
    --green-400: #8AAF7D;
    --green-300: #A9C99E;
    --green-200: #C8E2C0;
    --green-100: #E7F5E3;
    --green-50: #F3FAF1;

    /* Beige / Crème */
    --beige-900: #4A4539;
    --beige-800: #6B6355;
    --beige-700: #8C8271;
    --beige-600: #A89D8C;
    --beige-500: #C4B8A7;
    --beige-400: #D6CCBE;
    --beige-300: #E8E1D6;
    --beige-200: #F2EDE6;
    --beige-100: #F8F5F0;
    --beige-50: #FCFBF9;

    /* Neutres */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Couleurs sémantiques */
    --color-primary: var(--green-700);
    --color-primary-dark: var(--green-800);
    --color-primary-light: var(--green-500);
    --color-secondary: var(--beige-300);
    --color-secondary-dark: var(--beige-500);
    --color-accent: var(--green-600);
    --color-background: var(--beige-50);
    --color-surface: var(--white);
    --color-text: var(--gray-800);
    --color-text-light: var(--gray-600);
    --color-text-muted: var(--gray-500);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

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

    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

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

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

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

.text-accent-light {
    color: var(--green-300);
}

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

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(252, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    border-bottom-color: var(--beige-300);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-primary);
}

.logo-icon {
    display: flex;
    color: var(--color-primary);
}

.logo-img {
    height: 36px;
    width: auto;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

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

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

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--beige-100) 0%, var(--beige-50) 50%, var(--green-50) 100%);
    z-index: -1;
}

.hero-bg::before {
    display: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--green-100);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image-placeholder {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(74, 103, 65, 0.15));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: calc(20% - 100px);
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 1.5s;
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--green-100);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
    background: var(--white);
}

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

.problem-card {
    padding: var(--space-xl);
    background: var(--beige-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--green-100);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
}

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

.problem-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.problem-highlight {
    display: flex;
    justify-content: center;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-2xl);
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--green-600) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.highlight-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 300px;
    opacity: 0.95;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.section-solution {
    background: var(--beige-100);
}

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

.solution-content .section-badge {
    margin-bottom: var(--space-md);
}

.solution-content .section-title {
    margin-bottom: var(--space-xl);
}

.solution-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.solution-quote {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--white);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.solution-quote p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0;
    line-height: 1.4;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.05rem;
    color: var(--gray-700);
}

.solution-list svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.solution-visual {
    display: flex;
    justify-content: center;
}

.solution-image {
    width: 100%;
    max-width: 500px;
}

.solution-image-placeholder {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.solution-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.section-method {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--beige-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-200);
    line-height: 1;
    margin-bottom: var(--space-md);
}

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

.step-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-xl);
    color: var(--green-200);
    opacity: 0.5;
}

.method-cta {
    margin-top: var(--space-3xl);
    text-align: center;
    padding: var(--space-2xl);
    background: var(--green-50);
    border-radius: var(--radius-xl);
}

.method-cta p {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.section-benefits {
    background: var(--beige-100);
}

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

.benefits-column {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--beige-200);
}

.benefits-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--green-100);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
}

.benefits-header h3 {
    font-size: 1.35rem;
    color: var(--color-primary);
}

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

.benefits-list li {
    display: flex;
    gap: var(--space-md);
}

.benefit-check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--green-100);
    border-radius: var(--radius-full);
    color: var(--color-primary);
}

.benefits-list li strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.benefits-list li p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg);
    background: var(--color-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content .section-badge {
    margin-bottom: var(--space-md);
}

.about-content .section-title {
    margin-bottom: var(--space-xl);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: var(--green-50);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--color-primary);
    border: 1px solid var(--green-200);
}

.credential svg {
    color: var(--green-500);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
    background: linear-gradient(to bottom, var(--green-800) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, var(--green-600) 0%, transparent 70%);
    opacity: 0.3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.contact-content {
    color: var(--white);
}

.contact-content p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--white);
    flex-shrink: 0;
}

.contact-option h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-option p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--beige-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-4xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-4xl);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .hero-content {
        order: 2;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: 1;
        margin-bottom: var(--space-md);
    }

    .hero-image {
        max-width: 280px;
    }

    .hero-logo-container {
        max-width: 280px;
    }

    .floating-card-1 {
        left: 0;
    }

    .floating-card-2 {
        right: 0;
    }

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

    .solution-grid,
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .solution-visual {
        order: -1;
    }

    .solution-image {
        max-width: 400px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-lg);
        border-bottom: 1px solid var(--beige-300);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-sm) 0;
    }

    .nav-link.btn {
        margin-top: var(--space-md);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: var(--space-xl);
    }

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

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

    .btn {
        width: 100%;
    }

    .floating-card {
        display: none;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-lg);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Stagger animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
