/* ═══════════════════════════════════════════════════════
   MecaZone — Main Stylesheet
   ═══════════════════════════════════════════════════════
   
   TABLE OF CONTENTS
   -----------------
   1. COLOR VARIABLES   — Change brand colors here
   2. TYPOGRAPHY         — Fonts and text sizes
   3. RESET & BASE       — Browser normalization
   4. LAYOUT             — Container widths, sections
   5. ANIMATIONS         — Scroll reveal, keyframes
   6. NAVIGATION         — Top bar, mobile menu
   7. HERO               — Main landing section
   8. STATS BAR          — Numbers strip
   9. SECTION HEADERS    — Titles for each section
   10. STEP CARDS        — "How it works" cards
   11. SCREENSHOTS       — App screenshot display
   12. AUDIENCE CARDS    — Particuliers / Pros split
   13. BANNER            — Self-garage CTA
   14. FAQ               — Accordion + tabs
   15. CONTACT           — Form and info
   16. FINAL CTA         — Download strip
   17. FOOTER            — Bottom nav and legal
   18. RESPONSIVE        — Tablet and mobile

   ═══════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════
   1. COLOR VARIABLES
   Change these to update the entire site's palette.
   ═══════════════════════════════════════════════════════ */
:root {
  /* Brand red — close to #CC0000, slightly warmer for elegance */
  --red:            #CC1A1A;
  --red-hover:      #B31515;
  --red-light:      #E84242;
  --red-bg:         rgba(204, 26, 26, 0.055);
  --red-bg-strong:  rgba(204, 26, 26, 0.10);
  --red-border:     rgba(204, 26, 26, 0.16);

  /* Neutral palette — warm grays */
  --white:          #FFFFFF;
  --gray-50:        #FAFAF8;     /* Page background */
  --gray-100:       #F4F3F0;     /* Alternate section bg */
  --gray-150:       #ECEAE5;
  --gray-200:       #E0DDD7;     /* Borders */
  --gray-300:       #CCC9C2;
  --gray-400:       #A09D96;
  --gray-500:       #757269;     /* Body text */
  --gray-600:       #5A5850;
  --gray-700:       #403F39;
  --gray-800:       #2A2925;
  --gray-900:       #1A1917;     /* Headings */
}


/* ═══════════════════════════════════════════════════════
   2. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
:root {
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;
}


/* ═══════════════════════════════════════════════════════
   3. RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--gray-500);
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--red); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }


/* ═══════════════════════════════════════════════════════
   4. LAYOUT
   ═══════════════════════════════════════════════════════ */
:root {
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-pill:  100px;
}

