/* =========================================================================
   VEGA Safety — İzmir merkezli deniz emniyeti & sörvey
   Tek sayfa kurumsal site — stil dosyası
   Tasarım token'ları: marine-navy + high-vis safety orange, light UI
   ========================================================================= */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* renkler */
  --primary: #0A2A43;
  --primary-dark: #061B2C;
  --primary-deep: #03111C;
  --accent: #E85D04;
  --accent-soft: #FFE3D3;
  --ink: #0F1C26;
  --muted: #55677A;
  --surface: #FFFFFF;
  --surface-alt: #EEF3F8;
  --line: #DCE4EB;

  /* türetilmiş */
  --ink-on-dark: #EAF1F7;
  --muted-on-dark: #9DB2C4;

  /* tipografi */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* şekil */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* gölgeler */
  --shadow-sm: 0 1px 2px rgba(6, 27, 44, .06), 0 2px 6px rgba(6, 27, 44, .05);
  --shadow-md: 0 8px 24px rgba(6, 27, 44, .08), 0 2px 6px rgba(6, 27, 44, .05);
  --shadow-lg: 0 24px 60px rgba(6, 27, 44, .16);

  /* ölçü */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  --nav-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------- Utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface-alt); }
.section--dark {
  background: var(--primary-deep);
  color: var(--ink-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section--dark .eyebrow { color: #FF8A45; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.1rem;
}
.section--dark .section-head p { color: var(--muted-on-dark); }

.tnum { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--accent { --btn-bg: var(--accent); --btn-fg: var(--ink); font-weight: 700; }
.btn--accent:hover { box-shadow: 0 10px 28px rgba(232, 93, 4, .34); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--primary); background: var(--surface-alt); }

.btn--ghost-light {
  --btn-bg: rgba(255, 255, 255, .06);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .55); }

.btn--lg { padding: 17px 30px; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--primary);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------- Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: none; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -.01em;
  color: var(--primary);
  line-height: 1;
}
.brand__name span { color: var(--accent); }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__links a:hover { background: var(--surface-alt); color: var(--primary); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
}
.nav__phone svg { width: 17px; height: 17px; color: var(--accent); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after { transform: translate(-50%, 7px); }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle.is-open span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* --------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(120px, 16vw, 220px);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(232, 93, 4, .14), transparent 55%),
    linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--ink-on-dark);
  overflow: hidden;
  isolation: isolate;
}
/* blueprint grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 92%);
  z-index: -1;
}
.hero__inner { position: relative; max-width: 820px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FF8A45;
  margin-bottom: 22px;
}
.hero__beacon {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 93, 4, .6);
  animation: beacon 2.4s var(--ease) infinite;
}
@keyframes beacon {
  0%   { box-shadow: 0 0 0 0 rgba(232, 93, 4, .55); }
  70%  { box-shadow: 0 0 0 14px rgba(232, 93, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: #FF8A45; }
.hero__lead {
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
  color: var(--ink-on-dark);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__annot {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(120px, 16vw, 200px);
  text-align: right;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  line-height: 1.9;
}

/* layered waves */
.hero__waves {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(120px, 18vw, 240px);
  z-index: -1;
}
.hero__waves svg { width: 100%; height: 100%; }

/* hero stat strip */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: calc(clamp(120px, 16vw, 220px) * -1 + clamp(40px, 6vw, 70px));
}
.hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat {
  background: var(--surface);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.4vw, 28px);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-size: .92rem;
  color: var(--muted);
}

/* -------------------------------------------------------------- Trust chips */
.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-block: clamp(28px, 4vw, 40px);
}
.trust__label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 15px; height: 15px; color: var(--accent); }

/* ------------------------------------------------------------------ About */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.about__body p + p { margin-top: 18px; }
.about__body .lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.about__body p:not(.lead) { color: var(--muted); }

.highlights { display: grid; gap: 14px; }
.highlight {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.section--alt .highlight { background: var(--surface); }
.highlight__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
}
.highlight__icon svg { width: 21px; height: 21px; }
.highlight h3 { font-size: 1.05rem; margin-bottom: 4px; }
.highlight p { font-size: .95rem; color: var(--muted); }

