/* ===========================
   ACHAT MAISON COMPTANT — style.css
   Orange/black — all-dark palette
   =========================== */

/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange:      #F47C3C;
    --orange-h:    #D96B2A;
    --orange-dim:  rgba(244,124,60,0.15);
    --orange-glow: rgba(244,124,60,0.3);
    --black:       #080808;
    --dark-1:      #0F0F0F;
    --dark-2:      #161616;
    --dark-3:      #1E1E1E;
    --dark-4:      #252525;
    --white:       #FFFFFF;
    --off-white:   #F2F0ED;
    --gray-300:    #D1D5DB;
    --gray-400:    #9CA3AF;
    --gray-500:    #6B7280;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --shadow-card: 0 2px 24px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(244,124,60,0.2);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--dark-1);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 56px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    padding: 5px 12px;
    border: 1px solid rgba(244,124,60,0.35);
    border-radius: 100px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: var(--orange-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,124,60,0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

.btn-large { padding: 17px 36px; font-size: 16px; }


/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(8,8,8,0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition);
}
.nav.scrolled {
    background: rgba(8,8,8,0.97);
    border-bottom-color: rgba(255,255,255,0.07);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-badge {
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 4px 9px;
    border-radius: 4px;
    line-height: 1.2;
}
.logo-badge.sm {
    font-size: 12px;
    padding: 3px 7px;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    padding: 9px 20px;
    border: 1.5px solid var(--orange);
    border-radius: 6px;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.nav-cta:hover {
    background: var(--orange);
    color: var(--black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8,8,8,0.88) 0%,
        rgba(8,8,8,0.78) 45%,
        rgba(8,8,8,0.55) 75%,
        rgba(8,8,8,0.40) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 520px; }

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    padding: 5px 12px;
    border: 1px solid rgba(244,124,60,0.4);
    border-radius: 100px;
    animation: fadeSlideUp 0.7s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7.5vw, 96px);
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeSlideUp 0.8s 0.1s ease both;
}
.hero-title em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    font-size: 16px;
    color: var(--gray-300);
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 6px 14px;
    border-radius: 100px;
}
.chip-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Hero form card */
.hero-form-card {
    background: rgba(8,8,8,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244,124,60,0.2);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card), 0 0 80px rgba(244,124,60,0.06);
    animation: fadeSlideUp 0.9s 0.2s ease both, float 7s ease-in-out 1.2s infinite;
}

.form-card-head {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
}
.form-group input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 15px;
    color: var(--white);
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input::placeholder { color: var(--gray-500); }
.form-group input:focus { border-color: var(--orange); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--orange);
    color: var(--black);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 4px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
    background: var(--orange-h);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,124,60,0.4);
}

.form-note {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    margin-top: 12px;
}

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    opacity: 0.5;
    animation: fadeSlideUp 1s 1s ease both;
}
.hero-scroll-hint span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}


/* ===== TICKER ===== */
.ticker {
    background: var(--orange);
    overflow: hidden;
    padding: 13px 0;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    gap: 32px;
    animation: ticker 30s linear infinite;
}
.ticker-track span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
}
.ticker-track .sep { opacity: 0.5; }


/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark-2);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}
.stat { text-align: center; padding: 0 24px; }
.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat-count {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 64px);
    letter-spacing: 0.02em;
    color: var(--orange);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--orange);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 8px;
    letter-spacing: 0.02em;
}
.stat-div {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}


/* ===== STEPS ===== */
.steps-section {
    background: var(--dark-1);
    padding: 100px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
/* Connecting line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(24px + 80px);
    right: calc(24px + 80px);
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    z-index: 0;
}
.steps-grid.line-animate::before { transform: scaleX(1); }

.step {
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.step-badge {
    width: 48px; height: 48px;
    background: var(--dark-1);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--orange);
    margin-bottom: 24px;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.reveal-item.visible .step-badge {
    background: var(--orange);
    color: var(--black);
    box-shadow: var(--shadow-glow);
}
.step-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 10px;
}
.step-body p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
}


/* ===== PHOTO BREAK ===== */
.photo-break {
    position: relative;
    height: 340px;
    overflow: hidden;
}
.photo-break-img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}
.photo-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.photo-break-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 36px);
    letter-spacing: 0.04em;
    color: var(--white);
    text-align: center;
    max-width: 680px;
    line-height: 1.2;
    font-style: normal;
}
.photo-break-quote::before { content: '"'; color: var(--orange); }
.photo-break-quote::after  { content: '"'; color: var(--orange); }


/* ===== SITUATIONS ===== */
.situations {
    background: var(--dark-2);
    padding: 100px 0;
}
.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sit-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.sit-card:hover {
    border-color: rgba(244,124,60,0.35);
    box-shadow: 0 8px 32px rgba(244,124,60,0.08);
    transform: translateY(-4px);
}
.sit-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 16px;
}
.sit-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.sit-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
}


/* ===== AVANTAGES ===== */
.avantages {
    background: var(--dark-1);
    padding: 100px 0;
}
.avantages-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.avantages-left { }
.avantages-left h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
}
.av-sub {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.avantages-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.av-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.av-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.av-check {
    width: 32px; height: 32px;
    background: var(--orange-dim);
    border: 1.5px solid rgba(244,124,60,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
    transition: background var(--transition), box-shadow var(--transition);
}
.reveal-item.visible .av-check {
    background: var(--orange);
    color: var(--black);
    box-shadow: 0 0 16px rgba(244,124,60,0.35);
}
.av-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.av-item p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}


/* ===== COMPARISON TABLE ===== */
.comparison {
    background: var(--dark-2);
    padding: 100px 0;
}
.table-wrap { overflow-x: auto; }

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 500px;
}
.comp-table th, .comp-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comp-table thead th {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
    background: var(--dark-3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table tbody td:first-child { color: var(--gray-300); font-weight: 500; }

.col-us {
    background: rgba(244,124,60,0.07) !important;
    border-left: 2px solid rgba(244,124,60,0.3);
    color: var(--white) !important;
}
.comp-table thead .col-us {
    color: var(--orange) !important;
    background: rgba(244,124,60,0.12) !important;
}
.col-trad { color: var(--gray-400) !important; }

.badge-yes {
    display: inline-block;
    background: var(--orange-dim);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(244,124,60,0.3);
}


/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--dark-1);
    padding: 100px 0;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.testi-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover {
    border-color: rgba(244,124,60,0.25);
    transform: translateY(-3px);
}
.testi-stars {
    font-size: 16px;
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-quote {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.testi-avatar {
    width: 40px; height: 40px;
    background: var(--orange-dim);
    border: 1.5px solid rgba(244,124,60,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--orange);
    flex-shrink: 0;
}
.testi-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testi-name strong { font-size: 14px; color: var(--white); }
.testi-name span   { font-size: 12px; color: var(--gray-500); }


/* ===== FAQ ===== */
.faq-section {
    background: var(--dark-2);
    padding: 100px 0;
}
.faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.75;
    padding-bottom: 22px;
}


/* ===== CTA FINAL ===== */
.cta-final {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-photo-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.82);
}

.cta-final .container { position: relative; z-index: 1; }

.cta-content { max-width: 600px; }

.cta-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(244,124,60,0.4);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom: 28px;
    animation: pulse 2.5s ease-in-out infinite;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 76px);
    letter-spacing: 0.02em;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 72px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo-name {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--white);
}
.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 300px;
}

.footer-nav h4, .footer-contact h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--orange); }

.footer-contact {
    display: flex;
    flex-direction: column;
}
.footer-contact p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer-contact a {
    font-size: 14px;
    color: var(--gray-400);
    display: block;
    margin-bottom: 8px;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}


/* ===== FAB ===== */
.fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(244,124,60,0.45);
    z-index: 90;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    animation: fabIn 0.6s 1.2s ease both;
}
.fab:hover {
    background: var(--orange-h);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(244,124,60,0.55);
}


/* ===== SCROLL REVEAL ===== */
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}
@keyframes fabIn {
    from { opacity: 0; transform: scale(0.7) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(244,124,60,0); }
    50%       { opacity: 0.85; box-shadow: 0 0 0 6px rgba(244,124,60,0.15); }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner       { grid-template-columns: 1fr; gap: 48px; padding-top: 110px; }
    .hero-content     { max-width: 100%; }
    .hero-form-card   { max-width: 540px; }
    .avantages-inner  { grid-template-columns: 1fr; gap: 48px; }
    .situations-grid  { grid-template-columns: repeat(2, 1fr); }
    .steps-grid       { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-grid::before { display: none; }
    .footer-top       { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .nav-cta    { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: rgba(8,8,8,0.98);
        backdrop-filter: blur(14px);
        padding: 20px 24px 28px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav-links.open a {
        font-size: 16px;
        color: var(--white);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .stat-div { display: none; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .situations-grid { grid-template-columns: 1fr; }
    .testi-grid      { grid-template-columns: 1fr; }
    .footer-top      { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand    { grid-column: auto; }
    .cta-actions     { flex-direction: column; align-items: flex-start; }
    .form-row        { grid-template-columns: 1fr; }
    .hero-form-card  { animation: fadeSlideUp 0.9s 0.2s ease both; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 48px; }
    .photo-break { height: 240px; }
    .photo-break-quote { font-size: 18px; }
    .fab span   { display: none; }
    .fab        { padding: 14px; border-radius: 50%; }
}