.wrap    { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.wrap-sm { max-width: 840px;  margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
section  { padding: clamp(5rem, 10vw, 8rem) 0; }

/* Alternating section backgrounds */
.bg-white { background: var(--white); }
.bg-warm  { background: var(--gray-50); }
.bg-tint  { background: var(--gray-100); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body); font-weight: 600; font-size: .88rem;
  padding: .72rem 1.5rem; border-radius: var(--radius-sm);
  transition: all .2s; border: 0; cursor: pointer;
}
.btn svg {
  width: 15px; height: 15px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.btn-red {
  background: var(--red); color: var(--white);
}
.btn-red:hover {
  background: var(--red-hover); transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--gray-300); color: var(--gray-800);
  background: rgba(0,0,0,0.012);
}

/* Generic card */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 30px -10px rgba(204,26,26,0.07);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════
   5. ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.r {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.r.v { opacity: 1; transform: none; }
.r.d1 { transition-delay: .08s; }
.r.d2 { transition-delay: .16s; }
.r.d3 { transition-delay: .24s; }
.r.d4 { transition-delay: .32s; }

@keyframes pulse-ring {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}


/* ═══════════════════════════════════════════════════════
   6. NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .85rem 0;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: padding .3s var(--ease), box-shadow .3s;
}
.nav.scrolled {
  padding: .55rem 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-logo-mark {
  width: 30px; height: 30px; border-radius: 7px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: var(--white);
}
.nav-logo-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.1rem; color: var(--gray-900); letter-spacing: -.02em;
}

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-links a {
  padding: .4rem .85rem; border-radius: var(--radius-sm);
  font-size: .86rem; font-weight: 450; color: var(--gray-500);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--gray-800); background: rgba(0,0,0,0.03); }
.nav-links a.active { color: var(--gray-900); font-weight: 550; }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  font-weight: 600 !important; padding: .48rem 1.15rem !important;
  border-radius: var(--radius-sm) !important;
  transition: background .2s, transform .12s !important;
}
.nav-cta:hover { background: var(--red-hover) !important; transform: scale(1.03); }

/* Hamburger (mobile) */
.ham {
  display: none; background: 0; border: 0; padding: .5rem;
  flex-direction: column; gap: 5px;
}
.ham span {
  display: block; width: 22px; height: 2px; background: var(--gray-700);
  border-radius: 2px; transition: transform .3s, opacity .2s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(250,250,248,0.97); backdrop-filter: blur(16px);
  flex-direction: column; justify-content: center; align-items: center; gap: .5rem;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 600;
  color: var(--gray-600); padding: .7rem 2rem; border-radius: var(--radius-md);
  transition: color .2s, background .2s;
}
.mob-menu a:hover { color: var(--gray-900); background: rgba(0,0,0,0.03); }


/* ═══════════════════════════════════════════════════════
   7. HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--white);
}
/* Subtle radial glow */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 70% 10%, rgba(204,26,26,0.045) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(204,26,26,0.02) 0%, transparent 50%);
  pointer-events: none;
}
/* Grid pattern overlay */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.016) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 55% 45% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  position: relative; z-index: 1;
}
.hero-content { max-width: 520px; }

/* Pill badge */
.hero-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--red-bg); border: 1px solid var(--red-border);
  padding: .3rem .9rem .3rem .65rem; border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 550; color: var(--red); margin-bottom: 1.4rem;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red); position: relative;
}
.hero-pill-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--red); opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

/* H1 — main headline */
h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.06; letter-spacing: -.04em;
  color: var(--gray-900); margin-bottom: 1.2rem;
}
h1 em { font-style: normal; color: var(--red); }

.hero-desc {
  font-size: 1.05rem; color: var(--gray-500);
  margin-bottom: 2rem; max-width: 430px; line-height: 1.75;
}

/* App store badges */
.badges { display: flex; gap: .7rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.badges a { transition: transform .2s; }
.badges a:hover { transform: scale(1.05); }
.badges img { height: 44px; border-radius: 7px; }

/* Trust icons row */
.trust-row { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--gray-500); font-weight: 450;
}
.trust-item svg {
  width: 15px; height: 15px; stroke: var(--red); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   8. STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.2rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; }
.stat-val {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--gray-900); line-height: 1.1;
}
.stat-val em { font-style: normal; color: var(--red); }
.stat-lbl { font-size: .8rem; color: var(--gray-500); margin-top: .15rem; }


/* ═══════════════════════════════════════════════════════
   9. SECTION HEADERS
   To change section title size, edit the h2 font-size below.
   ═══════════════════════════════════════════════════════ */
.sec-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

/* Small red tag above title */
.sec-tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 650;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--red); margin-bottom: .5rem;
}

/* Section title — the LARGE text */
h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--gray-900); line-height: 1.1; letter-spacing: -.035em;
}

