/* =========================================================
   Centaur Digital Corp, Global Styles
   Design DNA: clean editorial, serif headlines with italic
   emphasis, generous whitespace, slate + orange brand accent.
   ========================================================= */

:root {
  /* Brand palette, confirmed from client */
  --primary: #37a1d3;        /* brand blue */
  --primary-dark: #2888b8;
  --primary-soft: #e6f3fa;

  --accent: #f14f23;         /* brand orange (secondary) */
  --accent-dark: #d1411a;
  --accent-soft: #fde7df;

  --slate-900: #1a2028;
  --slate-800: #2d353d;      /* brand neutral dark */
  --slate-600: #4a5560;
  --slate-400: #8a96a3;
  --slate-200: #d8dde3;
  --slate-100: #eef1f4;

  --cream: #faf7f2;          /* warm off-white */
  --cream-2: #f4ede0;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--white);
  --text: var(--slate-900);
  --text-muted: var(--slate-600);
  --border: rgba(26, 32, 40, 0.08);

  /* Type */
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(26, 32, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 32, 40, 0.06);
  --shadow-lg: 0 20px 50px rgba(26, 32, 40, 0.1);

  --ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--slate-900);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--primary);
}

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.eyebrow--light { color: var(--primary); }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}

.btn--sm { padding: 10px 18px; font-size: 14px; }

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-200);
}
.btn--ghost:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--slate-900);
  border-color: var(--border);
}
.btn--light:hover { background: var(--cream-2); }

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--slate-900);
}

.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__logo--footer img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav__links {
  display: none;
  gap: 28px;
  font-size: 15px;
  color: var(--slate-600);
  align-items: center;
}
.nav__links a { transition: color .15s var(--ease); }
.nav__links a:hover { color: var(--slate-900); }

@media (min-width: 900px) {
  .nav__links {
    display: flex;
    margin-left: auto;
  }
}

/* Dropdown menu (Services) */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--slate-600);
  cursor: pointer;
}
.nav__dropdown-trigger:hover,
.nav__dropdown:hover .nav__dropdown-trigger,
.nav__dropdown:focus-within .nav__dropdown-trigger { color: var(--slate-900); }

.nav__caret {
  width: 10px;
  height: 6px;
  transition: transform .2s var(--ease);
}
.nav__dropdown:hover .nav__caret,
.nav__dropdown:focus-within .nav__caret { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
  display: grid;
  gap: 2px;
  z-index: 100;
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--slate-900);
  border-radius: var(--radius-sm);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__dropdown-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.nav__dropdown-all {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 14px !important;
  font-weight: 500;
  color: var(--primary) !important;
}

/* Secondary CTA, Talk With Us, matched to btn--sm dimensions */
.nav__links-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--slate-900);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--slate-900) !important;
  margin-left: 4px;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.nav__links-cta:hover {
  background: var(--slate-900);
  color: var(--white) !important;
}

/* =========================================================
   Mobile nav, hamburger toggle (CSS-only, no JS)
   ========================================================= */

.nav__toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  transition: background .15s var(--ease);
  z-index: 101;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .nav__toggle:hover { background: rgba(26, 32, 40, 0.06); }
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
  transform-origin: center;
}

/* Hamburger to X animation when checkbox is checked */
.nav__toggle-input:checked ~ .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle-input:checked ~ .nav__toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle-input:checked ~ .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Keyboard focus ring on the visible button */
.nav__toggle-input:focus-visible ~ .nav__toggle {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 899px) {
  .nav__toggle {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }

  /* Hide the header CTA on mobile to prevent crowding the logo / hamburger.
     The mobile menu overlay has its own "Talk With Us" CTA. */
  .nav__inner > .btn {
    display: none;
  }

  /* Full-width dropdown overlay when checkbox is checked.
     Height set explicitly (not bottom: 0) because .nav's backdrop-filter
     makes .nav the containing block for this fixed element. */
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 28px 48px;
    background: var(--white);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility .2s var(--ease);
    z-index: 99;
  }
  .nav__toggle-input:checked ~ .nav__links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile link styles */
  .nav__links > a,
  .nav__links .nav__dropdown-trigger {
    font-size: 18px;
    color: var(--slate-900);
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: flex;
    align-items: center;
  }
  .nav__links > a:last-child { border-bottom: none; }

  /* Services dropdown inline on mobile, no hover state */
  .nav__dropdown {
    position: static;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav__dropdown-trigger { border-bottom: none !important; }
  .nav__caret { display: none; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 14px 14px;
    margin: 0;
    background: transparent;
    min-width: 0;
    display: grid;
  }
  .nav__dropdown-menu::before { display: none; }
  .nav__dropdown-menu a {
    padding: 10px 12px;
    font-size: 15px;
  }
  .nav__dropdown-all {
    border-top: 1px solid var(--border) !important;
    margin-top: 8px !important;
  }

  /* Talk With Us full-width primary button inside mobile overlay */
  .nav__links .nav__links-cta {
    width: 100%;
    margin-top: 24px;
    margin-left: 0;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
    background: var(--slate-900);
    color: var(--white) !important;
    border-color: var(--slate-900);
    border-bottom: 1px solid var(--slate-900) !important;
  }
  .nav__links .nav__links-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
  }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: 96px 0 80px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(55,161,211,0.12), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(241,79,35,0.08), transparent 50%),
    var(--cream);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-600);
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
}

