/* ==========================================================================
   Winnilinks Logistics Limited — Design System
   Primary   #e76243  (logo orange)
   Secondary #393769  (logo navy)
   ========================================================================== */

:root {
  --primary: #e76243;
  --primary-dark: #cf4a2c;
  --primary-light: #f08a72;
  --primary-tint: #fdf1ee;
  --secondary: #393769;
  --secondary-dark: #2a2850;
  --secondary-light: #55538a;
  --secondary-tint: #eeeef5;

  --ink: #1c1b2e;
  --body: #55556b;
  --muted: #85859a;
  --line: #e6e6ef;
  --bg: #ffffff;
  --bg-soft: #f7f7fb;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(28, 27, 46, .06), 0 2px 8px rgba(28, 27, 46, .04);
  --shadow: 0 4px 12px rgba(28, 27, 46, .06), 0 12px 32px rgba(28, 27, 46, .07);
  --shadow-lg: 0 8px 24px rgba(28, 27, 46, .08), 0 24px 64px rgba(28, 27, 46, .12);
  --shadow-primary: 0 8px 24px rgba(231, 98, 67, .28);

  --container: 1200px;
  --gutter: 24px;
  --header-h: 84px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --t: .35s var(--ease);

  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--secondary); }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.25rem, 1.35rem + 3.6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 1.25rem + 2.2vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); }
h4 { font-size: 1.18rem; line-height: 1.3; }
h5 { font-size: 1.02rem; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
strong, b { color: var(--ink); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; }
.eyebrow--light { color: var(--primary-light); }
.eyebrow--light::before { background: var(--primary-light); }
.eyebrow--center { justify-content: center; }

.lead { font-size: 1.1rem; line-height: 1.8; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 52ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--secondary); color: rgba(255, 255, 255, .82); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 4.5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--body); font-size: 1.06rem; margin-top: 14px; }
.section--navy .section-head p { color: rgba(255, 255, 255, .78); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border: 2px solid transparent; border-radius: 999px;
  font-size: .95rem; font-weight: 700; letter-spacing: .01em; line-height: 1;
  cursor: pointer; white-space: nowrap; text-align: center;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; box-shadow: 0 10px 28px rgba(57, 55, 105, .32); transform: translateY(-2px); }

.btn--secondary { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.btn--secondary:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-primary); }

.btn--ghost { background: transparent; border-color: var(--secondary); color: var(--secondary); }
.btn--ghost:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; border-color: #fff; color: var(--secondary); }
.btn--light:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

.btn--outline-light { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn--outline-light:hover { background: #fff; border-color: #fff; color: var(--secondary); transform: translateY(-2px); }

.btn--sm { padding: 11px 22px; font-size: .87rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .93rem; color: var(--primary); }
.link-arrow svg { width: 17px; height: 17px; transition: transform var(--t); }
.link-arrow:hover { color: var(--secondary); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), background var(--t);
}
.header.is-stuck { box-shadow: 0 4px 24px rgba(28, 27, 46, .09); }
.header__inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; flex: none; margin-right: auto; }
.brand img { width: 210px; }

.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 15px; border-radius: 10px;
  font-size: .93rem; font-weight: 600; color: var(--secondary);
  transition: color var(--t), background var(--t);
}
.nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after, .nav__item.is-current > .nav__link::after { transform: scaleX(1); }
.nav__item.is-current > .nav__link { color: var(--primary); }
.nav__link .caret { width: 12px; height: 12px; transition: transform var(--t); }

.nav__item--has-children { position: relative; }
.nav__item--has-children:hover .caret, .nav__item--has-children.is-open .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 320px; padding: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item--has-children:hover .dropdown,
.nav__item--has-children:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px;
  font-size: .9rem; font-weight: 600; color: var(--secondary); line-height: 1.35;
  transition: background var(--t), color var(--t);
}
.dropdown a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex: none; opacity: .35; transition: opacity var(--t), transform var(--t); }
.dropdown a:hover { background: var(--primary-tint); color: var(--primary); }
.dropdown a:hover .dot { opacity: 1; transform: scale(1.35); }
.dropdown a.is-current { background: var(--primary-tint); color: var(--primary); }
.dropdown a.is-current .dot { opacity: 1; }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; cursor: pointer; place-items: center; flex: none;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--secondary); border-radius: 2px; position: relative; transition: background var(--t); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--secondary);
  border-radius: 2px; transition: transform var(--t), top var(--t);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-active span { background: transparent; }