/* Subtitle under section title */
.sec-desc {
  font-size: 1.02rem; color: var(--gray-500);
  max-width: 540px; margin: .7rem auto 0; line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════
   10. STEP CARDS ("Comment ça marche", feature cards)
   ═══════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.step { position: relative; }
.step-num {
  font-family: var(--font-head); font-weight: 900; font-size: 3rem;
  color: rgba(204, 26, 26, 0.05);
  position: absolute; top: -4px; right: 14px; line-height: 1;
}
.step-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--red-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.step-icon svg {
  width: 19px; height: 19px; stroke: var(--red); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.step h3 {
  font-family: var(--font-head); font-weight: 650;
  font-size: 1.02rem; color: var(--gray-800); margin-bottom: .35rem;
}
.step p { font-size: .88rem; color: var(--gray-500); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════
   11. SCREENSHOTS
   All app screenshots use this style.
   Images are forced to a fixed size for consistency.
   ═══════════════════════════════════════════════════════ */
.screens {
  display: flex; gap: clamp(.8rem, 2vw, 1.5rem);
  justify-content: center; flex-wrap: wrap; margin-bottom: 3rem;
}
.screen { text-align: center; }

/* ── Screenshot image — UNIFORM SIZE, NO FRAME ── */
.screen img {
  width: 175px;
  height: 380px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  box-shadow: 0 10px 35px -8px rgba(0, 0, 0, 0.10);
}

.screen span {
  display: block; margin-top: .6rem;
  font-size: .78rem; color: var(--gray-500); font-weight: 500;
}


/* ═══════════════════════════════════════════════════════
   12. AUDIENCE CARDS (Particuliers / Professionnels)
   ═══════════════════════════════════════════════════════ */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }

.duo-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: clamp(1.8rem, 3.5vw, 2.5rem);
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.duo-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 30px -10px rgba(204,26,26,0.06);
}
.duo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 80%);
}

.duo-tag {
  font-family: var(--font-head); font-weight: 650;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: .7rem; display: block;
}
.duo-card h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--gray-900); line-height: 1.2; margin-bottom: .7rem; letter-spacing: -.01em;
}
.duo-card > p {
  font-size: .9rem; color: var(--gray-500); margin-bottom: 1.2rem; line-height: 1.7;
}

/* Checkmark list */
.check-list { list-style: none; margin-bottom: 1.6rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .55rem;
  padding: .35rem 0; font-size: .86rem; color: var(--gray-600);
}
.check-list li::before {
  content: ''; flex-shrink: 0; width: 17px; height: 17px; margin-top: 3px;
  border-radius: 50%; background: var(--red-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23CC1A1A' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}


/* ═══════════════════════════════════════════════════════
   13. BANNER (Self-garage CTA)
   ═══════════════════════════════════════════════════════ */
.banner {
  background: linear-gradient(135deg, var(--white) 0%, rgba(204,26,26,0.035) 100%);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-xl);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem); align-items: center;
  padding: clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden;
}
.banner::after {
  content: ''; position: absolute; top: -30%; right: -15%; width: 45%; height: 160%;
  background: radial-gradient(ellipse, rgba(204,26,26,0.035), transparent 70%);
  pointer-events: none;
}
.banner h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  color: var(--gray-900); line-height: 1.2; margin-bottom: .7rem;
}
.banner > div:first-child p {
  font-size: .9rem; color: var(--gray-500); margin-bottom: 1.2rem; line-height: 1.7;
}

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.mini-card {
  background: rgba(204,26,26,0.025); border: 1px solid rgba(204,26,26,0.07);
  border-radius: var(--radius-md); padding: 1rem;
}
.mini-card h4 { font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: .15rem; }
.mini-card p  { font-size: .76rem; color: var(--gray-500); line-height: 1.5; }


/* ═══════════════════════════════════════════════════════
   14. FAQ
   ═══════════════════════════════════════════════════════ */
.faq-tabs { display: flex; gap: .4rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.faq-tab {
  padding: .42rem 1.2rem; border-radius: var(--radius-pill); font-size: .84rem;
  font-weight: 500; border: 1px solid var(--gray-200); color: var(--gray-500);
  background: var(--white); transition: all .2s;
}
.faq-tab.on { background: var(--red); border-color: var(--red); color: var(--white); }
.faq-tab:hover:not(.on) { border-color: var(--gray-300); color: var(--gray-700); }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; background: 0; border: 0; text-align: left; gap: 1rem;
  font-size: .9rem; font-weight: 500; color: var(--gray-700); transition: color .2s;
}
.faq-q:hover { color: var(--gray-900); }
.faq-q svg {
  width: 18px; height: 18px; flex-shrink: 0; stroke: var(--gray-400);
  fill: none; stroke-width: 2; stroke-linecap: round;
  transition: transform .3s var(--ease), stroke .3s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); stroke: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 0 1.1rem; font-size: .86rem; color: var(--gray-500); line-height: 1.7; }