.hero__title {
  font-size: clamp(38px, 6vw, 74px);
  max-width: 18ch;
  margin: 0 auto 24px;
}

.hero__sub {
  max-width: 58ch;
  margin: 0 auto 36px;
  color: var(--slate-600);
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__proof {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--slate-600);
}
.proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proof__item strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--slate-900);
  font-weight: 400;
}
.proof__item span {
  font-size: 13px;
  color: var(--slate-600);
}
.proof__divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
@media (max-width: 640px) {
  .proof__divider { display: none; }
}

/* =========================================================
   Sections
   ========================================================= */

.section { padding: 100px 0; }

.section--light { background: var(--white); }
.section--dark  { background: var(--slate-900); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section__head--light .eyebrow { color: var(--accent); }

.section__title {
  font-size: clamp(32px, 4.5vw, 54px);
  margin-bottom: 18px;
}

.section__lead {
  color: var(--slate-600);
  font-size: 18px;
}

.section--dark .section__lead { color: rgba(250, 246, 239, 0.7); }

/* =========================================================
   Grids & Cards
   ========================================================= */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.section--light .card { background: var(--cream); }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.card__icon svg { width: 22px; height: 22px; stroke-linecap: round; stroke-linejoin: round; }

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  color: var(--slate-600);
  font-size: 15px;
  margin-bottom: 20px;
}

.card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-900);
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 2px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.card__link:hover { color: var(--primary); border-color: var(--primary); }

/* =========================================================
   Hero, split layout (founder-led variant)
   ========================================================= */

.hero--split {
  padding: 80px 0 96px;
  text-align: left;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
  }
  .hero--split { padding: 96px 0 120px; }
}

.hero__copy .hero__title {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  font-size: clamp(38px, 5.6vw, 68px);
}
.hero__copy .hero__sub {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  max-width: 52ch;
}
.hero__copy .hero__cta {
  justify-content: flex-start;
}
.hero__copy .hero__eyebrow {
  margin-bottom: 24px;
}

/* Visual column */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.hero__photo {
  position: absolute;
  inset: 14% 14% 14% 14%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 32, 40, 0.18);
  background: linear-gradient(135deg, var(--primary-soft), var(--cream-2));
}
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px dashed rgba(55, 161, 211, 0.35);
  z-index: -1;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating credential chips */
.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(26, 32, 40, 0.08);
  min-width: 170px;
  animation: chip-float 6s ease-in-out infinite;
}
.chip strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.2;
}
.chip span {
  display: block;
  font-size: 11px;
  color: var(--slate-600);
  margin-top: 2px;
}

.chip--tl { top: 2%; left: -6%; animation-delay: 0s; }
.chip--tr { top: 8%; right: -8%; animation-delay: 1.5s; }
.chip--bl { bottom: 12%; left: -10%; animation-delay: 3s; }
.chip--br { bottom: 2%; right: -4%; animation-delay: 4.5s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .chip { animation: none; }
}

