/* ==========================================================================
   Hal Answers — shared stylesheet
   Aesthetic: clean, modern B2B consulting. Near-white base, soft gray panels,
   single saturated accent (#219ebc), large editorial lowercase headlines.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --accent: #219ebc;
  --accent-dark: #1a7f98;
  --accent-soft: #e8f4f8;
  --bg: #fcfdfd;
  --panel: #f4f6f7;
  --panel-2: #eef1f2;
  --ink: #16242a;
  --ink-soft: #4a5b62;
  --ink-faint: #7d8b91;
  --line: #e3e8ea;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --shadow-sm: 0 1px 2px rgba(22,36,42,.04), 0 4px 14px rgba(22,36,42,.05);
  --shadow-md: 0 12px 40px rgba(22,36,42,.10);
  --shadow-accent: 0 14px 34px rgba(33,158,188,.28);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }
.panel { background: var(--panel); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; color: var(--ink); }

.h-display {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.h-section {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.nav.is-solid {
  position: sticky;
  background: rgba(252,253,253,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.04em;
  flex: none;
}
.nav--over .brand, .nav--over .nav__links a { color: #fff; }
.nav--over .brand__mark { background: #fff; color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.active { color: var(--accent); font-weight: 600; }
.nav--over .nav__links a:hover { color: #fff; background: rgba(255,255,255,.14); }
.nav--over .nav__links a.active { color: #fff; background: rgba(255,255,255,.18); }
.nav__cta { margin-left: 12px; }
.nav--over .nav__cta.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.nav--over .nav__cta.btn--ghost:hover { background: #fff; color: var(--accent); border-color: #fff; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav--over .nav__burger span { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,28,34,.86) 0%, rgba(11,28,34,.62) 42%, rgba(16,46,56,.42) 100%),
    linear-gradient(180deg, rgba(11,28,34,.35) 0%, rgba(11,28,34,.15) 60%, rgba(11,28,34,.55) 100%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 150px 32px 90px;
}
.hero__copy { color: #fff; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #bfe6f0;
  margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--accent); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.03;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: #7fd0e3; }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 52ch;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero__stats {
  display: flex;
  gap: 42px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__stat .n {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.hero__stat .l {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  margin-top: 8px;
  display: block;
}

/* ---------- Glass form ---------- */
.glass {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  padding: 38px 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.glass__head { color: #fff; margin-bottom: 26px; }
.glass__head h3 { color: #fff; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 6px; }
.glass__head p { color: rgba(255,255,255,.7); font-size: 14px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: #fff;
  transition: border .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.18);
}
.field select option { color: #16242a; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.glass .btn { width: 100%; justify-content: center; margin-top: 8px; }
.glass__note { text-align: center; font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
  color: #fff;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

/* ---------- Generic page header (non-home) ---------- */
.pagehead {
  position: relative;
  padding: 170px 0 90px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,158,188,.14), transparent 70%);
}
.pagehead .wrap { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 500; letter-spacing: -0.035em; max-width: 16ch; }
.pagehead p { margin-top: 22px; max-width: 56ch; color: var(--ink-soft); font-size: 1.12rem; }
.crumbs { font-size: 13px; color: var(--ink-faint); margin-bottom: 26px; letter-spacing: .02em; }
.crumbs a:hover { color: var(--accent); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.32rem; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.02em; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 18px; }
.card li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 8px 0 8px 24px;
  position: relative;
  border-top: 1px solid var(--line);
}
.card li:first-child { border-top: none; }
.card li::before {
  content: "";
  position: absolute;
  left: 2px; top: 16px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.split__media .tag {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(252,253,253,.92);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.split__media .tag span { display: block; font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .05em; }
.checklist { list-style: none; margin-top: 28px; }
.checklist li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist .ck {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 12px;
  margin-top: 3px;
}

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.statband .s { text-align: center; }
.statband .s .n { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.statband .s .l { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.qmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: .6;
  color: var(--accent);
  margin-bottom: 8px;
  height: 34px;
  display: block;
  font-weight: 400;
}
.stars { color: var(--accent); font-size: 15px; letter-spacing: 3px; margin-bottom: 20px; }
.quote p { font-size: 15.5px; color: var(--ink-soft); flex: 1; }
.quote__by { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.quote__by strong { display: block; font-weight: 600; font-size: 15px; }
.quote__by span { font-size: 13.5px; color: var(--ink-faint); }

/* ---------- Full Engagement featured card ---------- */
.engage {
  background: linear-gradient(120deg, #142e37 0%, #16414f 55%, #1e6779 100%);
  border-radius: 26px;
  padding: 64px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.engage::before {
  content: "";
  position: absolute;
  top: -100px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,158,188,.42), transparent 70%);
}
.engage__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #bfe6f0;
  margin-bottom: 22px;
  position: relative;
}
.engage__badge::before { content: ""; width: 24px; height: 1.5px; background: var(--accent); }
.engage h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 22px;
  position: relative;
}
.engage__intro {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 46ch;
  position: relative;
}
.engage__best {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  position: relative;
  line-height: 1.55;
}
.engage__best strong {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7fd0e3;
  font-weight: 700;
  margin-bottom: 6px;
}
.engage .btn {
  position: relative;
}
.engage__inc {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 34px 30px;
  position: relative;
}
.engage__inc h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.engage__inc ul { list-style: none; margin: 0; }
.engage__inc li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 15.5px;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}
.engage__inc li:last-child { border-bottom: none; }
.engage__inc li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(33,158,188,.22);
  color: #7fd0e3;
  display: grid;
  place-items: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237fd0e3' stroke-width='3'><path d='M20 6 9 17l-5-5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 980px) {
  .engage { grid-template-columns: 1fr; gap: 36px; padding: 48px 40px; }
}
@media (max-width: 680px) {
  .engage { padding: 40px 28px; border-radius: 20px; }
}


.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pkg {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.pkg__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 16px;
}
.pkg h3 { font-size: 1.42rem; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 16px; }
.pkg__best {
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.pkg__best strong {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}
.pkg__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 6px 0 14px;
}
.pkg ul { list-style: none; margin: 0 0 6px; }
.pkg ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 9px 0 9px 24px;
  position: relative;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}