/* ═══════════════════════════════════════════════════════
   15. CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }

.contact-info h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.5rem; color: var(--gray-900); margin-bottom: .7rem;
}
.contact-info > p { color: var(--gray-500); margin-bottom: 1.8rem; line-height: 1.7; }

.c-detail { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.c-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--red-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon svg {
  width: 17px; height: 17px; stroke: var(--red); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.c-text { font-size: .86rem; color: var(--gray-500); }
.c-text strong { display: block; color: var(--gray-800); font-weight: 500; margin-bottom: .05rem; }

/* Form card */
.form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 4px 20px -6px rgba(0,0,0,0.04);
}
.fg { margin-bottom: .9rem; }
.fg label { display: block; font-size: .8rem; font-weight: 500; color: var(--gray-600); margin-bottom: .3rem; }
.fg input, .fg textarea {
  width: 100%; padding: .65rem .85rem;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); color: var(--gray-900);
  font-family: var(--font-body); font-size: .88rem;
  outline: 0; transition: border-color .2s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--red); }
.fg textarea { resize: vertical; min-height: 105px; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray-400); }

/* Form status messages */
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--red-bg);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.form-success-icon svg {
  width: 26px; height: 26px; stroke: var(--red); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.form-success h4 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.2rem; color: var(--gray-900); margin-bottom: .3rem;
}
.form-success p { font-size: .88rem; color: var(--gray-500); }
.form-error { display:none; font-size:.82rem; color:var(--red); margin-top:.5rem; }
.form-error.show { display:block; }


/* ═══════════════════════════════════════════════════════
   16. FINAL CTA
   ═══════════════════════════════════════════════════════ */
.cta-block {
  text-align: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, rgba(204,26,26,0.025) 100%);
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}
.cta-block h2 { margin-bottom: .7rem; }
.cta-block p { color: var(--gray-500); max-width: 450px; margin: 0 auto 1.8rem; font-size: .98rem; }
.cta-badges { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.cta-badges img { height: 46px; border-radius: 8px; }


/* ═══════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  padding: 3rem 0 1.3rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.ft-brand p { font-size: .83rem; color: var(--gray-500); margin-top: .6rem; max-width: 250px; line-height: 1.65; }
.ft-col h4 {
  font-family: var(--font-head); font-weight: 600;
  font-size: .76rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-600); margin-bottom: .7rem;
}
.ft-col a { display: block; font-size: .83rem; color: var(--gray-500); padding: .18rem 0; transition: color .2s; }
.ft-col a:hover { color: var(--gray-900); }

.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.3rem; border-top: 1px solid var(--gray-200);
  font-size: .76rem; color: var(--gray-400); flex-wrap: wrap; gap: .5rem;
}
.ft-legal { display: flex; gap: 1.2rem; }
.ft-legal a { color: var(--gray-500); }
.ft-legal a:hover { color: var(--gray-800); }


/* ═══════════════════════════════════════════════════════
   18. RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid     { grid-template-columns: 1fr; text-align: center; }
  .hero-content  { max-width: 100%; margin: 0 auto; }
  .hero-desc     { margin: 0 auto 2rem; }
  .badges        { justify-content: center; }
  .trust-row     { justify-content: center; }
  .screens.hero-screens { justify-content: center; margin-top: 2.5rem; }
  .steps         { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .duo           { grid-template-columns: 1fr; }
  .banner        { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .ft-grid       { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .nav-links     { display: none; }
  .ham           { display: flex; }
}

@media (max-width: 560px) {
  .ft-grid       { grid-template-columns: 1fr; }
  .mini-grid     { grid-template-columns: 1fr; }
  .screen img    { width: 140px !important; height: 304px !important; }
}