/* --------------------------------------------------------------- Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 30px);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #FF8A45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--primary), var(--primary-dark));
  color: #fff;
  margin-bottom: 22px;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); margin-bottom: 12px; }
.service-card__desc { color: var(--muted); margin-bottom: 22px; }

.service-features { display: grid; gap: 11px; margin-bottom: 26px; }
.service-features li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .97rem;
}
.service-features svg {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 1px;
  color: var(--accent);
}
.service-card .link-arrow { margin-top: auto; }

/* ------------------------------------------------------------- Equipment */
.equip__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.equip__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: .96rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.section--dark .equip__tag {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
  box-shadow: none;
}
.equip__tag:hover { transform: translateY(-2px); border-color: var(--accent); }
.equip__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* ------------------------------------------------------------------- Why */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
}
.why-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.section--alt .why-card { background: var(--surface); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.why-card p { color: var(--muted); font-size: .96rem; }

/* --------------------------------------------------------------- Process */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 34px);
  counter-reset: step;
}
.process-step { position: relative; }
.process-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  border: 4px solid var(--surface-alt);
  box-shadow: 0 0 0 1px var(--line);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.section--dark .process-step__num { border-color: var(--primary-deep); box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
/* connector line */
.process-step:not(:last-child) .process-step__num::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  width: calc(clamp(20px, 3vw, 34px) + 100%);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  transform: translateY(-50%);
  z-index: -1;
}
.process-step:nth-child(4n) .process-step__num::after { display: none; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .95rem; }
.section--dark .process-step p { color: var(--muted-on-dark); }

/* ----------------------------------------------------------- Standards */
.standards__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.std-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.std-badge__mark {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .02em;
  text-align: center;
}
.std-badge__mark svg { width: 22px; height: 22px; }
.std-badge strong { display: block; font-size: .98rem; }
.std-badge span { font-size: .84rem; color: var(--muted); }

.standards__note {
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--primary-dark);
  font-size: .96rem;
}

/* ----------------------------------------------------------- Coverage */
.coverage__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.ports { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.port {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-pill);
  font-size: .93rem; font-weight: 500; color: #fff;
}
.port svg { width: 14px; height: 14px; color: #FF8A45; }
.coverage__map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(60% 60% at 30% 40%, rgba(232,93,4,.12), transparent 60%),
    linear-gradient(160deg, #0c334f, var(--primary-deep));
  overflow: hidden;
  position: relative;
}
.coverage__map svg { width: 100%; height: 100%; }

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 4px;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.faq__q:hover { color: var(--primary); }
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--ink); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s var(--ease);
}
.faq__a-inner { padding: 0 4px 24px; color: var(--muted); max-width: 68ch; }

/* --------------------------------------------------------------- CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 90% 10%, rgba(232,93,4,.22), transparent 55%),
    linear-gradient(120deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-lg);
}
.cta-band__text { max-width: 620px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.cta-band p { color: var(--muted-on-dark); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* --------------------------------------------------------------- Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}
.contact-info { display: grid; gap: 14px; }
.info-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info-card__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}
.info-card__icon svg { width: 21px; height: 21px; }
.info-card h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 5px; font-family: var(--font-body); }
.info-card p, .info-card a { font-size: 1.02rem; font-weight: 500; color: var(--ink); }
.info-card a:hover { color: var(--accent); }

.form {
  padding: clamp(26px, 3.4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(10, 42, 67, .1);
}
.form__note { font-size: .86rem; color: var(--muted); margin-top: 4px; }
.form__status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
}
.form__status.is-visible { display: block; }
.form__status.is-success { background: #E7F4EC; color: #1B6B3A; border: 1px solid #BADFC7; }
.form__status.is-error { background: #FBE7E7; color: #A32020; border: 1px solid #E9BcbC; }

/* --------------------------------------------------------------- Footer */
.footer {
  background: var(--primary-deep);
  color: var(--muted-on-dark);
  padding-block: clamp(48px, 7vw, 80px) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 64px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--muted-on-dark); }
.footer__about { margin-top: 18px; font-size: .96rem; max-width: 42ch; }
.footer h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 16px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a { font-size: .96rem; transition: color .18s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; }
.footer__contact a, .footer__contact p { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; }
.footer__contact svg { width: 17px; height: 17px; color: #FF8A45; flex: none; margin-top: 3px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .86rem;
}
.footer__tags { color: var(--muted-on-dark); }

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

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

/* --------------------------------------------------------------- Responsive */
@media (max-width: 1000px) {
  .about__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .coverage__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    padding: 16px var(--gutter) 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open a { padding: 13px 14px; font-size: 1.05rem; }

  .services__grid { grid-template-columns: 1fr; }
  .hero-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(4n) .process-step__num::after { display: block; }
  .process-step:nth-child(2n) .process-step__num::after { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .why__grid { grid-template-columns: 1fr; }
  .hero-stats__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .process-step__num::after { display: none !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero__annot { display: none; }
  .brand__sub { display: none; }
}