.chip__star,
.chip__mark,
.chip__rating {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.chip__star {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 18px;
}
.chip__mark {
  background: var(--primary-soft);
  color: var(--primary);
}
.chip__mark--accent {
  background: var(--accent-soft);
  color: var(--accent);
}
.chip__rating {
  background: var(--slate-900);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: -0.02em;
}

/* Mobile: photo on top, credential chips in a 2x2 grid beneath */
@media (max-width: 959px) {
  .hero__grid { gap: 32px; }
  .hero__visual {
    max-width: 440px;
    aspect-ratio: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: stretch;
  }
  .hero__visual::before,
  .hero__visual::after { display: none; }
  .hero__photo {
    grid-column: 1 / -1;
    justify-self: center;
    position: relative;
    inset: auto;
    width: 200px;
    height: 200px;
    margin: 0 0 8px;
  }
  .hero__photo::before { display: none; }
  .hero__visual .chip {
    position: static;
    inset: auto;
    animation: none;
    min-width: 0;
    padding: 10px 12px;
  }
  .chip--tl, .chip--tr, .chip--bl, .chip--br { display: flex; }
}

/* =========================================================
   Quote attribution polish (decorative rule in place of em-dash)
   ========================================================= */
.quote footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-900);
  font-weight: 500;
}
.quote footer::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--slate-400);
  flex-shrink: 0;
}
.quote__meta {
  font-size: 13px;
  color: var(--slate-600);
  font-weight: 400;
}
.quote__meta::before {
  content: "·";
  margin-right: 8px;
  color: var(--slate-400);
}

/* =========================================================
   FAQ page, two-column layout with sticky TOC
   ========================================================= */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1140px;
}

@media (min-width: 960px) {
  .faq-layout {
    grid-template-columns: 240px 1fr;
    gap: 80px;
  }
}

.faq-toc { align-self: start; }

@media (min-width: 960px) {
  .faq-toc {
    position: sticky;
    top: 100px;
  }
}

.faq-toc__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-600);
  margin: 0 0 14px;
}

.faq-toc nav {
  display: grid;
  gap: 2px;
  margin-bottom: 32px;
  border-left: 1px solid var(--border);
}

.faq-toc nav a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.4;
  margin-left: -1px;
  border-left: 2px solid transparent;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}

.faq-toc nav a:hover {
  color: var(--slate-900);
  border-left-color: var(--primary);
}

.faq-toc__cta {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.faq-toc__cta-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--slate-900);
  margin: 0 0 8px;
}
.faq-toc__cta-text {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0 0 18px;
}
.faq-toc__cta .btn { width: 100%; }

.faq-group {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}
.faq-group:last-child { margin-bottom: 0; }

.faq-group__count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.faq-group__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--slate-900);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-soft);
}

/* Polish the native details items on the FAQ page */
.faq-content .faq__list details {
  border-top: 1px solid var(--border);
  padding: 18px 4px 18px 4px;
  transition: padding .2s var(--ease);
}
.faq-content .faq__list details[open] {
  padding-bottom: 22px;
}
.faq-content .faq__list summary {
  font-size: 16px;
  transition: color .15s var(--ease);
}
.faq-content .faq__list summary:hover { color: var(--primary); }
.faq-content .faq__list details[open] summary { color: var(--primary); }
.faq-content .faq__list p {
  margin-top: 14px;
  max-width: 68ch;
}

/* =========================================================
   Legal pages (privacy, terms)
   ========================================================= */

.legal__container {
  max-width: 760px;
}
.legal__meta {
  color: var(--slate-600);
  font-size: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 24px;
  margin: 48px 0 16px;
  color: var(--slate-900);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--slate-900);
}
.legal p {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.legal ul {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.65;
  padding-left: 24px;
  margin: 0 0 16px;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary-soft);
  transition: border-color .15s var(--ease);
}
.legal a:hover { border-bottom-color: var(--primary); }

/* =========================================================
   Contact page
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
  }
}

.contact-info {
  display: grid;
  gap: 32px;
}
.contact-block h2,
.contact-block h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-600);
  margin: 0 0 10px;
  line-height: 1.2;
}
.contact-block p {
  margin-top: 8px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
  max-width: 40ch;
}

.contact-info__big {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--slate-900);
  line-height: 1.1;
  transition: color .15s var(--ease);
}
.contact-info__big:hover { color: var(--primary); }

.contact-info__link {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--slate-900);
  line-height: 1.3;
  word-break: break-word;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 2px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.contact-info__link:hover { color: var(--primary); border-color: var(--primary); }

.contact-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.contact-offices strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--slate-900);
  line-height: 1.1;
}
.contact-offices span {
  display: block;
  font-size: 12px;
  color: var(--slate-600);
  margin-top: 4px;
}

.contact-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-social a {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-900);
  padding: 8px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.contact-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}
@media (max-width: 599px) {
  .contact-form { padding: 28px; }
}

.contact-form__head {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.contact-form__head .eyebrow { margin-bottom: 0; }

.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-900);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--slate-900);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--sans);
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--slate-400);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(55, 161, 211, 0.15);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%234a5560' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 15px;
}

.contact-form__note {
  font-size: 12px;
  color: var(--slate-400);
  text-align: center;
  margin: 0;
}

/* =========================================================
   Page hero actions (interior pages)
   ========================================================= */