.pkg ul li:first-child { border-top: none; }
.pkg ul.inc li::before {
  content: "";
  position: absolute;
  left: 3px; top: 16px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.pkg ul.exc li { color: var(--ink-faint); }
.pkg ul.exc li::before {
  content: "";
  position: absolute;
  left: 3px; top: 17px;
  width: 9px; height: 1.5px;
  background: var(--ink-faint);
  opacity: .6;
}
.pkg__spacer { flex: 1; }
.pkg .btn { width: 100%; justify-content: center; margin-top: 26px; }

@media (max-width: 980px) {
  .packages { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .packages { grid-template-columns: 1fr; }
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .12em;
}
.step h4 { font-size: 1.15rem; font-weight: 600; margin: 14px 0 10px; letter-spacing: -0.02em; }
.step p { font-size: 14.5px; color: var(--ink-soft); }
.step::after {
  content: "";
  position: absolute;
  top: 7px; left: 46px; right: -12px;
  height: 1px;
  background: var(--line);
}
.step:last-child::after { display: none; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(120deg, #16323b 0%, #1a4754 60%, #1f6d80 100%);
  border-radius: 26px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,158,188,.4), transparent 70%);
}
.cta h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 500; letter-spacing: -0.03em; position: relative; }
.cta p { color: rgba(255,255,255,.78); margin: 18px auto 34px; max-width: 50ch; position: relative; }
.cta .btn-row { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- About bio ---------- */
.bio { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.bio__photo { position: sticky; top: 110px; }
.bio__photo img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.bio__card {
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.bio__card .row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.bio__card .row:last-child { border-bottom: none; }
.bio__card .row span:first-child { color: var(--ink-faint); }
.bio__card .row span:last-child { font-weight: 600; }
.prose p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 20px; }
.prose p strong { color: var(--ink); }
.creds { list-style: none; margin-top: 30px; display: grid; gap: 2px; }
.creds li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.creds li .y { flex: none; width: 110px; font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: .04em; padding-top: 2px; }
.creds li .d strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.creds li .d span { font-size: 14px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .ci {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .ci:first-child { padding-top: 0; }
.contact-info .ci__ico {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.contact-info .ci h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); font-weight: 600; margin-bottom: 6px; }
.contact-info .ci p, .contact-info .ci a { font-size: 16px; color: var(--ink); font-weight: 500; }
.contact-info .ci a:hover { color: var(--accent); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.form-card .field label { color: var(--ink-soft); }
.form-card .field input, .form-card .field select, .form-card .field textarea {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink);
}
.form-card .field input::placeholder, .form-card .field textarea::placeholder { color: var(--ink-faint); }
.form-card .field input:focus, .form-card .field select:focus, .form-card .field textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-card .field select option { color: var(--ink); }
.form-card .form-success { color: var(--ink); }
.form-card .glass__note { color: var(--ink-faint); }

/* ---------- Footer ---------- */
.footer { background: #11242a; color: rgba(255,255,255,.7); padding: 80px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer__about { font-size: 14.5px; max-width: 34ch; }
.footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.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; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; padding-top: 130px; }
  .hero__stats { gap: 30px; }
  .split, .bio, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio__photo { position: static; }
  .grid--3, .statband, .steps { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .step::after { display: none; }
  .cta { padding: 56px 32px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .wrap { padding: 0 22px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__inner { padding: 20px 22px; }
  .grid--3, .grid--2, .statband, .steps { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__grid { padding: 120px 22px 70px; }
  .glass { padding: 28px 24px; }
  .pagehead { padding: 140px 0 70px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17,36,42,.97);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.6rem; font-weight: 500; padding: 10px; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; }
