/* ==========================================================================
   TDV Media, Styles
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --anthracite: #141414;
  --border: #2a2a2a;
  --muted: #8a8a8a;
  --silver-light: #f5f5f5;
  --silver-mid: #9a9a9a;
  --silver-dark: #8a8a8a;
  --light-silver: #d8d8d8;
  --white: #ffffff;

  --silver-gradient: linear-gradient(135deg, #f5f5f5 0%, #9a9a9a 50%, #8a8a8a 100%);
  --gold: #d4af37;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: 'Sora', var(--font);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: var(--header-h); }
.service-card[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.3rem; }

.text-accent {
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-silver);
  margin-bottom: 14px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--light-silver);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  margin-top: 16px;
}

.section-head { max-width: 720px; margin-bottom: 56px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--silver-gradient);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5); filter: brightness(1.06); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--silver-light); color: var(--silver-light); transform: translateY(-2px); }
.btn--dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28); filter: brightness(1.2); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--nav { white-space: nowrap; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark { width: 24px; height: 21px; flex-shrink: 0; }
.logo__text {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.nav { min-width: 0; }
.nav__list { display: flex; gap: 22px; flex-wrap: nowrap; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__link-icon { width: 14px; height: 14px; flex-shrink: 0; object-fit: contain; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--silver-light);
  transition: width 0.2s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 96px) 0 80px;
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(245, 245, 245, 0.07), transparent 60%),
    radial-gradient(600px 400px at 5% 10%, rgba(245, 245, 245, 0.05), transparent 60%),
    var(--black);
}
.hero__inner { max-width: 880px; text-align: center; margin: 0 auto; }
.hero__subtitle {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--muted);
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---------- Stats band (sobre) ---------- */
.stats-band { padding: 0; background: var(--black); }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-band__grid--compact { grid-template-columns: repeat(2, 1fr); }
.stats-band__item {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 20px;
}
.stats-band__number, .stats-band__suffix {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  display: inline;
}
.stats-band__label {
  display: block;
  margin-top: 10px;
  font-size: 0.76rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Niches marquee ---------- */
.niches {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--anthracite);
  padding: 22px 0;
}
.niches__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.niches__track span {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--light-silver);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Services ---------- */
.services { padding: 120px 0; background: var(--black); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--anthracite);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--muted);
}
.service-card__icon {
  width: 52px; height: 52px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver-light);
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card__desc { color: var(--muted); margin-bottom: 22px; font-size: 0.98rem; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-card__tags span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--light-silver);
  font-size: 0.82rem;
  font-weight: 600;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-silver);
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-card__link:hover { color: var(--white); gap: 10px; }

/* ---------- Services showcase (mockup + funnel) ---------- */
.services__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.showcase-panel__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}

.mockup, .funnel-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--anthracite);
  overflow: hidden;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.mockup__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.mockup__title { margin-left: 8px; font-size: 0.82rem; font-weight: 600; color: var(--light-silver); }
