/* ============================================================
   AGENCE LINX — style.css
   Palette : rose #c4007a · violet #7b2d8b · blanc #ffffff
   Accessibilité WCAG AA, responsive, W3C valide
   ============================================================ */

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

:root {
  --rose:          #c4007a;
  --rose-dark:     #96005d;
  --rose-light:    #f9e6f3;
  --violet:        #7b2d8b;
  --violet-dark:   #5a1f68;
  --violet-light:  #f0e6f5;
  --white:         #ffffff;
  --off-white:     #fafafa;
  --grey-50:       #f5f5f5;
  --grey-100:      #ebebeb;
  --grey-200:      #d6d6d6;
  --grey-500:      #737373;
  --grey-700:      #404040;
  --ink:           #1a1a1a;

  --gradient:      linear-gradient(135deg, var(--rose) 0%, var(--violet) 100%);
  --gradient-soft: linear-gradient(135deg, #fce4f4 0%, #ede0f7 100%);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

  --font-body:    'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container:    1200px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--violet);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

/* ── Focus visible ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .12s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--rose-dark);
  box-shadow: 0 4px 16px rgba(196,0,122,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--rose-light);
  border-color: var(--rose-dark);
  color: var(--rose-dark);
}

.btn-large {
  padding: .9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ── Section headings ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: var(--grey-500);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ─────────────────────────────────────────────────────────── */
/* HEADER                                                      */
/* ─────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}

/* Logo image — 3 breakpoints */
.logo-img {
  display: block;
  width: auto;
  /* Desktop : hauteur confortable */
  height: 46px;
  /* The PNG is 1200×308, ratio ~3.9 → 46px high = ~180px wide */
  object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
  .logo-img { height: 38px; }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-img { height: 30px; }
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .85rem;
  background: var(--gradient-soft);
  border: 1px solid #e0c0ee;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--violet);
  white-space: nowrap;
}
.badge-dot {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.35); }
}

/* ─────────────────────────────────────────────────────────── */
/* HERO                                                        */
/* ─────────────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: clamp(280px, 50vw, 680px);
  height: clamp(280px, 50vw, 680px);
  background: radial-gradient(circle, rgba(196,0,122,.06) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: clamp(180px, 32vw, 480px);
  height: clamp(180px, 32vw, 480px);
  background: radial-gradient(circle, rgba(123,45,139,.05) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
}
.eyebrow-dot {
  display: block;
  width: 8px; height: 8px;
  background: var(--gradient);
  border-radius: 50%;
  flex-shrink: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
h1 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--grey-700);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

/* Countdown */
.countdown-block { margin-bottom: 1.8rem; }
.countdown-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: .75rem;
}
.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(.5rem, 2vw, 1.4rem);
  flex-wrap: wrap;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3ch;
}
.cd-num {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.cd-caption {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: .2rem;
}
.cd-colon {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--grey-200);
  align-self: flex-start;
  margin-top: .05em;
}

/* Progress */
.progress-block {
  margin-bottom: 2rem;
  max-width: 480px;
}
.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
}
.progress-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.progress-value {
  font-size: .85rem;
  font-weight: 700;
  color: var(--rose);
}
.progress-track {
  height: 6px;
  background: var(--grey-100);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 99px;
  transition: width 1.8s cubic-bezier(.25,.46,.45,.94);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Stats card */
.hero-card {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  max-width: 272px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
}

.card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.4rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .78rem;
  color: var(--grey-500);
  line-height: 1.3;
}

.card-divider {
  height: 1px;
  background: var(--grey-100);
  margin-bottom: 1.2rem;
}
.card-quote {
  font-size: .82rem;
  color: var(--grey-700);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.card-address {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .75rem;
  color: var(--grey-500);
  line-height: 1.4;
}
.card-address svg {
  flex-shrink: 0;
  margin-top: .1em;
  color: var(--rose);
}

/* ─────────────────────────────────────────────────────────── */
/* SERVICES                                                    */
/* ─────────────────────────────────────────────────────────── */
.services-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-card:hover {
  border-color: #e0c0ee;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
}
.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.service-desc {
  font-size: .875rem;
  color: var(--grey-500);
  line-height: 1.68;
}

/* ─────────────────────────────────────────────────────────── */
/* PROCESS — Pour une communication digitale réussie          */
/* ─────────────────────────────────────────────────────────── */
.process-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.process-card {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.process-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.process-card:hover::after { transform: scaleX(1); }
.process-card:hover {
  border-color: #e0c0ee;
  box-shadow: var(--shadow-md);
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--grey-100);
  position: absolute;
  top: .8rem;
  right: 1.2rem;
  user-select: none;
}
.process-icon {
  width: 48px; height: 48px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  margin-bottom: 1rem;
}
.process-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.process-desc {
  font-size: .875rem;
  color: var(--grey-500);
  line-height: 1.68;
}

/* Quote */
.process-quote {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  padding: 2rem;
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  border: 1px solid #e4d0f0;
}
.process-quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--violet-dark);
  line-height: 1.5;
  margin-bottom: .6rem;
}
.process-quote cite {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--rose);
  text-transform: uppercase;
  font-style: normal;
}

