/* ============================================================
   ND Nettoyage — Site styles
   ============================================================ */

@import url('./tokens.css');

/* ── Resets ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--fg2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── Layout primitives ── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
}
.section-tight {
  padding-block: clamp(48px, 6vw, 80px);
}

/* Section variants */
.section--off { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--fg-inverse); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--fg-inverse); }
.section--navy p { color: rgba(255,255,255,0.78); }
.section--accent-tint { background: var(--accent-light); }

/* ── Type extras ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg1);
  margin: 0;
}
.section--navy .display { color: var(--white); }

.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 0;
}
.section--navy .h-section { color: var(--white); }

.lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--fg2);
  max-width: 60ch;
}
.section--navy .lede { color: rgba(255,255,255,0.8); }

.section-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--fg3);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--accent);
  color: var(--navy-dark);
}
.btn--accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--lg { padding: 16px 28px; font-size: 16px; }

.btn .arrow {
  transition: transform var(--duration-base) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ── Pill / tag ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
}
.pill--accent { background: var(--accent-light); color: var(--accent-dark); }
.pill--dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.18); }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.header.is-scrolled {
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg1);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav a { white-space: nowrap; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.04em;
  border-radius: var(--radius-sm);
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}
.nav a:hover { color: var(--navy); }
.nav a.is-active { color: var(--navy); font-weight: 600; }
.nav a.is-active::after {
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  background: var(--accent);
  border-radius: 2px;
  margin: 4px auto 0;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .btn { padding: 10px 18px; font-size: 14px; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}

@media (max-width: 1080px) {
  .header-cta .btn--ghost { display: none; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn:not(.btn--accent) { display: none; }
  .menu-btn { display: inline-flex; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 24px;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav.is-open a.is-active::after { display: none; }
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding-block: clamp(56px, 7vw, 88px) 32px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 36ch;
}
.footer-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer-list a:hover { color: var(--accent); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer-contact a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

/* Service card with index */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card .num {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  color: var(--navy-light);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg1);
  margin: 0;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--fg2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.service-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card li {
  font-size: 14px;
  color: var(--fg2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-card li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.service-card .more {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more .arrow { transition: transform var(--duration-base) var(--ease-out); }
.service-card:hover .more .arrow { transform: translateX(4px); }

/* ── Forms ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg1);
  letter-spacing: 0.01em;
}
.field label .req { color: var(--accent-dark); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg1);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(54,71,103,0.12);
}
.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: var(--error);
  background: var(--error-light);
}
.field .err {
  font-size: 12px;
  color: var(--error);
  font-weight: 500;
}
.field .hint {
  font-size: 12px;
  color: var(--fg3);
}

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.radio-tile {
  flex: 1 1 160px;
  position: relative;
  cursor: pointer;
}
.radio-tile input { position: absolute; opacity: 0; }
.radio-tile .tile {
  display: block;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  transition: all var(--duration-fast) var(--ease-out);
}
.radio-tile:hover .tile { border-color: var(--border-strong); }
.radio-tile input:checked + .tile {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.radio-tile input:focus-visible + .tile {
  box-shadow: 0 0 0 3px rgba(54,71,103,0.18);
}

.checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg2);
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--navy); }

/* ── CTA strip ── */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(8px);
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.cta-strip p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin: 0;
  max-width: 48ch;
}
.cta-strip .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero placeholder image (used until real photos) ── */
.placeholder-img {
  position: relative;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(54,71,103,0.7) 0%, rgba(30,46,68,0.85) 100%),
    repeating-linear-gradient(45deg, #2a3a56 0 12px, #314461 12px 24px);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(233,161,73,0.22), transparent 55%);
}
.placeholder-img .label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
}
.placeholder-img .label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Stat block ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 720px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  background: var(--white);
  padding: 28px 24px;
}
.stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 44px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .v .unit { color: var(--accent); }
.stat .l {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg2);
  font-weight: 500;
}

/* ── Watermark ND mark for editorial accent ── */
.watermark-nd {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 22vw, 320px);
  color: var(--navy-light);
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
  z-index: 0;
}

/* ── Dotted divider ── */
.dot-divider {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg3);
}
.dot-divider::before, .dot-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Utility ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 28px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.mt-6 { margin-top: 32px; }
.mt-7 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.mb-5 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 32px; }
.mb-7 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* Section header (eyebrow + title + lede) */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 880px) {
  .section-header { grid-template-columns: 1fr; align-items: start; }
}
.section-header .left { display: flex; flex-direction: column; gap: 16px; }
.section-header .right { padding-bottom: 6px; }

/* Inline accent rule */
.rule {
  display: inline-block;
  height: 2px;
  width: 40px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 12px;
}

/* Page-top crumb */
.page-top {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0 28px;
}
.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg3);
  margin-bottom: 12px;
}
.crumb a { color: var(--fg2); }
.crumb a:hover { color: var(--navy); }
.crumb .sep { color: var(--fg3); }
.page-top h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg1);
  margin: 0;
  max-width: 18ch;
}
.page-top .lede { margin-top: 16px; }

/* Logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.logo-strip .item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg3);
  letter-spacing: 0.02em;
  opacity: 0.85;
}

/* Toast for form submit */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
  z-index: 1000;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .check {
  width: 22px; height: 22px;
  background: var(--success);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Big arrow icon */
.icon-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* ── Page-specific helpers ── */

/* Audience switcher */
.audience-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .audience-switch { grid-template-columns: 1fr; } }
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.audience-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.audience-card--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.audience-card--dark:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.audience-card .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.audience-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  margin: 0;
  color: inherit;
}
.audience-card--dark h3 { color: var(--white); }
.audience-card p { font-size: 15px; line-height: 1.6; margin: 0; color: inherit; opacity: 0.78; }
.audience-card .arrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}
.audience-card .arrow-pill svg { transition: transform var(--duration-base) var(--ease-out); }
.audience-card:hover .arrow-pill svg { transform: translateX(4px); }
.audience-card .ornament {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.06em;
  opacity: 0.08;
  pointer-events: none;
}

/* Process list */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 1100px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }
.process-step {
  padding-top: 24px;
  border-top: 2px solid var(--border);
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  height: 2px;
  width: 32px;
  background: var(--navy);
}
.process-step .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg1);
  margin: 8px 0 8px;
  line-height: 1.25;
}
.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg2);
  margin: 0;
}

/* Zone (cities) */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.city {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--duration-fast) var(--ease-out);
}
.city:hover {
  border-color: var(--navy);
  background: var(--navy-light);
}
.city .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.city.is-base { background: var(--navy); color: var(--white); border-color: var(--navy); }
.city.is-base .dot { background: var(--accent); }

/* Why choose */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 720px) { .why-list { grid-template-columns: 1fr; } }
.why {
  background: var(--white);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.why h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg1);
  margin: 0;
  letter-spacing: -0.01em;
}
.why p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg2);
  margin: 0;
}

/* Value strip */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 880px) { .value-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.value h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--fg1);
}
.value p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg2);
  margin: 0;
}