.burger.is-active span::before { top: 0; transform: rotate(45deg); }
.burger.is-active span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 1000; visibility: hidden;
}
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(28, 27, 46, .55); opacity: 0; transition: opacity var(--t); backdrop-filter: blur(2px); }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; width: min(370px, 88vw); height: 100%;
  background: #fff; box-shadow: var(--shadow-lg); overflow-y: auto;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__head img { width: 165px; }
.drawer__close { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.drawer__close svg { width: 18px; height: 18px; color: var(--secondary); }
.drawer__body { padding: 14px 20px 24px; flex: 1; }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 4px; border-bottom: 1px solid var(--line);
  font-size: 1rem; font-weight: 700; color: var(--secondary); width: 100%;
  background: none; border-left: 0; border-right: 0; border-top: 0; cursor: pointer; text-align: left;
}
.drawer__link:hover, .drawer__link.is-current { color: var(--primary); }
.drawer__link svg { width: 14px; height: 14px; transition: transform var(--t); }
.drawer__link[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.drawer__sub.is-open { max-height: 520px; }
.drawer__sub a {
  display: block; padding: 11px 4px 11px 18px; font-size: .92rem; font-weight: 600;
  color: var(--body); border-left: 2px solid var(--line); margin-left: 4px;
}
.drawer__sub a:hover, .drawer__sub a.is-current { color: var(--primary); border-left-color: var(--primary); }
.drawer__foot { padding: 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.drawer__contact { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--body); }
.drawer__contact svg { width: 16px; height: 16px; color: var(--primary); flex: none; }

/* ---------- Hero slider ---------- */
.hero { position: relative; min-height: clamp(560px, 82vh, 820px); overflow: hidden; background: var(--secondary); isolation: isolate; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s var(--ease), visibility .9s; }
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 9s linear; }
.hero__slide.is-active .hero__media img { transform: scale(1); }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(41, 40, 76, .93) 0%, rgba(57, 55, 105, .84) 42%, rgba(57, 55, 105, .42) 78%, rgba(57, 55, 105, .3) 100%);
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: clamp(560px, 82vh, 820px); padding-block: 96px 130px; }
.hero__copy { max-width: 700px; color: rgba(255, 255, 255, .88); }
.hero__slide:not(.is-active) .hero__copy > * { opacity: 0; transform: translateY(26px); }
.hero__copy > * { opacity: 1; transform: translateY(0); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.hero__slide.is-active .hero__copy > *:nth-child(1) { transition-delay: .18s; }
.hero__slide.is-active .hero__copy > *:nth-child(2) { transition-delay: .3s; }
.hero__slide.is-active .hero__copy > *:nth-child(3) { transition-delay: .42s; }
.hero__slide.is-active .hero__copy > *:nth-child(4) { transition-delay: .54s; }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding: 8px 18px 8px 12px; border-radius: 999px;
  background: rgba(231, 98, 67, .18); border: 1px solid rgba(231, 98, 67, .45);
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #ffd9cf;
}
.hero__kicker .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(231, 98, 67, .3); flex: none; }
.hero h1, .hero .hero__title {
  color: #fff; margin-bottom: 20px; font-weight: 800; line-height: 1.15;
  letter-spacing: -.022em; font-size: clamp(2.25rem, 1.35rem + 3.6vw, 4rem);
}
.hero h1 em, .hero .hero__title em { font-style: normal; color: var(--primary-light); }
.hero__text { font-size: clamp(1rem, .95rem + .3vw, 1.18rem); line-height: 1.75; max-width: 60ch; margin-bottom: 34px; color: rgba(255, 255, 255, .85); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__nav { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding-bottom: 26px; }
.hero__dots { display: flex; align-items: center; gap: 12px; }
.hero__dot {
  position: relative; width: 54px; height: 32px; border: 0; padding: 0; cursor: pointer;
  background: transparent; border-radius: 4px;
}
.hero__dot::before {
  content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 4px;
  background: rgba(255, 255, 255, .28); border-radius: 4px;
}
.hero__dot::after {
  content: ""; position: absolute; left: 0; top: 14px; height: 4px; width: 0;
  background: var(--primary); border-radius: 4px;
}
.hero__dot.is-active::after { width: 100%; transition: width 7s linear; }
.hero__arrows { display: flex; gap: 10px; }
.hero__arrow {
  width: 46px; height: 46px; display: grid; place-items: center; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%;
  background: rgba(255, 255, 255, .08); color: #fff; transition: background var(--t), border-color var(--t), transform var(--t);
}
.hero__arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.hero__arrow svg { width: 18px; height: 18px; }
.hero__navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* ---------- Stat strip ---------- */
.stats { position: relative; z-index: 5; margin-top: -68px; }
.stats__card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat { padding: 34px 28px; border-right: 1px solid var(--line); transition: background var(--t); }
.stat:last-child { border-right: 0; }
.stat:hover { background: var(--primary-tint); }
.stat__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 16px;
  border-radius: 12px; background: var(--secondary-tint); color: var(--secondary); transition: background var(--t), color var(--t);
}
.stat:hover .stat__icon { background: var(--primary); color: #fff; }
.stat__icon svg { width: 22px; height: 22px; }
.stat__num { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.25rem); font-weight: 800; color: var(--secondary); line-height: 1; letter-spacing: -.03em; }
.stat__num span { color: var(--primary); }
.stat__label { margin-top: 8px; font-size: .89rem; font-weight: 600; color: var(--muted); line-height: 1.45; }