.mockup__live { margin-left: auto; font-size: 0.72rem; color: var(--muted); }
.mockup__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.mockup__metric {
  background: var(--anthracite);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mockup__metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.mockup__metric-value { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.mockup__metric-trend { font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.mockup__metric-trend--up { color: var(--silver-light); }
.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 18px;
  height: 74px;
}
.mockup__chart span {
  flex: 1;
  height: var(--h);
  background: var(--silver-gradient);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

.funnel { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 28px 22px; }
.funnel__stage {
  width: var(--w);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--silver-gradient);
  color: var(--black);
}
.funnel__label { font-weight: 700; font-size: 0.85rem; }
.funnel__value { font-weight: 800; font-size: 0.85rem; }

/* ---------- Studio ---------- */
.studio {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.studio__logo { text-align: center; margin-bottom: 56px; }
.studio__logo-img { height: 42px; width: auto; margin: 0 auto; }
.studio__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.studio__content h2, .studio h2 { color: var(--black); margin-bottom: 18px; }
.studio__text { color: #4a4a4a; font-size: 1.02rem; margin-bottom: 26px; }
.studio .badge {
  background: rgba(10, 10, 10, 0.04);
  border-color: #ddd;
  color: #333;
}

.studio__stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 18px;
}
.studio__stat-figure {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3a3a3a 0%, #6a6a6a 50%, #8a8a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.studio__stat-eq { color: #6a6a6a; font-weight: 500; }

.studio__bonus {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: rgba(10, 10, 10, 0.03);
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.studio__visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; min-height: 340px; }
.studio__glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.05), transparent 70%);
  filter: blur(10px);
}
.studio__mic { position: relative; width: 64px; height: 100px; color: #3a3a3a; }
.studio__card {
  position: relative;
  width: 280px;
  padding: 32px 32px;
  border-radius: var(--radius-lg);
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}
.studio__card-location { font-weight: 700; margin-bottom: 18px; color: var(--black); }
.studio__card-list { display: flex; flex-direction: column; gap: 12px; }
.studio__card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: #333;
}
.studio__card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6a6a6a;
}

/* ---------- Process ("Comment ça se passe") ---------- */
.process { padding: 120px 0; background: var(--black); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process__step { background: var(--anthracite); padding: 36px 28px; }
.process__num {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process__step h3 { font-size: 1.08rem; margin-bottom: 10px; }
.process__step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- About ---------- */
.about { padding: 120px 0; background: var(--anthracite); }
.about__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.about__content p { color: var(--muted); margin: 18px 0; font-size: 1.02rem; }
.about__points { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 34px; }
.about__point { display: flex; align-items: flex-start; gap: 16px; }
.about__point-num {
  font-weight: 800;
  color: var(--silver-light);
  font-size: 0.95rem;
  padding-top: 2px;
}
.about__point p { margin: 0; color: var(--white); font-weight: 500; }

.about__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.about__glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 245, 245, 0.14), transparent 70%);
  filter: blur(10px);
}
.about__photo-frame {
  position: relative;
  width: 280px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.about__card {
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: 190px;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: var(--black);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about__card-label { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.about__card-metric { font-size: 2rem; font-weight: 800; background: var(--silver-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about__card-desc { margin-top: 10px; font-size: 0.82rem; color: var(--muted); }

/* ---------- Results / proof ---------- */
.results { padding: 120px 0; background: var(--black); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.proof-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--anthracite);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.proof-card:hover { transform: translateY(-4px); border-color: var(--muted); }
.proof-card__avatar {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--silver-gradient);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.proof-card__name { font-weight: 700; color: var(--white); }
.proof-card__context { font-size: 0.86rem; color: var(--muted); margin-top: 4px; }
.proof-card__result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-silver);
}

/* ---------- Proof card, full profile variant (résultats.html) ---------- */
.proof-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.proof-card__header .proof-card__avatar { margin-bottom: 0; flex-shrink: 0; }
.proof-card__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--light-silver);
  margin-top: 10px;
}
.proof-card__niche {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.proof-card__quote {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--silver-mid);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.proof-card__meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-silver);
}

.proof-grid--2 { grid-template-columns: repeat(2, 1fr); }
.proof-single { max-width: 420px; margin: 0 auto; }

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black);
  margin-bottom: 18px;
}
.video-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 177.78%;
  transform: translate(-50%, -50%);
  border: 0;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 9 / 16) {
  .video-embed { padding-top: 177.78%; }
}

.results__cta { text-align: center; margin-top: 48px; }