.page-hero {
  padding: 96px 0 88px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(55, 161, 211, 0.10), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(241, 79, 35, 0.06), transparent 50%),
    var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 22ch;
  margin: 0 auto 20px;
  line-height: 1.1;
}

.page-hero__sub {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--slate-600);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.page-hero__actions {
  margin-top: 32px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Service detail rows (services page)
   ========================================================= */

.service-list .container { max-width: 960px; }

.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.svc-row:first-child { padding-top: 8px; }
.svc-row:last-child { border-bottom: none; }

@media (min-width: 780px) {
  .svc-row {
    grid-template-columns: 120px 1fr;
    gap: 48px;
    padding: 64px 0;
  }
}

.svc-row__num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--primary);
  line-height: 1;
  font-style: italic;
}

.svc-row__meta .eyebrow { margin-bottom: 12px; }

.svc-row__title {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 16px;
  line-height: 1.15;
}

.svc-row__desc {
  color: var(--slate-600);
  font-size: 17px;
  max-width: 62ch;
  margin-bottom: 24px;
}

.svc-row__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}
.svc-row__features li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.55;
}
.svc-row__features li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* =========================================================
   Pricing packages
   ========================================================= */

.pkg-grid { align-items: stretch; }

.pkg {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pkg--featured {
  background: var(--slate-900);
  color: var(--cream);
  border-color: var(--slate-900);
}
.pkg--featured .pkg__name,
.pkg--featured .pkg__price { color: var(--cream); }
.pkg--featured .pkg__price span { color: rgba(250,246,239,0.6); }
.pkg--featured .pkg__best { color: rgba(250,246,239,0.75); }
.pkg--featured .pkg__list li { color: rgba(250,246,239,0.85); }

.pkg__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pkg__name {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--slate-900);
}

.pkg__price {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--slate-900);
  margin-bottom: 14px;
}
.pkg__price span {
  font-size: 16px;
  color: var(--slate-600);
  font-family: var(--sans);
}

.pkg__best {
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 42px;
}

.pkg__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.pkg__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.5;
}
.pkg__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.pkg__cta { width: 100%; }

.pkg-note {
  text-align: center;
  color: var(--slate-600);
  font-size: 15px;
  margin-top: 40px;
}
.pkg-note a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary-soft);
  padding-bottom: 1px;
}
.pkg-note a:hover { border-bottom-color: var(--primary); }

/* =========================================================
   Fit / Not-fit two-column
   ========================================================= */

.fit-grid { gap: 32px; }

.fit-col {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.fit-col h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.fit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.fit-col ul li {
  position: relative;
  padding-left: 30px;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.55;
}

.fit-col--yes ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}
.fit-col--no ul li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   Stats
   ========================================================= */

.stats {
  background: var(--slate-900);
  color: var(--cream);
  padding: 56px 0;
}

.stat__num--text {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}
@media (min-width: 900px) {
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
}
.stat__num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 14px;
  color: rgba(250, 246, 239, 0.65);
  max-width: 24ch;
  margin: 0 auto;
}

/* =========================================================
   About
   ========================================================= */

.about {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

.about__copy p { color: var(--slate-600); font-size: 17px; }
.about__copy .btn { margin-top: 12px; }

.about__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.about__card-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--slate-900);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__name { font-weight: 600; font-size: 17px; }
.about__role { font-size: 13px; color: var(--slate-600); }

.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.about__list li {
  font-size: 14px;
  color: var(--slate-600);
  padding-left: 22px;
  position: relative;
}
.about__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 4px;
  top: 9px;
}

/* =========================================================
   Logos strip
   ========================================================= */

.logos {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin: 0 0 24px;
}
.logos__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
}
.logos__row span {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--slate-600);
  font-style: italic;
  opacity: .75;
}

/* =========================================================
   Case studies
   ========================================================= */

.case {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.case:hover {
  background: rgba(55,161,211,0.10);
  border-color: rgba(55,161,211,0.35);
  transform: translateY(-4px);
}
.case__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}
.case h3 {
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 12px;
}
.case p {
  color: rgba(250, 246, 239, 0.7);
  font-size: 15px;
  margin-bottom: 20px;
}
.case__link {
  font-size: 14px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color .15s var(--ease), color .15s var(--ease);
}
.case__link:hover { color: var(--primary); border-color: var(--primary); }

/* =========================================================
   Case studies page, full-width card rows
   ========================================================= */

.case-list .container { max-width: 1000px; }

.case-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
}
.case-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-row__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.case-row__tags {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.case-row__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  background: var(--primary-soft);
  border-radius: 999px;
}

.case-row__industry {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.4;
}

.case-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--primary);
  line-height: 1;
  opacity: 0.32;
  flex-shrink: 0;
}

.case-row__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 26ch;
}

.case-row__wins {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
  max-width: 58ch;
}
.case-row__wins li {
  position: relative;
  padding-left: 34px;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.55;
}
.case-row__wins li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
}
.case-row__wins li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.case-row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-900);
  padding: 12px 20px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.case-row__link:hover {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
}

@media (max-width: 720px) {
  .case-row { padding: 32px 28px; }
  .case-row__head { gap: 14px; }
  .case-row__num { font-size: 40px; }
  .case-row__tags { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =========================================================
   Testimonials
   ========================================================= */

.quote {
  margin: 0;
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.quote p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--slate-900);
  margin-bottom: 20px;
}
.quote footer {
  font-size: 14px;
  color: var(--slate-600);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .faq { grid-template-columns: 1fr 1.3fr; }
}
.faq__head .section__title {
  text-align: left;
  font-size: clamp(32px, 3.8vw, 44px);
}

.faq__list details {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.faq__list details:last-child { border-bottom: 1px solid var(--border); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  color: var(--slate-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 26px;
  color: var(--primary);
  transition: transform .2s var(--ease);
  line-height: 1;
}
.faq__list details[open] summary::after { content: "-"; }
.faq__list p {
  margin-top: 12px;
  color: var(--slate-600);
  font-size: 15px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
  background: var(--slate-900);
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta__title {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
}
.cta__title em { color: var(--primary); }
.cta__sub {
  color: rgba(250, 246, 239, 0.7);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn--primary { background: var(--accent); }
.cta .btn--primary:hover { background: var(--accent-dark); }

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--slate-900);
  color: rgba(250, 246, 239, 0.7);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.nav__logo--footer { color: var(--cream); }
.nav__logo--footer .nav__logo-mark {
  background: var(--primary);
  color: var(--white);
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 16px;
  color: rgba(250, 246, 239, 0.6);
  max-width: 24ch;
}
.footer h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer ul a:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--primary); }

/* =========================================================
   Big CTA section (homepage bottom)
   ========================================================= */

.big-cta {
  background: var(--slate-900);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(55, 161, 211, 0.22), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(241, 79, 35, 0.15), transparent 45%);
  pointer-events: none;
}

.big-cta__inner {
  position: relative;
  max-width: 820px;
  text-align: center;
}

.big-cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  background: rgba(241, 79, 35, 0.12);
  border: 1px solid rgba(241, 79, 35, 0.35);
  border-radius: 999px;
  margin-bottom: 28px;
}

.big-cta__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 24px;
}
.big-cta__title em {
  color: var(--primary);
  font-style: italic;
}

.big-cta__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250, 246, 239, 0.82);
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.big-cta__benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 520px;
  text-align: left;
  display: grid;
  gap: 14px;
}
.big-cta__benefits li {
  position: relative;
  padding-left: 36px;
  color: rgba(250, 246, 239, 0.92);
  font-size: 16px;
  line-height: 1.5;
}
.big-cta__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
}
.big-cta__benefits li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  width: 9px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.big-cta__note {
  font-size: 13px;
  color: rgba(250, 246, 239, 0.55);
  margin: 0 0 32px;
  font-style: italic;
}

.big-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 16px;
}

.big-cta .btn--primary {
  background: var(--accent);
  color: var(--white);
}
.big-cta .btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .big-cta { padding: 80px 0; }
  .big-cta__title br { display: none; }
  .big-cta__benefits li { font-size: 15px; padding-left: 32px; }
  .big-cta__benefits li::before { width: 20px; height: 20px; top: 4px; }
  .big-cta__benefits li::after { top: 10px; }
  .big-cta__actions { flex-direction: column; }
  .big-cta__actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   Mobile refinements, tighter padding and responsive fixes
   ========================================================= */

