/* ============================================================
   Bridgeway Accountants & Co — design system
   Reference language: Sora, deep navy, electric blue, editorial
   ============================================================ */

:root {
  --navy: #0b3346;
  --navy-deep: #031e2b;
  --navy-soft: #0e3d54;
  --blue: #0099ff;
  --ice: #f3f6f8;
  --white: #ffffff;
  --grey: #cdcdcd;
  --muted: #a5b8c1;
  --muted-dark: #5f7785;
  --line-light: rgba(255, 255, 255, 0.10);
  --line-dark: rgba(11, 51, 70, 0.12);
  --radius: 14px;
  --container: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --font: "Sora", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--blue); color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue); color: #fff; padding: 10px 18px; z-index: 999;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- type scale ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--blue);
  display: inline-block;
}

.h-display {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.h-section {
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--grey);
  max-width: 56ch;
}

.dim { color: var(--muted); }
.accent { color: var(--blue); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn .arr { transition: transform 0.3s ease; }
.btn:hover .arr { transform: translateX(5px); }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #008ae6; box-shadow: 0 12px 32px rgba(0, 153, 255, 0.35); }

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

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-deep); box-shadow: 0 12px 28px rgba(11,51,70,0.3); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(3, 30, 43, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand span { color: var(--blue); }
.brand small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.25s;
}
.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links .btn { padding: 13px 26px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  position: relative;
  z-index: 95;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(150px, 20vh, 210px);
  padding-bottom: 0;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(0,153,255,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 55%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/noise.png");
  opacity: 0.05;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero h1 .ghost { color: var(--muted-dark); }
.hero .lead { margin: 34px 0 44px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  margin-bottom: 70px;
}
.hero-points li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 9px;
}
.hero-points li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-visual {
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 80px rgba(0,0,0,0.4);
}
.hero-visual img { width: 100%; height: clamp(260px, 42vw, 460px); object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,51,70,0.35), transparent 45%);
}
.hero-tag {
  position: absolute;
  z-index: 2;
  bottom: 26px; left: 26px;
  background: rgba(3,30,43,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-tag b { color: var(--white); display: block; font-size: 15px; letter-spacing: 0.04em; margin-top: 3px; }

/* ---------- marquee ---------- */

.marquee {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 64px;
}
.marquee-track span::after { content: "✦"; color: var(--blue); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */

section { position: relative; }
.section-pad { padding-top: clamp(80px, 11vw, 140px); padding-bottom: clamp(80px, 11vw, 140px); }

.light { background: var(--ice); color: var(--navy); }
.light .lead { color: #46606e; }
.light .eyebrow { color: #0084dd; }
.light .eyebrow::before { background: #0084dd; }

/* about statement */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.statement {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.statement strong { font-weight: 700; text-transform: uppercase; }
.statement .accent { font-weight: 700; }
.about-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(11,51,70,0.22);
}
.about-grid figure img { height: 100%; min-height: 380px; object-fit: cover; }
.about-foot {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 60px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #46606e;
}

/* services */
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.service-list { list-style: none; border-top: 1px solid var(--line-light); }
.service-item {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr 40px;
  gap: 28px;
  align-items: center;
  padding: 34px 10px;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.service-item:hover { background: rgba(255,255,255,0.035); padding-left: 22px; }
.service-num {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.service-item h3 {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-item p { font-size: 15px; font-weight: 300; color: var(--muted); }
.service-arrow {
  color: var(--muted-dark);
  font-size: 22px;
  transition: color 0.3s, transform 0.3s;
}
.service-item:hover .service-arrow { color: var(--blue); transform: translateX(6px); }

/* why */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
}
.why-sticky { position: sticky; top: 120px; align-self: start; }
.why-sticky .h-section { margin-bottom: 24px; }
.gherkin-wrap {
  margin-top: 46px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 40px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.gherkin-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 320px at 50% 100%, rgba(0,153,255,0.22), transparent 70%);
}
.gherkin-wrap img {
  position: relative;
  max-height: 330px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
}
.gherkin-wrap figcaption {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.adv-list { display: grid; gap: 18px; }
.adv-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 36px 38px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(11,51,70,0.13); }
.adv-card .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0084dd;
  display: block;
  margin-bottom: 14px;
}
.adv-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.adv-card p { font-size: 15px; font-weight: 300; color: #46606e; }

/* process */
.process-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--navy);
  padding: 42px 32px 48px;
  transition: background 0.3s ease;
}
.step:hover { background: var(--navy-soft); }
.step .num {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 56px;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 14px; font-weight: 300; color: var(--muted); }
.process-visual {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.process-visual figure { border-radius: var(--radius); overflow: hidden; }
.process-visual img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; filter: grayscale(1); }
.quote-card {
  background: var(--navy-deep);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.quote-card blockquote {
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 300;
  line-height: 1.45;
}
.quote-card blockquote b { font-weight: 700; color: var(--blue); }
.quote-card cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* stats */
.stats { background: var(--navy-deep); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(44px, 5vw, 70px) 30px;
  text-align: center;
  border-left: 1px solid var(--line-light);
}
.stat:first-child { border-left: 0; }
.stat .val {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat .val em { font-style: normal; color: var(--blue); }
.stat .label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* cta band */
.cta-band {
  background:
    linear-gradient(100deg, rgba(3,30,43,0.92) 30%, rgba(11,51,70,0.72)),
    url("../assets/hero-tower.jpg") center/cover;
  text-align: center;
}
.cta-band .h-section { max-width: 780px; margin: 0 auto 22px; }
.cta-band .lead { margin: 0 auto 44px; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(44px, 6vw, 90px);
}
.contact-info .h-section { margin-bottom: 22px; }
.contact-info .lead { margin-bottom: 44px; }
.info-rows { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}
.info-row dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding-top: 3px;
}
.info-row dd { color: var(--grey); font-weight: 300; }
.info-row dd a { color: var(--white); font-weight: 600; border-bottom: 1px solid rgba(0,153,255,0.5); transition: border-color .25s; }
.info-row dd a:hover { border-color: var(--blue); }

.contact-form {
  background: var(--navy-deep);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 52px);
}
.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 12px 2px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dark); text-transform: uppercase; font-size: 13px; letter-spacing: 0.08em; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted-dark); font-weight: 300; }
.form-note a { color: var(--muted); text-decoration: underline; }
.form-status { margin-top: 16px; font-size: 14px; display: none; }
.form-status.ok { display: block; color: #5ad08f; }
.form-status.err { display: block; color: #f5a6a6; }

/* ---------- footer ---------- */

.site-footer { background: var(--navy-deep); border-top: 1px solid var(--line-light); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-top: 70px;
  padding-bottom: 56px;
}
.footer-brand .brand { font-size: 30px; }
.footer-brand p { margin-top: 18px; font-size: 13px; font-weight: 300; color: var(--muted); max-width: 30ch; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col li, .footer-col a { font-size: 13.5px; font-weight: 300; color: var(--grey); }
.footer-col a:hover { color: var(--white); }
.footer-col a.mail { color: var(--white); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 26px;
  padding-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted-dark);
}
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--grey); }

/* ---------- cookie banner ---------- */

.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  padding: 30px 34px;
  display: none;
}
.cookie-banner.show { display: block; animation: rise 0.45s ease both; }
@keyframes rise { from { transform: translateY(24px); opacity: 0; } }
.cookie-banner h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cookie-banner p { font-size: 13.5px; font-weight: 300; color: #46606e; margin-bottom: 18px; }
.cookie-banner p a { text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 13px 24px; font-size: 11px; }
.btn-quiet { background: var(--ice); color: var(--navy); }
.btn-quiet:hover { background: #e4ebef; }
.cookie-prefs { display: none; border-top: 1px solid var(--line-dark); margin-top: 18px; padding-top: 18px; }
.cookie-prefs.open { display: block; }
.cookie-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 10px 0;
}
.cookie-row div b { font-size: 13.5px; font-weight: 700; display: block; }
.cookie-row div span { font-size: 12px; color: #6b8492; font-weight: 300; }
.switch { position: relative; width: 44px; height: 24px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; inset: 0;
  background: #ccd8de; border-radius: 24px;
  transition: 0.25s; cursor: pointer;
}
.slider::before {
  content: ""; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px;
  transition: 0.25s;
}
.switch input:checked + .slider { background: var(--blue); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--navy); opacity: 0.45; cursor: not-allowed; }

/* ---------- legal pages ---------- */

.legal-hero {
  padding-top: clamp(150px, 18vh, 200px);
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
}
.legal-hero .updated { margin-top: 18px; font-size: 13px; color: var(--muted); font-weight: 300; }
.legal-body { background: var(--ice); color: var(--navy); padding-top: 70px; padding-bottom: 110px; }
.legal-body .container { max-width: 860px; }
.legal-body h2 { font-size: 23px; font-weight: 700; margin: 46px 0 16px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 15.5px; font-weight: 300; color: #2e4756; margin-bottom: 14px; }
.legal-body ul { padding-left: 22px; margin-bottom: 18px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { font-weight: 700; color: var(--navy); }
.legal-body a { color: #0084dd; text-decoration: underline; }
.legal-body address { font-style: normal; font-weight: 300; color: #2e4756; margin-bottom: 14px; line-height: 1.7; }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0 26px;
  background: var(--white); border-radius: 10px; overflow: hidden;
  font-size: 14px;
}
.legal-body th, .legal-body td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line-dark); vertical-align: top; }
.legal-body th { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); background: #eaf0f3; }
.legal-body td { font-weight: 300; color: #2e4756; }

/* ---------- reveal animations ---------- */

html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-sticky { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line-light); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .process-visual { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 60px 1fr 40px; }
  .service-item p { grid-column: 2 / 3; }
  .service-arrow { grid-row: 1; grid-column: 3; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 92;
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { font-size: 16px; }
  .services-head { grid-template-columns: 1fr; align-items: start; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 24px; }
}