/* ---------- Google reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--anthracite);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--muted); }
.review-card__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--silver-mid);
  margin-bottom: 20px;
}
.review-card__author {
  font-weight: 700;
  color: var(--white);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-card__source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-card__source svg { width: 13px; height: 13px; flex-shrink: 0; }

.reviews__disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Generic section / content blocks (sous-pages) ---------- */
.section { padding: 120px 0; }
.section--black { background: var(--black); }
.section--anthracite { background: var(--anthracite); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.info-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--anthracite);
}
.section--anthracite .info-card,
.section--anthracite .callout { background: var(--black); }
.results.section--anthracite .proof-card,
.results.section--anthracite .review-card { background: var(--black); }
.info-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-card p { font-size: 0.92rem; color: var(--muted); }

.callout {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--anthracite);
  text-align: center;
}
.callout h2, .callout h3 { margin-bottom: 16px; }
.callout p { font-size: 1.1rem; color: var(--light-silver); line-height: 1.7; }

.statement { max-width: 720px; margin: 0 auto; text-align: center; }
.statement h2, .statement h3 { margin-bottom: 16px; }
.statement p { font-size: 1.1rem; color: var(--light-silver); line-height: 1.7; }

.cta-band { padding: 100px 0; text-align: center; }
.cta-band__inner { max-width: 620px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .section-lead { margin-left: auto; margin-right: auto; margin-bottom: 32px; }

/* ---------- Contact ---------- */
.contact { padding: 120px 0; background: var(--anthracite); }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact__details { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact__details li { display: flex; flex-direction: column; gap: 2px; }
.contact__label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact__details a { font-weight: 600; color: var(--white); }
.contact__details a:hover { color: var(--silver-light); }

.contact__form {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--light-silver); }
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--anthracite);
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--muted); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--silver-light);
  box-shadow: 0 0 0 4px rgba(245, 245, 245, 0.1);
}
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea { border-color: #dc2626; }
.form-error {
  font-size: 0.8rem;
  color: #f07171;
  min-height: 1em;
}
.form-success {
  margin-top: 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #6fcf97;
}

/* ---------- Footer ---------- */
.footer { padding: 44px 0; background: var(--black); border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.9rem; color: var(--muted); }
.footer__nav a:hover { color: var(--white); }
.footer__copy { font-size: 0.85rem; color: var(--muted); }

/* ---------- Floating CTA (mobile) ---------- */
.fab {
  display: none;
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--silver-gradient);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .services__grid,
  .proof-grid,
  .review-grid { grid-template-columns: 1fr 1fr; }
  .services__showcase,
  .process__grid { grid-template-columns: 1fr 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner,
  .studio__inner,
  .contact__inner { grid-template-columns: 1fr; }
  .about__visual,
  .studio__visual { order: -1; min-height: 260px; margin-bottom: 40px; }
}

@media (max-width: 1400px) {
  .nav { display: none; }
  .burger {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: auto;
    right: max(24px, calc((100vw - 1180px) / 2 + 24px));
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow-md);
    padding: 12px 20px 20px;
  }
  .nav.is-open .nav__list { flex-direction: column; align-items: flex-end; gap: 4px; }
  .nav.is-open .nav__link { display: block; padding: 10px 4px; font-size: 1rem; text-align: right; }
}

@media (max-width: 760px) {
  .hero { padding: calc(var(--header-h) + 56px) 0 60px; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .stats-band__item { padding: 32px 16px; }

  .services, .results, .about, .studio, .process, .contact, .section { padding: 80px 0; }
  .cta-band { padding: 64px 0; }

  .services__grid,
  .proof-grid,
  .proof-grid--2,
  .review-grid,
  .services__showcase,
  .process__grid { grid-template-columns: 1fr; }

  .about__visual { flex-direction: column; }
  .about__photo-frame { width: 220px; height: 280px; }
  .about__card { position: static; width: 220px; margin-top: -32px; align-self: flex-end; }

  .contact__form { padding: 28px 22px; }

  .callout { padding: 32px 24px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }

  .fab { display: block; }
  .btn--nav { display: none; }
  .contact { padding-bottom: 120px; }
}

@media (max-width: 420px) {
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
}