@media (max-width: 720px) {
  /* Section spacing */
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .hero--split { padding: 48px 0 72px; }
  .page-hero { padding: 56px 0 64px; }
  .cta { padding: 72px 0; }
  .stats { padding: 40px 0; }
  .logos { padding: 32px 0; }

  /* Container padding */
  .container { padding: 0 20px; }

  /* Nav compact */
  .nav__inner { padding-top: 12px; padding-bottom: 12px; }
  .nav__logo img { height: 34px; }

  /* Hero typography a touch tighter */
  .hero__title { font-size: clamp(34px, 8vw, 54px); }
  .hero__sub { font-size: 16px; }
  .hero__cta { justify-content: flex-start; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }

  /* Page hero tighter */
  .page-hero__title { font-size: clamp(32px, 8vw, 52px); }
  .page-hero__sub { font-size: 15px; }
  .page-hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Section heads tighter */
  .section__head { margin-bottom: 40px; }
  .section__title { font-size: clamp(28px, 7vw, 42px); }
  .section__lead { font-size: 16px; }

  /* Cards */
  .card { padding: 24px; }
  .card h3 { font-size: 20px; }

  /* Stats */
  .stat__num { font-size: 36px; }
  .stats__inner { gap: 28px; }

  /* Service rows (services page) */
  .svc-row { padding: 36px 0; }
  .svc-row__num { font-size: 42px; }
  .svc-row__title { font-size: clamp(24px, 6.5vw, 32px); }

  /* Case study rows */
  .case-row { padding: 28px 24px; border-radius: 16px; }
  .case-row__num { font-size: 36px; }
  .case-row__title { font-size: clamp(24px, 7vw, 34px); }
  .case-row__wins li { font-size: 15px; padding-left: 30px; }

  /* Pricing packages */
  .pkg { padding: 28px 24px; }
  .pkg__price { font-size: 36px; }

  /* FAQ on mobile */
  .faq-toc { margin-bottom: 8px; }
  .faq-toc__cta { padding: 20px; }
  .faq-group { margin-bottom: 48px; scroll-margin-top: 80px; }
  .faq-group__title { font-size: clamp(22px, 5.5vw, 28px); }
  .faq-content .faq__list summary { font-size: 15px; }

  /* Quote cards */
  .quote { padding: 28px 24px; }
  .quote p { font-size: 18px; }

  /* CTA */
  .cta__title { font-size: clamp(30px, 7.5vw, 44px); }
  .cta__sub { font-size: 16px; }
  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn { width: 100%; justify-content: center; }

  /* Contact form tighter */
  .contact-form { padding: 28px 24px; }
  .contact-info__big { font-size: 32px; }

  /* About card */
  .about__card { padding: 28px; }
  .avatar { width: 60px; height: 60px; }

  /* Legal pages tighter */
  .legal h2 { font-size: 22px; margin: 36px 0 12px; }
  .legal h3 { font-size: 17px; }
  .legal p, .legal ul { font-size: 15px; }

  /* Hero visual handled in the 959px breakpoint above */

  /* Footer, 2-column grid for Services + Company, brand + contact span full */
  .footer { padding: 48px 0 24px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-bottom: 28px;
  }
  .footer__brand,
  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer__brand { margin-bottom: 0; }
  .nav__logo--footer img { height: 42px; }
  .footer__tag { margin-top: 12px; max-width: 100%; font-size: 14px; }
  .footer h4 {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .footer ul { gap: 10px; font-size: 14px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 20px;
    font-size: 12px;
  }
  .footer__legal { gap: 20px; }
}

/* Very small screens (iPhone SE and friends) */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(30px, 9vw, 42px); }
  .page-hero__title { font-size: clamp(28px, 9vw, 40px); }
  .btn { padding: 12px 18px; font-size: 14px; }
  .case-row__tags { flex-direction: column; align-items: flex-start; }
  .case-row__head { align-items: flex-start; }
}

/* Landscape phones, keep hero from running tall */
@media (max-width: 899px) and (orientation: landscape) and (max-height: 500px) {
  .hero--split { padding: 32px 0 40px; }
  .page-hero { padding: 32px 0 24px; }
  .hero__photo { width: 140px; height: 140px; }
}
