/* ========================================
   CABINET KÉVIN & LÉNA RECORBET
   Design 2026 — Lumineux & Professionnel
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Palette claire & lumineuse */
    --warm-bg: #FFFFFF;
    --warm-cream: #F7F9F4;
    --warm-sand: #EEF3E8;
    --warm-beige: #DDE8D4;
    --white: #ffffff;

    /* Vert nature doux — couleur principale */
    --dark: #2D5016;
    --dark-olive: #3A6520;
    --dark-soft: #4A7A2A;

    /* Nature Accents — plus vifs */
    --sage: #5A8A3C;
    --sage-light: #72A452;
    --sage-muted: #8FBE6E;
    --olive: #4A7A2A;

    /* Accents chauds doux */
    --brown: #7A9B5A;
    --brown-light: #8FB570;
    --gold: #A8C884;
    --terra: #7A9B5A;

    /* Text — plus lisible sur fond clair */
    --text-dark: #1D2D10;
    --text: #374225;
    --text-medium: #5A6E45;
    --text-light: #8A9E74;
    --text-on-dark: rgba(255, 255, 255, 0.92);
    --text-on-dark-muted: rgba(255, 255, 255, 0.65);

    /* Borders — très légers */
    --border: #D8EBC8;
    --border-light: #EBF4E0;

    /* Typography */
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --s-xs: 0.5rem;
    --s-sm: 1rem;
    --s-md: 1.5rem;
    --s-lg: 2rem;
    --s-xl: 3rem;
    --s-2xl: 4rem;
    --s-3xl: 5rem;
    --s-4xl: 7rem;
    --s-5xl: 10rem;

    /* Radius */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 30px;
    --r-full: 50px;

    /* Shadows — très douces sur fond clair */
    --shadow-xs: 0 1px 3px rgba(45, 80, 22, 0.04);
    --shadow-sm: 0 2px 10px rgba(45, 80, 22, 0.07);
    --shadow-md: 0 6px 24px rgba(45, 80, 22, 0.09);
    --shadow-lg: 0 14px 44px rgba(45, 80, 22, 0.11);
    --shadow-xl: 0 28px 64px rgba(45, 80, 22, 0.13);

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   RESET
   ======================================== */

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--warm-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ========================================
   TYPOGRAPHY (V-Yana elegance)
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--s-md);
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    letter-spacing: -0.015em;
    line-height: 1.1;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

h4 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.85;
}

.highlight {
    font-style: italic;
}

.label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: inline-block;
    margin-bottom: var(--s-sm);
}

.label-light {
    color: var(--sage-muted);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

section {
    padding: var(--s-5xl) 0;
}

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

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   NAVIGATION (V-Yana minimal + warm)
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: var(--s-sm) 0;
}

.navbar.scrolled {
    background: rgba(251, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

.navbar.scrolled .nav-logo h1,
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-toggle span {
    color: var(--text-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--s-sm) var(--s-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0;
    transition: var(--transition-fast);
}

.nav-subtitle {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
    margin-bottom: 0;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-subtitle {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    gap: var(--s-xs);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: var(--r-full);
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link:hover {
    color: var(--text-dark);
    background: rgba(26, 31, 22, 0.05);
}

.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.navbar.scrolled .nav-link.active {
    color: var(--sage);
    background: rgba(123, 140, 106, 0.08);
}

.nav-cta {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 24px;
    border-radius: var(--r-full);
    background: var(--white);
    color: var(--text-dark) !important;
    margin-left: var(--s-sm);
    transition: var(--transition);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-cta {
    background: var(--dark);
    color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--dark-olive);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown > .nav-link::after {
    content: '';
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.25s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: var(--s-xs) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover > .nav-link::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-medium) !important;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--warm-cream);
    color: var(--text-dark) !important;
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 6px 0;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 1px;
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--text-dark);
}

/* ========================================
   HERO (Asanora dramatic + V-Yana warmth)
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 0;
    filter: brightness(0.8);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 31, 22, 0.3) 0%,
        rgba(26, 31, 22, 0.15) 40%,
        rgba(26, 31, 22, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    padding: var(--s-lg);
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--s-lg);
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--s-lg);
    text-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

.hero-title .highlight {
    font-style: italic;
    color: var(--warm-sand);
}

.hero-subtitle,
.hero-description {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: var(--s-xl);
    line-height: 1.85;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--s-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--s-3xl);
    margin-top: var(--s-3xl);
    justify-content: center;
}

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

.stat-value {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-on-dark-muted);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* Page hero (shorter) */
.hero-page {
    min-height: 60vh;
}

/* ========================================
   BUTTONS (V-Yana refined)
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary:hover {
    border-color: var(--text);
    background: rgba(26, 31, 22, 0.03);
}

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

.btn-white:hover {
    background: var(--warm-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.35);
}

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

.btn-sage:hover {
    background: var(--olive);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-gradient {
    background: linear-gradient(135deg, var(--dark), var(--dark-olive));
    color: var(--white);
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 38px;
    font-size: 0.9375rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   CARDS (V-Yana clean + warm)
   ======================================== */

.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: var(--s-xl);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: var(--s-md);
    display: block;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--s-sm);
    color: var(--text-dark);
}

.card h4 {
    margin-bottom: var(--s-xs);
    color: var(--text-dark);
}

.card p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.card-featured {
    background: var(--warm-cream);
    border-color: var(--warm-sand);
}

.card-featured:hover {
    box-shadow: var(--shadow-lg);
}

.card-badge {
    position: absolute;
    top: var(--s-md);
    right: var(--s-md);
    background: var(--dark);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-nature {
    border-top: 3px solid var(--sage-muted);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

/* ========================================
   GRIDS
   ======================================== */

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-lg);
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-lg);
}