/* ---------- Cards ---------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.svc-card__top { position: relative; }
.svc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--secondary-tint); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(57, 55, 105, 0) 40%, rgba(57, 55, 105, .55) 100%);
}
.svc-card__icon {
  position: absolute; left: 22px; bottom: -26px; z-index: 2;
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px;
  background: var(--primary); color: #fff; box-shadow: var(--shadow-primary);
  transition: background var(--t), transform var(--t);
}
.card:hover .svc-card__icon { background: var(--secondary); transform: rotate(-8deg) scale(1.06); box-shadow: 0 10px 26px rgba(57, 55, 105, .35); }
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card__body { padding: 44px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { font-size: 1.22rem; margin-bottom: 10px; transition: color var(--t); }
.card:hover .svc-card__body h3 { color: var(--primary); }
.svc-card__body p { font-size: .95rem; color: var(--body); margin-bottom: 18px; }
.svc-card__body .link-arrow { margin-top: auto; }

/* Icon feature card */
.feature {
  padding: 34px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature__icon {
  width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 20px;
  border-radius: 18px; background: var(--primary-tint); color: var(--primary);
  transition: background var(--t), color var(--t), transform var(--t);
}
.feature:hover .feature__icon { background: var(--secondary); color: #fff; transform: rotate(-6deg); }
.feature__icon svg { width: 28px; height: 28px; }
.feature h3, .feature h4 { margin-bottom: 10px; }
.feature p { font-size: .95rem; }

.feature--navy { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.feature--navy:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .2); }
.feature--navy .feature__icon { background: rgba(231, 98, 67, .18); color: var(--primary-light); }
.feature--navy:hover .feature__icon { background: var(--primary); color: #fff; }
.feature--navy p { color: rgba(255, 255, 255, .76); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--wide-left { grid-template-columns: 1.08fr 1fr; }
.split--wide-right { grid-template-columns: 1fr 1.08fr; }

.media-stack { position: relative; }
.media-stack__main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-stack__main img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.media-stack__inset {
  position: absolute; right: -22px; bottom: -30px; width: 46%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 7px solid #fff; box-shadow: var(--shadow-lg);
}
.media-stack__inset img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-stack__badge {
  position: absolute; left: -18px; top: 28px; z-index: 3;
  display: flex; align-items: center; gap: 14px; padding: 16px 22px;
  background: var(--primary); color: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-primary);
}
.media-stack__badge .num { font-size: 2rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.media-stack__badge .txt { font-size: .8rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: .07em; opacity: .95; }

.checklist { display: grid; gap: 14px; margin: 26px 0 32px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; font-size: .97rem; color: var(--body); }
.checklist li strong { display: block; color: var(--ink); font-weight: 700; }
.checklist .tick {
  flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%;
  background: var(--primary-tint); color: var(--primary); display: grid; place-items: center;
}
.checklist .tick svg { width: 13px; height: 13px; }
.section--navy .checklist li { color: rgba(255, 255, 255, .8); }
.section--navy .checklist li strong { color: #fff; }
.section--navy .checklist .tick { background: rgba(231, 98, 67, .2); color: var(--primary-light); }

/* ---------- Vision / mission ---------- */
.vm-card { padding: 38px 34px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; }
.vm-card--primary { background: var(--primary); border-color: var(--primary); color: rgba(255, 255, 255, .9); }
.vm-card--primary h3, .vm-card--primary dt { color: #fff; }
.vm-card--navy { background: var(--secondary); border-color: var(--secondary); color: rgba(255, 255, 255, .82); }
.vm-card--navy h3, .vm-card--navy dt { color: #fff; }
.vm-card__icon {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 20px;
  background: rgba(255, 255, 255, .16); color: #fff;
}
.vm-card__icon svg { width: 27px; height: 27px; }
.vm-card h3 { margin-bottom: 20px; }
.vm-list { display: grid; gap: 18px; }
.vm-list dt { font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 5px; opacity: .85; }
.vm-list dd { font-size: .99rem; line-height: 1.7; }

/* ---------- Team ---------- */
.team-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--secondary-tint); box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__photo { aspect-ratio: 1 / 1.05; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__overlay {
  position: absolute; inset: auto 0 0 0; padding: 60px 24px 22px;
  background: linear-gradient(180deg, rgba(57, 55, 105, 0) 0%, rgba(41, 40, 76, .92) 62%);
  color: #fff;
}
.team-card__overlay h4 { color: #fff; margin-bottom: 3px; }
.team-card__role { font-size: .84rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-light); }
.team-card__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.team-card:hover .team-card__bar { transform: scaleX(1); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--secondary); color: rgba(255, 255, 255, .84); isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(41, 40, 76, .96) 0%, rgba(57, 55, 105, .9) 55%, rgba(231, 98, 67, .72) 100%);
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-block: clamp(52px, 6vw, 84px); }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { margin-top: 14px; color: rgba(255, 255, 255, .82); max-width: 48ch; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Why us / accreditation logos ---------- */
.badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 34px 20px; text-align: center; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.badge:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary); }
.badge__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--secondary-tint); color: var(--secondary); transition: background var(--t), color var(--t); }
.badge:hover .badge__icon { background: var(--primary); color: #fff; }
.badge__icon svg { width: 27px; height: 27px; }
.badge__name { font-size: .96rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
.badge__meta { font-size: .8rem; color: var(--muted); }

/* ---------- Logo marquee ---------- */
.marquee { position: relative; overflow: hidden; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 18px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-width: 232px; padding: 22px 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; color: var(--secondary); white-space: nowrap;
  transition: border-color var(--t), color var(--t), box-shadow var(--t);
}
.marquee__item:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }
.marquee__item svg { width: 24px; height: 24px; color: var(--primary); flex: none; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--secondary-tint); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__tag {
  position: absolute; top: 16px; left: 16px; padding: 7px 15px; border-radius: 999px;
  background: var(--primary); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.post-card__body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.post-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-card__meta svg { width: 14px; height: 14px; color: var(--primary); }
.post-card__body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.post-card:hover h3 { color: var(--primary); }
.post-card__body h3 a { color: inherit; }
.post-card__body p { font-size: .94rem; margin-bottom: 18px; }
.post-card__body .link-arrow { margin-top: auto; }

.article { font-size: 1.04rem; line-height: 1.85; }
.article h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 1.95rem); margin: 40px 0 16px; }
.article h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.article p { margin-bottom: 1.2em; }
.article ul, .article ol { margin: 0 0 1.4em; display: grid; gap: 11px; }
.article ul li { position: relative; padding-left: 28px; }
.article ul li::before { content: ""; position: absolute; left: 4px; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.article ol { counter-reset: n; }
.article ol li { position: relative; padding-left: 40px; counter-increment: n; }
.article ol li::before {
  content: counter(n); position: absolute; left: 0; top: .15em; width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 50%; background: var(--primary-tint);
  color: var(--primary); font-size: .8rem; font-weight: 800;
}
.article blockquote {
  margin: 32px 0; padding: 26px 30px; border-left: 4px solid var(--primary);
  background: var(--primary-tint); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08rem; font-style: italic; color: var(--ink);
}
.article img { border-radius: var(--radius-lg); margin: 32px 0; box-shadow: var(--shadow); }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.article a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--secondary); color: rgba(255, 255, 255, .82); isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(41, 40, 76, .95) 0%, rgba(57, 55, 105, .88) 50%, rgba(57, 55, 105, .62) 100%);
}
.page-hero__inner { padding: clamp(62px, 8vw, 108px) 0; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem); }
.page-hero p { font-size: 1.08rem; color: rgba(255, 255, 255, .82); max-width: 60ch; }

.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; font-size: .86rem; margin-bottom: 20px; color: rgba(255, 255, 255, .6); }
.crumbs a { color: rgba(255, 255, 255, .78); font-weight: 600; }
.crumbs a:hover { color: var(--primary-light); }
.crumbs svg { width: 13px; height: 13px; opacity: .55; }
.crumbs .current { color: var(--primary-light); font-weight: 600; }

/* ---------- Service detail layout ---------- */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.svc-nav { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 24px; }
.svc-nav__box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.svc-nav__box h4 { margin-bottom: 16px; font-size: 1.04rem; }
.svc-nav__list { display: grid; gap: 4px; }
.svc-nav__list a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 10px; font-size: .9rem; font-weight: 600;
  color: var(--secondary); background: var(--bg-soft); line-height: 1.35;
  transition: background var(--t), color var(--t), transform var(--t);
}
.svc-nav__list a svg { width: 15px; height: 15px; flex: none; opacity: .4; transition: opacity var(--t), transform var(--t); }
.svc-nav__list a:hover { background: var(--primary-tint); color: var(--primary); transform: translateX(3px); }
.svc-nav__list a:hover svg { opacity: 1; transform: translateX(2px); }
.svc-nav__list a.is-current { background: var(--primary); color: #fff; }
.svc-nav__list a.is-current svg { opacity: 1; }

.svc-nav__cta { background: var(--secondary); color: rgba(255, 255, 255, .82); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; }
.svc-nav__cta .icon { width: 54px; height: 54px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: #fff; }
.svc-nav__cta .icon svg { width: 25px; height: 25px; }
.svc-nav__cta h4 { color: #fff; margin-bottom: 8px; }
.svc-nav__cta p { font-size: .89rem; margin-bottom: 20px; color: rgba(255, 255, 255, .74); }
.svc-nav__cta .phone { display: block; font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.svc-nav__cta .phone:hover { color: var(--primary-light); }

.svc-hero-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 36px; }
.svc-hero-img img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); background: var(--secondary-tint); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: rgba(57, 55, 105, 0); transition: background var(--t); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { background: rgba(57, 55, 105, .22); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }

.info-card {
  display: flex; gap: 18px; padding: 26px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.info-card__icon { flex: none; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--primary-tint); color: var(--primary); transition: background var(--t), color var(--t); }
.info-card:hover .info-card__icon { background: var(--primary); color: #fff; }
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h4 { margin-bottom: 6px; font-size: 1.02rem; }
.info-card p, .info-card a { font-size: .94rem; color: var(--body); line-height: 1.65; display: block; }
.info-card a:hover { color: var(--primary); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(28px, 3.4vw, 44px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--bg-soft); font-size: .95rem; color: var(--ink);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.65; }
.field select { appearance: none; cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355556b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 17px;
}
.field input::placeholder, .field textarea::placeholder { color: #a6a6b8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(231, 98, 67, .13);
}
.field .error { font-size: .8rem; font-weight: 600; color: var(--primary-dark); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--primary-dark); background: #fff6f4; }
.field.has-error .error { display: block; }

.form-note { font-size: .84rem; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.form-alert {
  display: none; align-items: flex-start; gap: 12px; margin-top: 20px; padding: 16px 18px;
  border-radius: 12px; background: #eefaf2; border: 1px solid #bfe8cf; color: #1c6b3c; font-size: .92rem;
}
.form-alert.is-visible { display: flex; }
.form-alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }

.map-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  background: var(--secondary-tint); min-height: 440px;
}
.map-frame iframe { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; display: block; }
.map-fallback {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; text-align: center;
  padding: 28px 24px; font-size: .92rem; color: var(--body);
}
.map-fallback svg { width: 34px; height: 34px; color: var(--primary); }
.map-fallback strong { display: block; color: var(--ink); }
.map-fallback a { font-weight: 700; }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.acc-item.is-open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 1.02rem; font-weight: 700; color: var(--ink); transition: color var(--t);
}
.acc-head:hover, .acc-item.is-open .acc-head { color: var(--primary); }
.acc-head .chev { flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--secondary-tint); color: var(--secondary); transition: transform var(--t), background var(--t), color var(--t); }
.acc-head .chev svg { width: 15px; height: 15px; }
.acc-item.is-open .chev { transform: rotate(180deg); background: var(--primary); color: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body__inner { padding: 0 24px 22px; font-size: .96rem; color: var(--body); }

/* ---------- Footer ---------- */
.footer { background: var(--secondary-dark); color: rgba(255, 255, 255, .68); font-size: .93rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer a { color: rgba(255, 255, 255, .68); }
.footer a:hover { color: var(--primary-light); }

.footer__top { padding: clamp(52px, 6vw, 76px) 0 44px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: 40px; }
.footer__logo { width: 210px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .96; }
.footer__about { line-height: 1.75; margin-bottom: 22px; }
.footer__socials { display: flex; gap: 9px; }
.footer__socials a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .8);
  transition: background var(--t), color var(--t), transform var(--t);
}
.footer__socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer__socials svg { width: 16px; height: 16px; }

.footer__links { display: grid; gap: 11px; }
.footer__links a { display: inline-flex; align-items: center; gap: 9px; transition: color var(--t), transform var(--t); }
.footer__links a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); opacity: .5; flex: none; transition: opacity var(--t); }
.footer__links a:hover { transform: translateX(3px); }
.footer__links a:hover::before { opacity: 1; }

.footer__contact { display: grid; gap: 16px; margin-bottom: 22px; }
.footer__contact li { display: flex; gap: 12px; line-height: 1.6; }
.footer__contact svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 3px; }
.footer__contact strong { display: block; color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 2px; }

.footer__map {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .05); min-height: 168px;
}
.footer__map iframe { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.3); }
.footer__map .map-fallback { font-size: .84rem; color: rgba(255, 255, 255, .72); padding: 18px; gap: 4px; }
.footer__map .map-fallback svg { width: 24px; height: 24px; }
.footer__map .map-fallback strong { color: #fff; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .87rem; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Floating actions ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 48px; height: 48px; display: grid; place-items: center; cursor: pointer;
  border: 0; border-radius: 50%; background: var(--secondary); color: #fff;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity var(--t), transform var(--t), visibility var(--t), background var(--t);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--primary); }
.to-top svg { width: 20px; height: 20px; }

.wa-float {
  position: fixed; right: 22px; bottom: 82px; z-index: 800;
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .4);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, .5); }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header__cta .btn { display: none; }
  .brand img { width: 180px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-nav { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats__card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .media-stack { max-width: 560px; margin-inline: auto; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid { gap: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { margin-top: -44px; }
  .stats__card { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 22px; }
  .stat:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-nav { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero__inner { padding-block: 62px 118px; }
  .hero__actions { padding-right: 74px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .media-stack__inset { width: 44%; right: -8px; bottom: -18px; border-width: 5px; }
  .media-stack__badge { left: -8px; padding: 13px 17px; }
  .media-stack__badge .num { font-size: 1.6rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; gap: 16px; }
  .hero__arrows { display: none; }
  .to-top { right: 14px; bottom: 14px; }
  .wa-float { right: 14px; bottom: 72px; }
}

@media (max-width: 420px) {
  .brand img { width: 152px; }
  .marquee__item { min-width: 190px; padding: 18px 20px; font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .to-top, .wa-float, .hero__nav, .drawer { display: none !important; }
  body { font-size: 11pt; }
}