/* ─────────────────────────────────────────────────────────── */
/* TEAM                                                        */
/* ─────────────────────────────────────────────────────────── */
.team-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--off-white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-lg);
  transition: border-color .2s, box-shadow .2s;
}
.team-card:hover {
  border-color: #e0c0ee;
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 72px; height: 72px;
  background: var(--gradient-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--violet);
}
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem;
}
.team-role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .7rem;
}
.team-bio {
  font-size: .85rem;
  color: var(--grey-500);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────── */
/* CONTACT                                                     */
/* ─────────────────────────────────────────────────────────── */
.contact-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .7rem;
  line-height: 1.2;
}
.contact-text > p {
  font-size: .95rem;
  color: var(--grey-700);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--grey-700);
  line-height: 1.45;
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: .15em;
  color: var(--rose);
}
.contact-item a {
  color: var(--violet);
  font-weight: 500;
  transition: color .18s;
}
.contact-item a:hover { color: var(--rose); }
.contact-item small {
  display: block;
  font-size: .75rem;
  color: var(--grey-500);
}
.contact-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-align: center;
  flex-shrink: 0;
}
.contact-note {
  font-size: .78rem;
  color: var(--grey-500);
  max-width: 200px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────── */
/* FOOTER                                                      */
/* ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #a0a0a0;
  padding-block: 1.4rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
}
.footer-copy { font-size: .78rem; line-height: 1.5; }
.footer-link {
  font-size: .78rem;
  color: #a0a0a0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.footer-link:hover { color: var(--white); }

/* ─────────────────────────────────────────────────────────── */
/* MENTIONS LÉGALES — page spécifique                         */
/* ─────────────────────────────────────────────────────────── */
.legal-hero {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-soft);
  border-bottom: 1px solid #e0d0f0;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.legal-hero h1 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-hero-sub {
  font-size: .9rem;
  color: var(--grey-500);
}

.legal-body {
  padding-block: clamp(2rem, 5vw, 4rem);
  background: var(--white);
}
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--rose-light);
  line-height: 1.3;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--violet);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.legal-content p {
  font-size: .925rem;
  color: var(--grey-700);
  line-height: 1.75;
  margin-bottom: .9rem;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: .9rem;
}
.legal-content ul li {
  font-size: .925rem;
  color: var(--grey-700);
  line-height: 1.7;
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .35rem;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
}
.legal-content a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .18s;
}
.legal-content a:hover { color: var(--violet); }
.legal-content strong { font-weight: 600; color: var(--ink); }
.legal-content .update-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: var(--grey-50);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .82rem;
  color: var(--grey-500);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────── */
/* ANIMATIONS                                                  */
/* ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow,
  h1,
  .hero-desc,
  .countdown-block,
  .progress-block,
  .hero-cta,
  .hero-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .7s ease forwards;
  }
  .hero-eyebrow    { animation-delay: .05s; }
  h1               { animation-delay: .15s; }
  .hero-desc       { animation-delay: .25s; }
  .countdown-block { animation-delay: .35s; }
  .progress-block  { animation-delay: .45s; }
  .hero-cta        { animation-delay: .55s; }
  .hero-card       { animation-delay: .20s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ─────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                  */
/* ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
  }
  .card-title   { grid-column: 1 / -1; margin-bottom: 0; }
  .stats-list   { flex-direction: row; flex-wrap: wrap; grid-column: 1 / -1; gap: 1.5rem; margin-bottom: 0; }
  .stat-item    { flex-direction: row; align-items: baseline; gap: .5rem; }
  .stat-num     { font-size: 1.8rem; }
  .card-divider { grid-column: 1 / -1; }
  .card-quote   { grid-column: 1; }
  .card-address { grid-column: 2; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-cta-block { align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  .card-quote, .card-address { grid-column: 1; }
  .stats-list { flex-direction: column; gap: .8rem; }
  .stat-item  { flex-direction: column; }

  h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .cd-num    { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .cd-colon  { font-size: clamp(1.7rem, 8vw, 2.5rem); }

  .hero-cta .btn { width: 100%; }

  .header-badge { display: none; }

  .footer-inner  { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────────────── */
/* HIGH CONTRAST                                               */
/* ─────────────────────────────────────────────────────────── */
@media (forced-colors: active) {
  .btn-primary  { background: ButtonText; color: ButtonFace; forced-color-adjust: none; }
  .btn-secondary { border-color: ButtonText; color: ButtonText; forced-color-adjust: none; }
}