/* ========================================
   SECTION BACKGROUNDS
   ======================================== */

.bg-white {
    background: var(--white);
}

.bg-warm {
    background: var(--warm-bg);
}

.bg-cream,
.bg-gray,
.bg-mint {
    background: var(--warm-cream);
}

.bg-dark {
    background: var(--dark);
    color: var(--white);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--white);
}

.bg-dark p, .bg-dark .section-subtitle {
    color: var(--text-on-dark);
}

.bg-dark .label {
    color: var(--sage-muted);
}

.bg-gradient {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 140, 106, 0.15), transparent 70%);
    z-index: 0;
}

.bg-gradient > .container {
    position: relative;
    z-index: 1;
}

.bg-gradient h2, .bg-gradient h3, .bg-gradient h4 {
    color: var(--white);
}

.bg-gradient p, .bg-gradient .section-subtitle {
    color: var(--text-on-dark);
}

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

.testimonial {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: var(--s-2xl) var(--s-xl);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--warm-sand);
    position: absolute;
    top: var(--s-sm);
    left: var(--s-lg);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--s-md);
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: var(--s-lg);
    line-height: 1.85;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

/* ========================================
   STEPS
   ======================================== */

.step-card {
    text-align: center;
    padding: var(--s-xl);
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--s-md);
}

/* ========================================
   INFO BOX
   ======================================== */

.info-box {
    background: var(--warm-cream);
    padding: var(--s-lg);
    border-radius: var(--r-md);
    border-left: 3px solid var(--sage-muted);
}

.info-box p { margin: 0; }

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    padding: var(--s-lg) var(--s-xl);
    margin-bottom: var(--s-md);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-xs);
    border-color: var(--border);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--s-sm);
}

.faq-item p {
    margin: 0;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: var(--s-md);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition-fast);
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(123, 140, 106, 0.1);
}

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

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

/* ========================================
   FOOTER (V-Yana minimal elegance)
   ======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--s-4xl) 0 var(--s-lg);
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: var(--s-sm);
    font-size: 1.1rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: var(--s-md);
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: var(--s-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: var(--s-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-md);
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--s-lg);
}

.footer-links a {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.7);
}

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

@media (max-width: 1024px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section { padding: var(--s-3xl) 0; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 90px var(--s-lg) var(--s-xl);
        transition: var(--transition-slow);
        box-shadow: var(--shadow-xl);
        align-items: flex-start;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active { right: 0; }

    .nav-menu .nav-link {
        color: var(--text) !important;
        font-size: 1rem;
        padding: 12px 0;
        background: none !important;
        width: 100%;
    }

    .nav-menu .nav-cta {
        background: var(--dark) !important;
        color: var(--white) !important;
        margin: var(--s-md) 0 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-toggle { display: flex; }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 var(--s-sm);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 8px 0;
        color: var(--text-medium) !important;
    }

    .hero { min-height: 85vh; }
    .hero-page { min-height: 50vh; }
    .hero-stats { flex-direction: column; gap: var(--s-lg); }
    .hero-buttons { flex-direction: column; align-items: center; }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }
    .container, .container-wide { padding: 0 var(--s-md); }
    section { padding: var(--s-2xl) 0; }
    .card { padding: var(--s-lg); }
}

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

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

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mt-xl { margin-top: var(--s-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }
