/* ==========================================================================
   Franklin Logistics — marketing site styles
   Hand-written, framework-free. Edit freely.
   After editing, re-run ../../build.sh (from the repo root) to re-hash this
   file so browsers pick up the change (HTML is served no-cache, this file is
   cached long-term under a hashed filename).
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --brand:          #0B2447;  /* navy */
  --accent:         #F59E0B;  /* amber */
  --accent-strong:  #D97706;  /* darker amber (icons) */
  --rose:           #E11D48;  /* "Ship Now" red */

  /* Text */
  --ink:      #0A0F1C;        /* near-black */
  --gray-800: #1F2937;        /* headings */
  --gray-700: #374151;
  --gray-600: #4B5563;        /* body copy */
  --gray-500: #6B7280;        /* eyebrows / muted */
  --gray-400: #9CA3AF;

  /* Surfaces & lines */
  --white:    #FFFFFF;
  --surface:  #F6F8FB;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --line:     #E2E8F0;        /* primary border */
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;

  /* Type */
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --pad-x: 40px;              /* desktop gutter */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* wins over component display rules (e.g. .form-success) */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; color: var(--gray-800); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Layout helpers ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Eyebrow: short amber dash + tracked uppercase label */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-500);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; flex: none;
}
.eyebrow--amber { color: var(--accent); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 9999px;
  font-size: 14px; font-weight: 600; line-height: 1;
  padding: 12px 20px; white-space: nowrap;
  transition: filter .15s ease, background-color .15s ease, color .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 16px; height: 16px; }
.btn-rose  { background: var(--rose);   color: #fff; }
.btn-rose:hover  { filter: brightness(1.05); }
.btn-amber { background: var(--accent); color: var(--ink); }
.btn-amber:hover { filter: brightness(1.03); }
.btn-outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--gray-300);
}
.btn-outline:hover { background: var(--gray-50); }
.btn-sm { padding: 8px 16px; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 22px; font-size: 15px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

/* Top utility bar */
.utilbar {                          /* hidden on mobile */
  display: none;
  background: rgba(246, 248, 251, 0.6);           /* surface tint */
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.utilbar .container {
  display: flex; align-items: center; justify-content: flex-end; gap: 24px;
  height: 37px;
}
.utilbar a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: rgba(10, 15, 28, 0.7);
}
.utilbar a:hover { color: var(--ink); }
.utilbar .sep { color: var(--gray-300); }
.utilbar .ico { width: 14px; height: 14px; opacity: .8; }

/* Main nav row */
.navrow .container {
  display: flex; align-items: center; gap: 24px;
  height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 36px; height: 36px; }
.brand-name {
  font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-primary { display: none; align-items: center; gap: 4px; margin-inline: auto; }
.nav-primary > a, .nav-primary > .has-menu > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border: 0; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: rgba(10, 15, 28, 0.75);
  background: transparent;
}
.nav-primary > a:hover, .nav-primary > .has-menu > button:hover { color: var(--ink); background: var(--gray-50); }
.nav-cta { display: none; align-items: center; gap: 10px; }

/* Services dropdown */
.has-menu { position: relative; }
.has-menu > button .chev { width: 14px; height: 14px; transition: transform .15s ease; }
.has-menu[data-open="true"] > button .chev { transform: rotate(180deg); }
.menu {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 60;
  width: 320px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: none;
}
.has-menu[data-open="true"] .menu { display: block; }
.menu a {
  display: flex; gap: 12px; padding: 12px; border-radius: 12px;
}
.menu a:hover { background: var(--gray-50); }
.menu .m-ico {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  background: var(--gray-100); color: var(--brand);
  display: grid; place-items: center;
}
.menu .m-ico .ico { width: 18px; height: 18px; }
.menu .m-title { font-weight: 700; font-size: 14px; color: var(--gray-800); font-family: var(--font-head); }
.menu .m-desc  { font-size: 12px; color: var(--gray-500); line-height: 1.4; margin-top: 2px; }
.menu .m-arrow { margin-left: auto; color: var(--gray-400); align-self: center; }

/* Hamburger */
.nav-toggle {
  margin-left: auto;
  width: 44px; height: 44px; border-radius: 9999px;
  border: 1px solid var(--line); background: #fff;
  display: inline-grid; place-items: center; color: var(--ink);
}
.nav-toggle .ico { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
body.nav-open .nav-toggle .ico-open { display: none; }
body.nav-open .nav-toggle .ico-close { display: block; }

/* Mobile drawer */
.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; }
body.nav-open .mobile-nav { display: block; }
.mobile-nav .container { padding-top: 12px; padding-bottom: 20px; }
.mobile-nav a.m-link,
.mobile-nav .m-section {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 4px; font-size: 15px; color: var(--gray-800); font-weight: 500;
}
.mobile-nav .m-section {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-500); font-weight: 600; padding-bottom: 4px;
}
.mobile-nav a.m-link .ico { width: 18px; height: 18px; color: var(--gray-500); }
.mobile-nav .m-sub { padding-left: 4px; }
.mobile-nav .m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  background: #0b1622;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/hero-mountains.png");
  background-size: cover; background-position: center;
}
/* Not used for darkening — the original tints only the centered content
   column (see .hero .container), leaving the full-bleed image bright at the
   left/right margins. Kept hidden so the markup stays stable. */
.hero__overlay { display: none; }
/* Dark tint sits on the centered 1200px column only, so the image shows
   through bright in the side margins (matches the original). */
.hero .container { position: relative; z-index: 2; background: rgba(0, 0, 0, 0.5); }
.hero__inner { padding-top: 56px; padding-bottom: 48px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero__eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 9999px; background: var(--accent);
}
.hero h1 {
  margin-top: 16px;
  font-size: 48px; line-height: 1.0; font-weight: 700; letter-spacing: -0.015em;
  color: #fff; max-width: 14ch;
}
.hero h1 .accent { color: var(--accent); }
.hero__lead {
  margin-top: 18px; max-width: 768px;
  font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, 0.92);
}

/* Hero cards */
.hero__cards {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.hcard {
  display: flex; flex-direction: column; min-height: 190px;
  border: 1px solid rgba(209, 213, 219, 0.35);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, border-color .15s ease;
}
.hcard:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.5); }
.hcard--accent { background: rgba(245, 158, 11, 0.4); }
.hcard__ico {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.2); color: var(--accent-strong);
  display: grid; place-items: center;
}
.hcard__ico .ico { width: 22px; height: 22px; }
.hcard__title { margin-top: auto; padding-top: 16px; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #fff; }
.hcard__desc { margin-top: 4px; font-size: 14px; color: rgba(255, 255, 255, 0.8); }
.hcard__open { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; font-size: 14px; }

/* Stats strip */
.hero__stats {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.stat__label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.stat__value { margin-top: 6px; font-family: var(--font-head); font-size: 24px; font-weight: 700; color: #fff; }

/* ==========================================================================
   Section shared
   ========================================================================== */
.section { padding-block: 72px; background: #fff; }
.section h2 {
  font-size: 32px; line-height: 1.1; font-weight: 700; letter-spacing: -0.015em;
  color: var(--gray-800); margin-top: 14px;
}
.section__lead { margin-top: 14px; font-size: 18px; line-height: 1.55; color: var(--gray-600); max-width: 60ch; }

/* ---- Who we are ---------------------------------------------------------- */
.who__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.who p { margin-top: 20px; font-size: 18px; line-height: 1.55; color: var(--gray-600); }
.who__checks { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.who__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gray-700); }
.who__check .tick {
  flex: none; width: 22px; height: 22px; border-radius: 9999px;
  background: rgba(245, 158, 11, 0.15); color: var(--accent-strong);
  display: grid; place-items: center;
}
.who__check .tick .ico { width: 13px; height: 13px; }
.who__media { position: relative; }
.who__media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.promise {
  position: absolute; right: 16px; bottom: 16px;
  background: var(--brand); color: #fff; border-radius: var(--radius-lg);
  padding: 16px 20px; max-width: 260px; box-shadow: 0 12px 30px -10px rgba(11, 36, 71, 0.5);
}
.promise__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.promise__text { margin-top: 4px; font-family: var(--font-head); font-size: 18px; font-weight: 700; }

/* ---- Offerings ----------------------------------------------------------- */
.offer__grid { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.ocard { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; background: #fff; }
.ocard__ico {
  width: 40px; height: 40px; border-radius: 9999px;
  background: rgba(245, 158, 11, 0.2); color: var(--accent-strong);
  display: grid; place-items: center; margin-bottom: 40px;
}
.ocard__ico .ico { width: 20px; height: 20px; }
.ocard h3 { font-size: 18px; font-weight: 600; color: var(--gray-800); }
.ocard p { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--gray-600); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__card {
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 40px; background: #fff; box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.contact__sub { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--accent); letter-spacing: -0.01em; }
.contact h2 { margin-top: 8px; font-size: 32px; line-height: 1.1; font-weight: 700; letter-spacing: -0.015em; color: var(--gray-800); }
.contact__note { margin-top: 14px; font-size: 16px; color: var(--gray-600); }
.contact__info { margin-top: 24px; display: grid; gap: 14px; }
.contact__row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-800); }
.contact__row .c-ico {
  flex: none; width: 36px; height: 36px; border-radius: 9999px;
  background: var(--gray-100); color: var(--gray-600);
  display: grid; place-items: center;
}
.contact__row .c-ico .ico { width: 16px; height: 16px; }
.contact__row a:hover { color: var(--accent-strong); }

.form__head { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--gray-800); margin-top: 10px; }
form.contact-form { margin-top: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input, .textarea {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 16px;
}
.input { height: 46px; }
.textarea { border-color: var(--gray-300); min-height: 106px; resize: vertical; line-height: 1.5; }
.input::placeholder, .textarea::placeholder { color: var(--gray-400); }
.input:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15); }
/* Honeypot — kept in the DOM but off-screen so bots fill it and people don't. */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Validation + submission feedback */
.field-error { margin-top: 6px; font-size: 13px; color: var(--red-700, #B91C1C); }
.input.has-error, .textarea.has-error { border-color: #B91C1C; }
.input.has-error:focus, .textarea.has-error:focus { box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.15); }
.form-status { margin-top: 14px; font-size: 14px; color: #B91C1C; }
.form-success { display: flex; gap: 12px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.form-success .ico { width: 22px; height: 22px; color: var(--accent-strong); flex: none; margin-top: 2px; }
.form-success__title { font-family: var(--font-head); font-weight: 700; color: var(--gray-800); }
.form-success__note { margin-top: 4px; font-size: 14px; color: var(--gray-600); }
.btn[disabled] { opacity: 0.7; cursor: default; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #fff; border-top: 1px solid var(--gray-200); }
.footer__main { padding-block: 56px; display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer__brand .brand-name { font-size: 20px; }
.footer__blurb { margin-top: 14px; font-size: 14px; color: var(--gray-600); max-width: 42ch; }
.footer__socials { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 9999px; border: 1px solid var(--gray-200);
  display: grid; place-items: center; color: var(--gray-600);
}
.footer__socials a:hover { color: var(--brand); border-color: var(--gray-300); background: var(--gray-50); }
.footer__socials .ico { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); font-weight: 600; margin-bottom: 14px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 14px; color: var(--gray-600); }
.footer__col a:hover { color: var(--brand); }
.footer__reach li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); margin-bottom: 10px; }
.footer__reach .ico { width: 16px; height: 16px; color: var(--accent); flex: none; }
.footer__bar {
  border-top: 1px solid var(--gray-200);
  padding-block: 20px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
}
.footer__bar p { font-size: 13px; color: var(--gray-500); }
.footer__bar nav { display: flex; gap: 20px; }
.footer__bar a { font-size: 13px; color: var(--gray-500); }
.footer__bar a:hover { color: var(--brand); }

/* ==========================================================================
   Chat widget (visual-only placeholder — not wired to any backend)
   ========================================================================== */
.chat-fab {
  /* Hidden for launch — no chat backend yet. To re-enable a real widget
     later, change `display: none` back to `inline-flex`. */
  display: none;
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  border: 0; border-radius: 9999px; padding: 12px 18px;
  font-size: 14px; font-weight: 600; box-shadow: 0 10px 25px -8px rgba(11, 36, 71, 0.5);
}
.chat-fab .ico { width: 18px; height: 18px; }

/* ==========================================================================
   Content pages — page hero (accessibility + service detail)
   ========================================================================== */
.page-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-block: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.page-hero__head { max-width: 720px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: 40px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; color: var(--gray-800); }
.page-hero p { margin-top: 12px; font-size: 18px; color: var(--gray-600); }
.page-back {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  border-radius: 9999px; padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--gray-800);
  background: #fff; box-shadow: inset 0 0 0 1px var(--gray-300);
}
.page-back:hover { background: var(--gray-50); }
.page-back .ico { width: 16px; height: 16px; }

/* Prose (accessibility statement) */
.prose { max-width: 860px; padding-block: 64px; }
.prose h2 { font-size: 22px; font-weight: 700; color: var(--gray-800); margin-top: 40px; margin-bottom: 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 16px; line-height: 1.7; color: var(--gray-600); }
.prose ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; color: var(--gray-600); }
.prose li { margin-bottom: 8px; font-size: 16px; line-height: 1.7; }
.prose a { color: var(--accent-strong); text-decoration: underline; }
.prose strong { color: var(--gray-800); font-weight: 600; }
.prose .callout {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; margin: 8px 0 24px;
}
.prose .callout p { margin: 0; }
.prose .callout p + p { margin-top: 6px; font-size: 14px; }
/* Editorial note for the client — not part of the published statement. */
.prose .todo {
  background: #FFF7ED; border: 1px dashed var(--accent); border-radius: var(--radius);
  padding: 14px 18px; margin: 8px 0 24px; font-size: 14px; line-height: 1.6; color: #92400E;
}
.prose .todo strong { color: #92400E; }

/* ==========================================================================
   Service detail pages
   ========================================================================== */
.svc { padding-block: 56px; }
.svc-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.svc-main { display: grid; gap: 24px; }
.svc-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; background: #fff; }
.svc-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-800); }
.svc-card > p { margin-top: 8px; font-size: 15px; color: var(--gray-600); }

.svc-window { display: flex; gap: 16px; align-items: center; }
.svc-window__ico { flex: none; width: 48px; height: 48px; border-radius: var(--radius); background: var(--brand); color: #fff; display: grid; place-items: center; }
.svc-window__ico .ico { width: 22px; height: 22px; }
.svc-window__label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.svc-window__time { margin-top: 4px; font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--gray-800); }
.svc-window__cut { margin-top: 2px; font-size: 13px; color: var(--gray-500); }

.svc-list { margin-top: 16px; display: grid; gap: 12px; }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--gray-700); }
.svc-list .tick { flex: none; width: 22px; height: 22px; border-radius: 9999px; background: rgba(245,158,11,.15); color: var(--accent-strong); display: grid; place-items: center; margin-top: 1px; }
.svc-list .tick .ico { width: 13px; height: 13px; }

