/* ============================================================
   Hetz Media — Design System
   Full-service digital marketing agency
   Style: bold slab-serif headings, blue accent, black + light-gray
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Blue accent palette */
  --blue: #1f63ff;
  --blue-deep: #0c46d4;
  --blue-bright: #5b8cff;
  --blue-soft: #eaf0ff;

  --ink: #14161d;          /* near-black text / dark sections */
  --black: #070a14;        /* darkest section base */
  --text: #2b2f3a;
  --muted: #6b7280;
  --line: #e6e9f1;
  --gray: #eef1f6;         /* light-gray section bg */
  --gray-2: #f6f7fb;
  --white: #ffffff;

  /* Dark-section glows */
  --glow-bottom: radial-gradient(120% 85% at 50% 122%, rgba(31,99,255,.9), rgba(31,99,255,0) 60%), #070a14;
  --glow-left:   radial-gradient(85% 80% at 6% 112%, rgba(31,99,255,.85), transparent 60%), #070a14;

  --font-head: "Roboto Slab", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --r-pill: 999px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow-sm: 0 6px 22px rgba(20, 28, 56, .07);
  --shadow-md: 0 18px 50px rgba(20, 28, 56, .12);
  --shadow-lg: 0 34px 80px rgba(20, 28, 56, .18);
  --shadow-blue: 0 16px 40px rgba(31, 99, 255, .35);

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(60px, 8vw, 110px) 0; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.h-display { font-size: clamp(30px, 5vw, 54px); }
.lead { color: var(--muted); font-size: 18px; }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 18px; }
.u-underline { position: relative; white-space: nowrap; }
.u-underline::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6%; height: 5px; background: var(--blue); border-radius: 4px; }
.accent { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  text-transform: uppercase; letter-spacing: .03em;
  padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-accent { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-accent:hover { background: var(--blue-deep); transform: translateY(-3px); box-shadow: 0 22px 50px rgba(31,99,255,.45); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2e3b; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn-lg { padding: 18px 38px; font-size: 15.5px; }

.link-more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--blue); text-transform: uppercase; font-size: 13.5px; letter-spacing: .05em; transition: gap .25s var(--ease); }
.link-more:hover { gap: 12px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--blue); color: #fff; font-size: 13.5px; font-weight: 500; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 28px; height: 40px; }
.topbar .tb-loc { display: inline-flex; align-items: center; gap: 8px; opacity: .95; }
.topbar .tb-links { display: flex; align-items: center; gap: 28px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: opacity .2s; }
.topbar a:hover { opacity: .8; }
.topbar svg { width: 16px; height: 16px; }
@media (max-width: 680px) { .topbar .tb-loc { display: none; } .topbar .container { justify-content: center; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: linear-gradient(180deg, #fbfcfe, #eef1f6); border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); backdrop-filter: saturate(160%) blur(12px); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark { width: 46px; height: 35px; flex: none; }
.brand img.mark { width: 44px; height: 44px; object-fit: contain; border-radius: 9px; }
.site-footer .brand img.mark { background: #fff; padding: 5px; border-radius: 11px; box-shadow: 0 4px 16px rgba(0,0,0,.28); }
.badge-card img.bc-mark { width: 42px; height: 42px; object-fit: contain; border-radius: 7px; flex: none; }
.brand .word { font-family: var(--font-head); font-weight: 800; font-size: 23px; letter-spacing: -.01em; color: var(--ink); line-height: 1; }
.brand .word b { font-weight: 800; }
.brand .word span { font-weight: 400; color: var(--ink); opacity: .75; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); padding: 10px 14px; border-radius: 8px; transition: color .2s, background .2s; display: inline-flex; align-items: center; gap: 6px; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a .caret { width: 9px; height: 9px; opacity: .7; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; background: #fff; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Decorative bits ---------- */
.deco-dots { background-image: radial-gradient(var(--blue) 2.2px, transparent 2.3px); background-size: 16px 16px; }
.deco-dots-ink { background-image: radial-gradient(rgba(20,22,29,.18) 2.2px, transparent 2.3px); background-size: 16px 16px; }
.deco-arch { background: var(--blue); }

/* ---------- Hero ---------- */
.hero { background: #fff; padding: clamp(48px, 7vw, 84px) 0 clamp(60px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.hero h1 { font-size: clamp(40px, 6.4vw, 76px); line-height: 1.02; margin-bottom: 8px; }
.hero .sub-h { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 3.2vw, 34px); color: var(--ink); margin-bottom: 22px; line-height: 1.15; }
.hero p { color: var(--muted); font-size: 17.5px; max-width: 520px; }
.hero p strong { color: var(--ink); }
.hero-actions { margin: 30px 0; }
.hero-fineprint { color: var(--muted); font-size: 15px; max-width: 500px; }

/* Hero collage */
.collage { position: relative; aspect-ratio: 1/1; max-width: 520px; margin-inline: auto; }
.collage .photo {
  position: absolute; inset: 8% 6% 8% 10%;
  background: #d9dde6 center/cover no-repeat;
  filter: grayscale(1) contrast(1.02);
  border-radius: 48% 48% 46% 46% / 54% 54% 46% 46%;
  box-shadow: var(--shadow-md);
}
.collage .deco-arch { position: absolute; left: -2%; bottom: 12%; width: 90px; height: 150px; border-radius: 0 100px 100px 0; opacity: .92; }
.collage .deco-dots { position: absolute; right: 4%; top: 6%; width: 96px; height: 80px; }
.collage .ring { position: absolute; left: 4%; bottom: 4%; width: 120px; height: 150px; border: 2px solid var(--ink); border-radius: 0 0 80px 80px; }
.badge-card {
  position: absolute; right: -4%; bottom: 6%; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.badge-card .bc-mark { width: 40px; flex: none; }
.badge-card .bc-text { font-family: var(--font-head); font-weight: 800; font-size: 13px; line-height: 1.25; color: var(--ink); }
.badge-card .bc-text b { color: var(--blue); display: block; font-size: 17px; }
.float-icon { position: absolute; right: 12%; top: 30%; width: 54px; height: 54px; border-radius: 14px; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-blue); animation: float 5s ease-in-out infinite; }
.float-icon svg { width: 28px; height: 28px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Logos strip ---------- */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-track { display: grid; grid-template-columns: repeat(5, 1fr); }
.logo-cell { height: 120px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: clamp(15px, 1.6vw, 20px); color: #9aa3b5; letter-spacing: -.01em; transition: color .3s; }
.logo-cell:nth-child(even) { background: var(--gray); }
.logo-cell:hover { color: var(--ink); }

/* ---------- Dark band ---------- */
.band-dark { background: var(--glow-bottom); color: #fff; text-align: center; padding: clamp(60px, 8vw, 100px) 0; }
.band-dark.left-glow { background: var(--glow-left); }
.band-dark h2 { color: #fff; font-size: clamp(30px, 5vw, 56px); }
.band-dark .lead { color: rgba(255,255,255,.7); }
.band-dark .container > .lead { max-width: 640px; margin: 14px auto 30px; }

/* ---------- Section heading display ---------- */
.center-title { text-align: center; max-width: 820px; margin: 0 auto clamp(40px, 5vw, 60px); }
.center-title h2 { font-size: clamp(30px, 5vw, 54px); }
.center-title p { color: var(--muted); margin-top: 16px; font-size: 18px; }

/* ---------- Results / case cards ---------- */
.cases { display: grid; gap: 28px; }
.case-card {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  background: var(--gray-2); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm);
  min-height: 230px; transition: transform .35s var(--ease), box-shadow .35s;
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-info { padding: clamp(26px, 3.4vw, 44px); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.case-tab { position: absolute; top: 0; left: 34px; background: var(--blue); color: #fff; font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; padding: 9px 18px; border-radius: 0 0 12px 12px; }
.case-card.rev .case-tab { left: auto; right: 34px; }
.case-logo { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #4a5163; }
.case-logo small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.case-stats { display: flex; gap: 22px; }
.case-stats .cs { border-left: 3px solid var(--blue); padding-left: 14px; }
.case-stats .cs .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3vw, 38px); color: var(--ink); line-height: 1; }
.case-stats .cs .l { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.case-stats .cs .l b { color: var(--ink); display: block; font-weight: 700; }
.case-photo { align-self: stretch; min-height: 230px; background: #cfd4de center/cover no-repeat; filter: grayscale(1); }
.case-card.rev .case-info { order: 2; grid-template-columns: 1fr 1fr; }
.case-card.rev .case-photo { order: 1; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-body .lead { margin-top: 16px; }
.split-body .btn { margin-top: 28px; }
.split-media { position: relative; aspect-ratio: 1.05/1; }
.split-media .photo { position: absolute; inset: 6% 8%; background: #d4d8e1 center/cover no-repeat; filter: grayscale(1); border-radius: 46% 46% 44% 44% / 52% 52% 48% 48%; box-shadow: var(--shadow-md); }
.split-media .deco-arch { position: absolute; left: 0; top: 18%; width: 80px; height: 130px; border-radius: 100px 0 0 100px; }
.split-media .deco-dots { position: absolute; right: 8%; bottom: 6%; width: 96px; height: 70px; }
.split-media .ring { position: absolute; left: 2%; bottom: 2%; width: 110px; height: 140px; border: 2px solid var(--ink); border-radius: 0 0 70px 70px; }
.arrow-up { position: absolute; right: 10%; top: -6%; width: 92px; height: 92px; color: var(--blue); }

/* ---------- Plan box mockup ---------- */
.planbox { position: relative; max-width: 420px; margin-inline: auto; }
.planbox .box {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border-radius: 18px;
  padding: 34px; color: #fff; box-shadow: var(--shadow-lg); transform: rotate(-3deg);
}
.planbox .box h4 { color: #fff; font-size: 26px; line-height: 1.1; }
.planbox .box .lid { height: 14px; background: rgba(255,255,255,.25); border-radius: 8px; margin: -10px -10px 22px; }
.planbox .box .doc { background: rgba(255,255,255,.12); border-radius: 12px; padding: 18px; margin-top: 22px; }
.planbox .box .doc i { display: block; height: 8px; background: rgba(255,255,255,.4); border-radius: 4px; margin-bottom: 10px; }
.planbox .box .doc i:nth-child(2) { width: 80%; } .planbox .box .doc i:nth-child(3) { width: 60%; margin-bottom: 0; }
.planbox .deco-dots { position: absolute; right: -6%; bottom: -6%; width: 100px; height: 80px; }

/* ---------- Feature / service cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 28px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.fc-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; box-shadow: var(--shadow-blue); }
.fc-icon svg { width: 36px; height: 36px; }
.feature-card h3 { font-size: 21px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.reviews-aside .btn { margin-top: 26px; }
.reviews-grid { display: grid; gap: 18px; }
.review-card { background: #fff; border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--blue); letter-spacing: 2px; font-size: 15px; }
.review-card .r-name { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--ink); margin: 8px 0 8px; }
.review-card blockquote { color: var(--text); font-size: 15px; line-height: 1.6; }
.review-card .rm { font-weight: 700; color: var(--blue); text-transform: uppercase; font-size: 12.5px; letter-spacing: .04em; }

/* ---------- Final CTA split ---------- */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.cta-split .split-media .photo { border-radius: 50% 50% 6% 6% / 60% 60% 6% 6%; }
.cta-split h2 { font-size: clamp(30px, 4.6vw, 50px); }
.cta-split h2 small { display: block; font-family: var(--font-head); font-weight: 800; font-size: .62em; color: var(--ink); }
.chat-card { background: var(--gray-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; margin-top: 28px; box-shadow: var(--shadow-sm); }
.chat-card h4 { font-size: 19px; margin-bottom: 6px; }
.chat-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--glow-bottom); color: #fff; padding: clamp(56px, 8vw, 100px) 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5.6vw, 60px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto; font-size: 18px; }
.crumbs { display: flex; gap: 8px; justify-content: center; color: rgba(255,255,255,.55); font-size: 13.5px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .06em; }
.crumbs a:hover { color: #fff; }

/* ---------- Values / team ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; transition: transform .3s var(--ease), box-shadow .3s; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value .vi { width: 64px; height: 64px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; }
.value h3 { font-size: 21px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15.5px; }
.team { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.member .ph { aspect-ratio: 1; border-radius: var(--r-lg); background: #d4d8e1 center/cover no-repeat; filter: grayscale(1); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.member b { font-family: var(--font-head); font-size: 18px; color: var(--ink); }
.member span { color: var(--blue); font-size: 14px; display: block; font-weight: 600; }

/* ---------- Services list / pricing ---------- */
.svc-list { display: grid; gap: 20px; }
.svc-row { display: grid; grid-template-columns: 76px 1fr auto; gap: 26px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 30px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.svc-row:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-row .fc-icon { width: 64px; height: 64px; margin: 0; }
.svc-row .fc-icon svg { width: 30px; height: 30px; }
.svc-row h3 { font-size: 22px; margin-bottom: 5px; }
.svc-row p { color: var(--muted); font-size: 15.5px; }
.svc-row .price b { font-family: var(--font-head); font-size: 20px; color: var(--ink); display: block; }
.svc-row .price span { color: var(--muted); font-size: 13px; }

.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 30px; transition: transform .3s var(--ease), box-shadow .3s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { background: var(--glow-bottom); color: #fff; border: none; box-shadow: var(--shadow-lg); position: relative; }
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan .ptag { font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.plan.featured .ptag { color: var(--blue-bright); }
.plan .price { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--ink); margin-bottom: 4px; }
.plan .price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan.featured .price small { color: rgba(255,255,255,.65); }
.plan p.pdesc { color: var(--muted); font-size: 15px; }
.plan.featured p.pdesc { color: rgba(255,255,255,.75); }
.plan ul { display: grid; gap: 12px; margin: 24px 0 28px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.plan.featured li { color: rgba(255,255,255,.88); }
.plan li svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 3px; }
.plan.featured li svg { color: var(--blue-bright); }
.plan .btn { width: 100%; }
.badge-pop { position: absolute; top: 24px; right: 24px; background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 700; padding: 6px 13px; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .05em; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-q .pm { width: 28px; height: 28px; flex: none; border-radius: 8px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; transition: transform .3s; font-size: 20px; line-height: 1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.ci-item { display: flex; gap: 16px; margin-bottom: 24px; }
.ci-item .vi { width: 52px; height: 52px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.ci-item b { font-family: var(--font-head); color: var(--ink); display: block; }
.ci-item p, .ci-item a { color: var(--muted); font-size: 15px; }
.ci-item a:hover { color: var(--blue); }
form.lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-family: var(--font-body); font-size: 14px; font-weight: 600; display: block; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink); padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--gray-2); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31,99,255,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 18px; background: rgba(16,185,129,.1); color: #047857; border-radius: var(--r-sm); font-weight: 600; margin-top: 16px; }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .word, .footer-brand .word span { color: #fff; }
.footer-brand p { max-width: 320px; font-size: 14.5px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-contact .pill { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--r-pill); padding: 10px 18px; margin-bottom: 12px; font-size: 14px; transition: border-color .2s, color .2s; }
.footer-contact .pill:hover { border-color: var(--blue); color: #fff; }
.footer-contact .pill svg { width: 16px; height: 16px; color: var(--blue-bright); }
.footer-soc { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-soc a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer-soc a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-soc svg { width: 18px; height: 18px; }
.footer-addr { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 14px; line-height: 1.5; }
.footer-addr svg { width: 16px; height: 16px; color: var(--blue-bright); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Office / business info ---------- */
.office-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.map-embed { width: 100%; height: 380px; border: 0; border-radius: var(--r-xl); box-shadow: var(--shadow-md); filter: grayscale(.25) contrast(1.05); }
.biz-list { display: grid; gap: 18px; margin-top: 26px; }
.biz-list .bi { display: flex; gap: 15px; align-items: flex-start; }
.biz-list .bi .vi { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.biz-list .bi b { font-family: var(--font-head); color: var(--ink); display: block; font-size: 15px; }
.biz-list .bi p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 980px) { .office-grid { grid-template-columns: 1fr; } .map-embed { height: 320px; order: 2; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .reviews, .cta-split, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .feature-grid, .values, .plans { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2,1fr); }
  .logos-track { grid-template-columns: repeat(3, 1fr); }
  .logo-cell:nth-child(even) { background: transparent; }
  .logo-cell:nth-child(4), .logo-cell:nth-child(5) { background: var(--gray); }
  .case-card, .case-card.rev .case-info, .case-card.rev .case-photo { grid-template-columns: 1fr; order: 0; }
  .case-card { grid-template-columns: 1fr; }
  .case-photo { min-height: 180px; }
  .reviews-aside { text-align: center; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar .container { justify-content: center; gap: 18px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-links { display: flex; position: absolute; top: 100%; left: 14px; right: 14px; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; padding: 14px; border-radius: var(--r-md); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
  .site-header.nav-open .nav-links a { padding: 12px 16px; }
  .feature-grid, .values, .plans, .team { grid-template-columns: 1fr; }
  .logos-track { grid-template-columns: repeat(2, 1fr); }
  .case-info { grid-template-columns: 1fr; }
  .case-stats { flex-wrap: wrap; }
  .field-row { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; text-align: center; }
  .svc-row .fc-icon { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn, .band-dark .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
