/* ============================================================
   Sendorah Xpress Ltd — marketing site
   Pure static CSS, no build step. Brand: deep navy + signal red.
   ============================================================ */

:root {
  --navy: hsl(219 64% 22%);
  --navy-800: hsl(219 60% 16%);
  --navy-900: hsl(220 58% 11%);
  --navy-soft: hsl(219 45% 33%);
  --red: hsl(356 84% 48%);
  --red-hover: hsl(356 84% 42%);
  --ink: hsl(220 30% 14%);
  --body: hsl(220 14% 32%);
  --muted: hsl(220 10% 46%);
  --line: hsl(220 20% 90%);
  --bg: hsl(210 30% 99%);
  --bg-soft: hsl(216 33% 96.5%);
  --card: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 1px 2px hsl(220 40% 20% / .06), 0 1px 1px hsl(220 40% 20% / .04);
  --shadow-md: 0 1px 2px hsl(220 40% 20% / .05), 0 6px 16px -6px hsl(220 40% 20% / .12);
  --shadow-lg: 0 2px 4px hsl(220 40% 20% / .05), 0 18px 40px -16px hsl(220 45% 20% / .22);
  --wrap: 72rem;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; text-wrap: balance; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }

.section { padding-block: 4.5rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.section-soft { background: var(--bg-soft); }

/* Section headings */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: .9rem;
}
.kicker::before { content: ""; width: 1.6rem; height: 2px; background: var(--red); border-radius: 1px; }
.section-head { max-width: 44rem; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.5rem); }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3rem; padding: .8rem 1.6rem;
  border-radius: 999px; border: 0; cursor: pointer;
  font: inherit; font-size: .98rem; font-weight: 700; text-decoration: none !important;
  transition-property: background-color, color, box-shadow, scale;
  transition-duration: .18s; transition-timing-function: cubic-bezier(.2, 0, 0, 1);
}
.btn:active { scale: .96; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 1px 2px hsl(356 84% 30% / .3), 0 8px 20px -8px hsl(356 84% 48% / .55); }
.btn-red:hover { background: var(--red-hover); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 1px 2px hsl(219 64% 12% / .35), 0 8px 20px -8px hsl(219 64% 22% / .5); }
.btn-navy:hover { background: var(--navy-soft); }
.btn-ghost { background: hsl(0 0% 100% / .1); color: #fff; box-shadow: inset 0 0 0 1.5px hsl(0 0% 100% / .35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: hsl(0 0% 100% / .18); }
.btn-line { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line), var(--shadow-sm); }
.btn-line:hover { box-shadow: inset 0 0 0 1.5px hsl(219 30% 75%), var(--shadow-md); }
.btn-whatsapp { background: #22c05c; color: #fff; box-shadow: 0 1px 2px hsl(145 70% 20% / .3), 0 8px 20px -8px hsl(145 70% 40% / .5); }
.btn-whatsapp:hover { background: #1caa50; }

:is(a, button, summary):focus-visible {
  outline: 3px solid hsl(219 80% 55% / .6); outline-offset: 2px; border-radius: 8px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: hsl(0 0% 100% / .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav-bar { display: flex; align-items: center; gap: 1rem; min-height: 4.5rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none !important; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand b { color: var(--navy); font-size: 1.08rem; letter-spacing: -.01em; line-height: 1.1; }
.brand small { display: block; color: var(--red); font-size: .66rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }

.nav-links { display: none; align-items: center; gap: .25rem; margin-left: auto; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: .55rem .85rem; border-radius: 999px; text-decoration: none !important;
  transition: background-color .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-soft); }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-cta { display: none; align-items: center; gap: .6rem; margin-left: .5rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .92rem; color: var(--navy); text-decoration: none !important; padding: .55rem .6rem; }
.nav-phone svg { width: 1em; height: 1em; }

.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; color: var(--navy);
}
.nav-toggle svg { width: 1.35rem; height: 1.35rem; }
.nav-toggle .icon-close, .nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

.mobile-menu { display: none; border-top: 1px solid var(--line); padding: .75rem 1.25rem 1.25rem; background: #fff; }
.nav-open .mobile-menu { display: block; }
.mobile-menu a:not(.btn) { display: block; padding: .8rem .5rem; font-weight: 700; color: var(--ink); text-decoration: none !important; border-radius: 10px; }
.mobile-menu a:not(.btn):hover { background: var(--bg-soft); }
.mobile-menu .menu-cta { display: grid; gap: .6rem; margin-top: .75rem; }

@media (min-width: 1100px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  /* Port photo faded beneath the brand navy/red wash */
  background:
    radial-gradient(52rem 30rem at 82% -12%, hsl(356 84% 48% / .26), transparent 60%),
    radial-gradient(40rem 26rem at -10% 110%, hsl(219 80% 45% / .3), transparent 60%),
    linear-gradient(160deg, hsl(219 64% 22% / .88) 0%, hsl(219 60% 16% / .82) 55%, hsl(220 58% 11% / .94) 100%),
    url("../img/hero-bg.jpg") center / cover no-repeat,
    var(--navy-900);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(hsl(0 0% 100% / .07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
}
.hero .wrap { position: relative; padding-block: 5rem 4rem; }
@media (min-width: 768px) { .hero .wrap { padding-block: 7rem 5.5rem; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: hsl(0 0% 100% / .1); border: 1px solid hsl(0 0% 100% / .22);
  padding: .42rem 1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  margin-bottom: 1.4rem; backdrop-filter: blur(6px);
}
.hero-badge svg { width: 1em; height: 1em; color: hsl(356 90% 68%); }

.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 1.4rem + 4.5vw, 4rem);
  max-width: 13ch; margin-bottom: .4em;
}
.hero h1 em { font-style: normal; color: hsl(356 92% 66%); }
.hero-sub { font-size: clamp(1.05rem, 1rem + .5vw, 1.25rem); color: hsl(219 40% 86%); max-width: 34rem; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 3.25rem; }

/* Route cards in hero */
.routes { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .routes { grid-template-columns: 1fr 1fr; } }
.route-card {
  background: hsl(0 0% 100% / .07);
  border: 1px solid hsl(0 0% 100% / .16);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.route-title { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.02rem; color: #fff; margin-bottom: .8rem; }
.route-title .arrow { color: hsl(356 92% 66%); font-weight: 800; }
.route-flag { font-size: 1.15rem; line-height: 1; }
.route-rows { display: grid; gap: .45rem; }
.route-row { display: flex; align-items: center; gap: .6rem; font-size: .93rem; color: hsl(219 40% 88%); }
.route-row svg { width: 1.05rem; height: 1.05rem; flex: none; color: hsl(356 92% 70%); }
.route-row b { color: #fff; font-weight: 700; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) and (max-width: 979px) { .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(220 25% 92%);
  transition: box-shadow .22s cubic-bezier(.2,0,0,1), translate .22s cubic-bezier(.2,0,0,1);
}
.card:hover { box-shadow: var(--shadow-lg); translate: 0 -3px; }
.card h3 { font-size: 1.14rem; margin-bottom: .45rem; }
.card p { font-size: .96rem; color: var(--muted); margin: 0 0 1em; }
.card p:last-child { margin-bottom: 0; }

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.9rem; height: 2.9rem; border-radius: 12px; margin-bottom: 1rem;
  background: linear-gradient(140deg, hsl(219 64% 22% / .08), hsl(356 84% 48% / .1));
  color: var(--navy);
}
.icon-chip svg { width: 1.4rem; height: 1.4rem; }
.card:nth-child(even) .icon-chip { color: var(--red); }

/* Service cards with an image header */
.card.has-media { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.card-media {
  aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(150deg, var(--bg-soft), #fff);
  border-bottom: 1px solid hsl(220 25% 93%);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: scale .4s cubic-bezier(.2, 0, 0, 1);
}
.card.has-media:hover .card-media img { scale: 1.04; }
.card-media.contain img { object-fit: contain; padding: .9rem; }
.card-media.brand {
  background:
    radial-gradient(120% 90% at 75% -10%, hsl(356 84% 48% / .28), transparent 55%),
    linear-gradient(150deg, hsl(219 64% 26%), hsl(220 58% 12%));
  border-bottom: none;
}
.card-body { padding: 0 1.6rem 1.6rem; }
.card.has-media .icon-chip {
  position: relative; z-index: 1; margin-top: -1.45rem;
  background: linear-gradient(140deg, hsl(219 64% 22% / .08), hsl(356 84% 48% / .1)), #fff;
  box-shadow: 0 0 0 4px var(--card), var(--shadow-sm);
}

/* Why-us variant: tighter */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .icon-chip { margin: 0; flex: none; width: 2.6rem; height: 2.6rem; }
.feature h3 { font-size: 1.05rem; margin-bottom: .3rem; }

/* ---------- Rates ---------- */
.rate-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .rate-grid { grid-template-columns: 1fr 1fr; } }

.rate-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.rate-head {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.15rem 1.4rem;
  background: linear-gradient(140deg, var(--navy), var(--navy-800));
  color: #fff;
}
.rate-head.red { background: linear-gradient(140deg, hsl(356 70% 40%), hsl(356 84% 30%)); }
.rate-head svg { width: 1.5rem; height: 1.5rem; flex: none; opacity: .9; }
.rate-head h3 { color: #fff; font-size: 1.08rem; margin: 0; }
.rate-head small { display: block; font-weight: 600; font-size: .78rem; color: hsl(0 0% 100% / .72); }

.rate-scroll { max-height: 21.5rem; overflow-y: auto; }
.rate-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.rate-table th {
  position: sticky; top: 0; z-index: 1;
  text-align: left; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: var(--bg-soft);
  padding: .6rem 1.4rem; border-bottom: 1px solid var(--line);
}
.rate-table th:last-child, .rate-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.rate-table td { padding: .58rem 1.4rem; border-bottom: 1px solid hsl(220 20% 94%); color: var(--ink); }
.rate-table tbody tr:last-child td { border-bottom: 0; }
.rate-table tbody tr:hover td { background: hsl(219 60% 97%); }
.rate-table td:last-child { font-weight: 700; }

.rate-note { padding: .9rem 1.4rem 1.1rem; font-size: .84rem; color: var(--muted); border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: auto; }
.rate-note p { margin: 0; }

.rates-disclaimer { margin-top: 1.75rem; font-size: .88rem; color: var(--muted); max-width: 52rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 50rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq {
  background: var(--card); border: 1px solid hsl(220 25% 92%);
  border-radius: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.05rem 1.3rem; cursor: pointer; list-style: none;
  font-weight: 700; color: var(--ink); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { margin-left: auto; flex: none; width: 1.15rem; height: 1.15rem; color: var(--red); transition: rotate .2s cubic-bezier(.2,0,0,1); }
.faq[open] summary .chev { rotate: 45deg; }
.faq-body { padding: 0 1.3rem 1.2rem; font-size: .96rem; color: var(--body); }
.faq-body :is(ul, ol) { padding-left: 1.2rem; margin: .4em 0 .8em; }
.faq-body li { margin-bottom: .25em; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding-block: .9rem; }
.contact-item + .contact-item { border-top: 1px solid var(--line); }
.contact-item .icon-chip { margin: 0; flex: none; }
.contact-item b { display: block; color: var(--ink); font-size: .98rem; }
.contact-item a, .contact-item span { font-size: .96rem; color: var(--body); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: .55rem 0; border-bottom: 1px solid hsl(220 20% 93%); color: var(--body); }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:first-child { font-weight: 700; color: var(--ink); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table .closed { color: var(--red); font-weight: 700; }

.whatsapp-card {
  background: linear-gradient(150deg, var(--navy), var(--navy-900));
  color: #fff; border: 0;
}
.whatsapp-card h3 { color: #fff; }
.whatsapp-card p { color: hsl(219 40% 84%); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background:
    radial-gradient(40rem 20rem at 50% 130%, hsl(356 84% 48% / .4), transparent 65%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
  border-radius: calc(var(--radius) + 8px);
  padding: 3.5rem 1.5rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.3rem); }
.cta-band p { color: hsl(219 40% 84%); max-width: 34rem; margin-inline: auto; }
.cta-band .btn { margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: hsl(219 30% 78%); font-size: .94rem; }
.footer-grid { display: grid; gap: 2.25rem; padding-block: 3.5rem 2.5rem; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: hsl(219 30% 80%); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; margin-bottom: .8rem; filter: drop-shadow(0 0 1px hsl(0 0% 100% / .4)); }
.footer-links { display: grid; gap: .5rem; }
.footer-contact { display: grid; gap: .65rem; }
.footer-contact div { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 1.05rem; height: 1.05rem; flex: none; margin-top: .2rem; color: hsl(356 92% 70%); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center;
  padding-block: 1.4rem; border-top: 1px solid hsl(219 40% 25%); font-size: .86rem;
}
.footer-bottom a { font-weight: 600; }

/* ---------- Reveal on scroll ----------
   Hidden state only applies once JS has stamped .has-js on <html>,
   so content is never invisible without JavaScript. */
html.has-js .reveal { opacity: 0; translate: 0 18px; transition: opacity .55s cubic-bezier(.2,0,0,1), translate .55s cubic-bezier(.2,0,0,1); }
html.has-js .reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { html.has-js .reveal { opacity: 1; translate: none; } }

/* ---------- Page hero (subpages e.g. rates) ---------- */
.page-hero { color: #fff; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(38rem 20rem at 85% -30%, hsl(356 84% 48% / .3), transparent 60%);
}
.page-hero .wrap { position: relative; padding-block: 4rem 3.25rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.8vw, 2.9rem); }
.page-hero p { color: hsl(219 40% 84%); max-width: 40rem; }

/* ============================================================
   Additions for the expanded site (client brief, July 2026)
   ============================================================ */

.section-tight { padding-block: 3rem; }
@media (min-width: 768px) { .section-tight { padding-block: 3.75rem; } }

/* ---------- Trusted brand chips ---------- */
.brand-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
  max-width: 60rem; margin-inline: auto;
}
.brand-chip {
  --bc: var(--navy);
  display: inline-flex; align-items: center;
  padding: .62rem 1.15rem; border-radius: 999px;
  background: var(--card); color: var(--bc);
  font-weight: 800; font-size: .97rem; letter-spacing: -.015em;
  border: 1px solid hsl(220 25% 91%);
  box-shadow: var(--shadow-sm);
  transition-property: box-shadow, translate, border-color;
  transition-duration: .18s; transition-timing-function: cubic-bezier(.2,0,0,1);
}
.brand-chip:hover { box-shadow: var(--shadow-md); translate: 0 -2px; border-color: color-mix(in srgb, var(--bc) 35%, hsl(220 25% 91%)); }
.brand-chip.cn { border-style: dashed; }
.brand-note { margin-top: 1.5rem; text-align: center; font-size: .9rem; color: var(--muted); }
.cn-key {
  display: inline-block; width: 1.6rem; height: 1rem; vertical-align: -2px;
  border: 1px dashed hsl(220 20% 65%); border-radius: 999px;
}
@media (prefers-color-scheme: dark) { /* chips stay light-on-white by design */ }

/* ---------- Split layout ---------- */
.split { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.split .kicker { margin-top: 0; }
.split h2 { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem); }
.stack { display: grid; gap: 1.5rem; align-content: start; }

.commitment { background: linear-gradient(150deg, var(--navy), var(--navy-900)); color: hsl(219 40% 86%); border: 0; }
.commitment h3 { color: #fff; font-size: 1.25rem; }
.commitment .sig { margin: 1.4rem 0 0; padding-top: 1.1rem; border-top: 1px solid hsl(219 40% 30%); font-weight: 800; color: #fff; }
.commitment .sig span { font-weight: 600; color: hsl(356 92% 70%); font-size: .92rem; }

/* ---------- Tick lists ---------- */
.ticks { list-style: none; padding: 0; margin: .6em 0 1em; display: grid; gap: .4rem; }
.ticks li { position: relative; padding-left: 1.6rem; font-size: .96rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: .95rem; height: .5rem; border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  rotate: -45deg; border-radius: 1px;
}
@media (min-width: 560px) { .ticks.cols { grid-template-columns: 1fr 1fr; } }

/* ---------- Services list (alternating) ---------- */
.svc-list { display: grid; gap: 3rem; }
@media (min-width: 900px) { .svc-list { gap: 4rem; } }
.svc { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 900px) {
  .svc { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .svc:nth-child(even) .svc-media { order: 2; }
}
.svc-copy h2 { font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.8rem); }
.svc-copy h3 { font-size: 1.08rem; margin-top: 1.3rem; }
.svc-media {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid hsl(220 25% 92%);
  aspect-ratio: 4 / 3; background: var(--bg-soft);
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-media.contain img { object-fit: contain; padding: 1.2rem; }
.svc-media.brand {
  background:
    radial-gradient(120% 90% at 75% -10%, hsl(356 84% 48% / .28), transparent 55%),
    linear-gradient(150deg, hsl(219 64% 26%), hsl(220 58% 12%));
  border: 0;
}
.svc-media.icon-only { display: grid; place-items: center; background: linear-gradient(150deg, var(--bg-soft), #fff); }
.big-icon { color: var(--navy); opacity: .34; }
.big-icon svg { width: 7rem; height: 7rem; }

.mini-grid { display: grid; gap: 1rem; margin: 1.2rem 0; }
@media (min-width: 520px) { .mini-grid { grid-template-columns: 1fr 1fr; } }
.mini-card { background: var(--bg-soft); border-radius: 12px; padding: 1.1rem 1.2rem; border: 1px solid hsl(220 25% 92%); }
.mini-card h3 { margin-top: 0; font-size: 1rem; }
.mini-card .ticks { margin-bottom: 0; }

/* ---------- Price cards ---------- */
.grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.price-card { display: flex; flex-direction: column; position: relative; }
.price-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.price-meta { font-size: .88rem; color: var(--muted); margin-bottom: .8rem; }
.price {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2rem); font-weight: 800;
  color: var(--navy); letter-spacing: -.02em; margin: auto 0 0;
  font-variant-numeric: tabular-nums;
}
.price span { font-size: .82rem; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.price-note { font-size: .82rem; color: var(--muted); margin: .7rem 0 0; }
.price-tag {
  /* in normal flow above the title so long labels can never collide with it */
  align-self: flex-start; margin-bottom: .6rem;
  background: hsl(219 64% 22% / .08); color: var(--navy);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 999px;
}
.price-tag.red { background: hsl(356 84% 48% / .1); color: var(--red); }
.formula {
  background: var(--bg-soft); border: 1px solid hsl(220 25% 92%); border-radius: 10px;
  padding: .7rem .9rem; font-size: .92rem; font-variant-numeric: tabular-nums; color: var(--ink);
}

/* ---------- Steps ---------- */
.step { padding-top: 3.9rem; }
.step-num {
  position: absolute; top: 1.15rem; left: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 999px;
  background: linear-gradient(140deg, var(--navy), var(--navy-800)); color: #fff;
  font-weight: 800; font-size: .92rem;
}
.steps .card { position: relative; }
.steps .card h3 { font-size: 1.02rem; }

/* ---------- Note / warning cards ---------- */
.note-card, .warn-card { display: flex; gap: 1.2rem; align-items: flex-start; }
.note-card .icon-chip, .warn-card .icon-chip { margin: 0; flex: none; }
.note-card h3, .warn-card h3 { margin-top: 0; }
.note-card > div > :last-child, .warn-card > div > :last-child { margin-bottom: 0; }
.warn-card { border-left: 4px solid var(--red); }
.warn-card .icon-chip { color: var(--red); }
.muted-note { font-size: .88rem; color: var(--muted); }

/* ---------- Resource cards ---------- */
.resource { display: block; text-decoration: none !important; color: inherit; }
.resource h3 { font-size: 1.12rem; margin-bottom: .15rem; }
.res-sub { font-size: .84rem; font-weight: 700; color: var(--red); margin-bottom: .7rem; }
.resource p { color: var(--muted); font-size: .95rem; }
.res-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 800; font-size: .82rem; letter-spacing: .06em; color: var(--navy);
}
.res-link svg { width: .95em; height: .95em; transition: translate .18s cubic-bezier(.2,0,0,1); }
.resource:hover .res-link svg { translate: 3px 0; }

/* ---------- Mission / vision / team ---------- */
.mv-card h2 { font-size: 1.4rem; }
.team-card h3 { font-size: 1.05rem; }
.team-card .ticks { margin-bottom: .8em; }

/* Six nav items need more room, so the desktop nav now starts at 1100px
   (set on the original rule above — layering a second breakpoint here would
   lose to its `display: none !important` and leave 920-1099px with no nav). */
.nav-links a { padding-inline: .7rem; font-size: .93rem; }

/* Specificity fixes: `.card p` (0,1,1) was beating these single-class rules,
   flattening prices and meta text back to body size inside cards. */
.card .price { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2rem); color: var(--navy); }
.card .price-meta { font-size: .88rem; }
.card .price-note { font-size: .82rem; }
.card .muted-note { font-size: .88rem; }
.card .res-sub { font-size: .84rem; color: var(--red); }
.card .formula { font-size: .92rem; color: var(--ink); }
.card .ticks li { font-size: .96rem; color: var(--body); }