.pricing-grid { margin-top: 16px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.pricing-item { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; background: #fff; }
.pricing-item__ico { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--gray-100); color: var(--gray-600); display: grid; place-items: center; }
.pricing-item__ico .ico { width: 18px; height: 18px; }
.pricing-item .label { font-size: 15px; font-weight: 700; color: var(--gray-800); }
.pricing-notes { margin-top: 16px; display: grid; gap: 6px; }
.pricing-notes p { font-size: 14px; color: var(--gray-500); }

.svc-side { display: grid; gap: 16px; }
.svc-cta-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; background: #fff; }
.svc-cta-navy { background: var(--brand); color: #fff; border-radius: var(--radius); padding: 20px; }
.svc-cta-navy .lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.svc-cta-navy h2 { margin-top: 8px; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff; }
.svc-cta-navy p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.85); }
.svc-cta-card .btn { width: 100%; margin-top: 12px; }
.svc-other { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; background: #fff; }
.svc-other .lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.svc-other__link { margin-top: 12px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.svc-other__link:hover { background: var(--gray-50); }
.svc-other__link .o-ico { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--gray-100); color: var(--brand); display: grid; place-items: center; }
.svc-other__link .o-name { font-weight: 700; font-size: 14px; color: var(--gray-800); font-family: var(--font-head); line-height: 1.25; }
.svc-other__link .o-arrow { margin-left: auto; color: var(--gray-400); flex: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 700px) {
  :root { --pad-x: 20px; }
  .hero h1 { font-size: 30px; }
  .hero__lead { font-size: 16px; }
  .section h2, .contact h2 { font-size: 26px; }
  .page-hero h1 { font-size: 30px; }
  .section { padding-block: 56px; }
  .contact__card { padding: 24px; }
}

/* sm: 640 — 2-up grids */
@media (min-width: 640px) {
  .who__checks { grid-template-columns: 1fr 1fr; }
  .offer__grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* lg: 1024 — desktop nav + multi-column layouts */
@media (min-width: 1024px) {
  .utilbar { display: block; }
  .nav-primary { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero__inner { padding-top: 40px; padding-bottom: 80px; }
  .hero__cards { grid-template-columns: repeat(3, 1fr); margin-top: 160px; }
  .hero__stats { margin-top: 104px; }

  .section { padding-block: 112px; }
  .who__grid { grid-template-columns: 1fr 1fr; }
  .offer__grid { grid-template-columns: repeat(4, 1fr); }
  .contact__card { grid-template-columns: 1fr 1fr; gap: 56px; }
  .footer__main { grid-template-columns: 2fr 1fr 1.2fr; }

  .svc { padding-block: 72px; }
  .svc-layout { grid-template-columns: 2fr 1fr; gap: 32px; }
  .svc-side { position: sticky; top: 132px; }
}
