/* Hitech Cleaning Services — propeller demo
   Brand: navy #0B2E5C, yellow #FFDD00, white BG (G1)
*/

:root{
  --navy: #0B2E5C;
  --navy-2: #133976;
  --navy-3: #1B4A99;
  --yellow: #FFDD00;
  --yellow-dim: #F6CC00;
  --ink: #0A0A0A;
  --ink-2: #1F2937;
  --ink-3: #4B5563;
  --line: #E5E7EB;
  --soft: #F7F8FB;
  --soft-2: #EEF2F7;
  --white: #FFFFFF;
  --green: #22A06B;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,46,92,.05), 0 1px 1px rgba(11,46,92,.04);
  --shadow-md: 0 8px 24px rgba(11,46,92,.08);
  --shadow-lg: 0 18px 50px rgba(11,46,92,.14);
  --maxw: 1180px;

  /* size-adjusted fallback metrics to limit CLS for the display chain */
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Iowan Old Style", "Palatino Linotype", "Source Serif Pro", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  background: var(--white);             /* G1 */
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--navy); text-decoration: none; }
a:hover{ color: var(--navy-3); }
p{ margin: 0 0 1em; }

h1,h2,h3,h4{
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1{ font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3{ font-size: 1.3rem; }
h4{ font-size: 1.05rem; }

.shell{ max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem;
  font-weight: 700; color: var(--navy);
  font-family: var(--sans);
}
.eyebrow::before{ content:""; width: 24px; height: 2px; background: var(--yellow); display: inline-block; }

/* ===== NAV — glass pill, fit-content, centered (G20 + G36) ===== */
.site-header{
  position: fixed; top: 14px; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-pill{
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 28px;
  width: fit-content; margin: 0 auto;
  padding: 9px 12px 9px 22px;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,46,92,.06);
}
.nav-brand{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; letter-spacing: .04em;
  color: var(--navy); font-size: .98rem;
}
.nav-brand .mark{
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--navy); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800; font-size: .85rem;
  letter-spacing: .04em;
}
.nav-brand .word b{ font-weight: 800; }
.nav-brand .word span{ display: block; font-size: .58rem; letter-spacing: .22em; color: var(--ink-3); margin-top: -3px; }
.nav-links{
  display: flex; gap: 22px; align-items: center; margin: 0; padding: 0;
}
.nav-links a{
  color: var(--ink-2); font-size: .95rem; font-weight: 500;
  padding: 6px 0;
}
.nav-links a:hover{ color: var(--navy); }
.nav-cta{
  background: var(--navy); color: var(--white);
  padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: .92rem;
  margin-left: 6px;
  transition: background .15s, transform .15s;
}
.nav-cta:hover{ background: var(--navy-3); color: var(--white); }

.mobile-menu-toggle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  color: var(--navy);
}
@media (max-width: 1023.98px){
  .nav-links{ display: none !important; }
  .nav-cta{ display: none !important; }
  .nav-pill{ padding: 8px 8px 8px 14px; gap: 12px; }
}
@media (min-width: 1024px){
  .mobile-menu-toggle{ display: none !important; }      /* G17 — base BEFORE the override */
}
.mobile-panel{
  display: none; pointer-events: auto;
  position: fixed; top: 78px; left: 16px; right: 16px;
  background: var(--white); border-radius: 18px; padding: 18px; z-index: 49;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.mobile-panel.open{ display: block; }
.mobile-panel a{
  display: block; padding: 14px 6px; color: var(--ink); font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-panel a:last-child{ border-bottom: 0; }

/* ===== HERO ===== */
.hero{
  position: relative; padding: 120px 0 0; margin-top: 0;
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-grid{
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center; padding: 16px 0 56px;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.hero-copy h1 em{
  font-style: italic;
  color: var(--navy);
}
.hero-copy .lead{
  font-size: 1.15rem; color: var(--ink-3); margin-top: 20px; max-width: 560px;
}
.hero-stats{ display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats > div{ display: flex; flex-direction: column; }
.hero-stats strong{
  font-family: var(--display); font-weight: 700; font-size: 2rem; color: var(--navy);
  line-height: 1;
}
.hero-stats span{ font-size: .82rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em; margin-top: 6px; }
.hero-cta{ display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .15s, background .15s, box-shadow .15s, color .15s;
  border: 0; cursor: pointer; line-height: 1;
}
.btn-primary{ background: var(--navy); color: #fff; }
.btn-primary:hover{ background: var(--navy-3); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-yellow{ background: var(--yellow); color: var(--navy); }
.btn-yellow:hover{ background: var(--yellow-dim); color: var(--navy); transform: translateY(-1px); }
.btn-ghost{ background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost:hover{ background: var(--navy); color: #fff; }

.hero-photo{
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.hero-photo img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-badge{
  position: absolute; top: 18px; left: 18px;
  background: var(--yellow); color: var(--navy);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}
.hero-rating{
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,.96);
  padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-md);
}
.hero-rating .stars{ color: #F6B100; font-size: 1rem; letter-spacing: 2px; }
.hero-rating .num{ font-weight: 800; color: var(--navy); }
.hero-rating .label{ font-size: .82rem; color: var(--ink-3); }

@media (max-width: 880px){
  .hero{ padding-top: 100px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .hero-photo{ aspect-ratio: 5/4; order: -1; }
  .hero-stats{ gap: 24px; }
  .hero-stats strong{ font-size: 1.6rem; }
}

/* ===== TRUST BAND ===== */
.trustband{
  background: var(--navy);
  color: #fff;
  padding: 24px 0;
}
.trustband-inner{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: center; }
.trustband-inner > div{ display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.92); font-size: .94rem; }
.trustband-inner svg{ width: 28px; height: 28px; color: var(--yellow); flex-shrink: 0; }
.trustband-inner b{ color: #fff; font-weight: 700; }
@media (max-width: 880px){
  .trustband-inner{ grid-template-columns: 1fr 1fr; row-gap: 14px; }
}
@media (max-width: 540px){
  .trustband-inner{ grid-template-columns: 1fr; }
}

/* ===== SERVICES GRID ===== */
.section{ padding: 96px 0; }
.section-header{ display: flex; flex-direction: column; align-items: flex-start; gap: 12px; max-width: 720px; margin: 0 0 56px; }
.section-header.center{ align-items: center; text-align: center; margin: 0 auto 56px; }
.services-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.svc-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(11,46,92,.18); }
.svc-icon{
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--soft-2);
  color: var(--navy);
}
.svc-icon svg{ width: 30px; height: 30px; }
.svc-card.feature{
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-color: var(--navy);
}
.svc-card.feature h3, .svc-card.feature p{ color: #fff; }
.svc-card.feature .svc-icon{ background: rgba(255,221,0,.18); color: var(--yellow); }
.svc-card .more{
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 700; font-size: .92rem;
}
.svc-card.feature .more{ color: var(--yellow); }
@media (max-width: 880px){
  .services-grid{ grid-template-columns: 1fr; }
  .svc-card.feature{ grid-column: span 1; }
}

/* ===== STORY (about preview) ===== */
.story{ background: var(--soft); padding: 96px 0; }
.story-grid{ display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.story-card{
  background: #fff; padding: 28px; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  position: relative;
}
.story-card::before{
  content:""; position: absolute; left: -10px; top: -10px;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--yellow);
}
.story-card .pull{
  font-family: var(--display); font-size: 1.35rem; line-height: 1.4;
  color: var(--navy); font-style: italic;
  position: relative; z-index: 1; margin-bottom: 18px;
}
.story-card .who{ font-weight: 700; color: var(--ink); }
.story-card .who span{ display: block; font-weight: 500; color: var(--ink-3); font-size: .85rem; margin-top: 2px; }
@media (max-width: 880px){
  .story-grid{ grid-template-columns: 1fr; gap: 32px; }
}

/* ===== REVIEWS — template1 marquee (G4) ===== */
.gr-section{ background: var(--white); padding: 96px 0; }
.gr-summary{
  display: flex; align-items: center; gap: 24px; padding: 24px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  max-width: 720px; margin: 0 auto 40px;
  box-shadow: var(--shadow-sm);
}
.gr-g{
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gr-g svg{ width: 28px; height: 28px; }
.gr-sum-meta{ flex: 1; }
.gr-sum-meta .row1{ display: flex; align-items: center; gap: 10px; }
.gr-sum-meta .score{ font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.gr-sum-meta .stars{ color: #F6B100; letter-spacing: 2px; }
.gr-sum-meta .count{ color: var(--ink-3); font-size: .92rem; margin-top: 2px; }
.gr-sum-cta{
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  white-space: nowrap;
}
.gr-sum-cta:hover{ background: var(--navy-3); color: #fff; }

.gr-marquee{
  overflow: hidden; padding: 6px 0 22px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.gr-track{
  display: flex; gap: 22px; width: max-content;
  animation: gr-scroll 60s linear infinite;
}
.gr-marquee:hover .gr-track{ animation-play-state: paused; }
.gr-marquee-reverse .gr-track{
  animation-name: gr-scroll-reverse;
  animation-duration: 70s;
}
@keyframes gr-scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@keyframes gr-scroll-reverse{
  0%{ transform: translateX(-50%); }
  100%{ transform: translateX(0); }
}
.gr-card{
  width: 360px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.gr-card-head{ display: flex; align-items: center; gap: 12px; }
.gr-card .avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.gr-card .who{ flex: 1; }
.gr-card .who .name{ font-weight: 700; color: var(--ink); font-size: .95rem; }
.gr-card .who .date{ color: var(--ink-3); font-size: .8rem; }
.gr-card .stars{ color: #F6B100; letter-spacing: 2px; }
.gr-card .text{
  color: var(--ink-2); font-size: .92rem; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.gr-card .gr-g-mark{
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--ink-3);
}
.gr-card .gr-g-mark svg{ width: 16px; height: 16px; }
@media (max-width: 540px){
  .gr-card{ width: 280px; padding: 18px; }
}

/* ===== SERVICE AREAS ===== */
.areas{ background: var(--soft); padding: 96px 0; }
.areas-chips{ display: flex; flex-wrap: wrap; gap: 10px; max-width: 880px; }
.areas-chips span{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-size: .92rem; color: var(--ink-2);
}
.areas-chips span::before{
  content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
}

/* ===== CONTACT / FORM ===== */
.contact{ background: var(--white); padding: 96px 0; }
.contact-grid{ display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-card{
  background: var(--navy); color: #fff;
  padding: 36px; border-radius: var(--r-lg);
}
.contact-card h2{ color: #fff; }
.contact-card .eyebrow{ color: var(--yellow); }
.contact-card .eyebrow::before{ background: var(--yellow); }
.contact-meta{ display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-meta > div{ display: flex; gap: 14px; align-items: flex-start; }
.contact-meta svg{ width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.contact-meta b{ display: block; color: #fff; font-weight: 600; }
.contact-meta a{ color: rgba(255,255,255,.85); }
.contact-meta a:hover{ color: var(--yellow); }
.contact-meta span{ color: rgba(255,255,255,.7); font-size: .9rem; }

.form-card{
  background: var(--soft); padding: 36px; border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.form-card h3{ margin-bottom: 22px; }
form .row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form label{ display: block; font-weight: 600; color: var(--ink-2); font-size: .9rem; margin-bottom: 6px; }
form input, form textarea, form select{
  width: 100%; padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink-2);
  transition: border-color .15s, box-shadow .15s;
}
form input:focus, form textarea:focus, form select:focus{
  outline: 0; border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11,46,92,.08);
}
form .field{ margin-bottom: 16px; }
form textarea{ min-height: 130px; resize: vertical; }
.form-status{ margin-top: 16px; font-size: .95rem; }
.form-status.ok{ color: var(--green); }
.form-status.err{ color: #b91c1c; }
@media (max-width: 880px){
  .contact-grid{ grid-template-columns: 1fr; gap: 32px; }
  form .row{ grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer{
  background: var(--ink); color: rgba(255,255,255,.78); padding: 64px 0 28px;
}
.foot-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-grid h4{ color: #fff; font-family: var(--sans); font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.foot-grid a{ color: rgba(255,255,255,.78); display: block; padding: 4px 0; font-size: .94rem; }
.foot-grid a:hover{ color: var(--yellow); }
.foot-brand{ display: flex; flex-direction: column; gap: 12px; }
.foot-brand-mark{ display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; }
.foot-brand-mark .mark{ width: 36px; height: 36px; border-radius: 8px; background: var(--navy); color: var(--yellow); display:inline-flex; align-items:center; justify-content:center; font-weight: 800; }
.foot-brand p{ color: rgba(255,255,255,.65); font-size: .92rem; }
.foot-social{ display: flex; gap: 12px; margin-top: 10px; }
.foot-social a{
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); padding: 0;
}
.foot-social a:hover{ background: var(--yellow); color: var(--navy); }
.foot-social svg{ width: 18px; height: 18px; }
.foot-bottom{
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-credit a{ color: rgba(255,255,255,.78); text-decoration: underline; }
.footer-credit a:hover{ color: var(--yellow); }
@media (max-width: 880px){
  .foot-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px){
  .foot-grid{ grid-template-columns: 1fr; }
  .foot-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ===== STICKY CTA (mobile) — two-tone (G8) ===== */
.sticky-cta{ display: none; }
@media (max-width: 880px){
  .sticky-cta{
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    box-shadow: 0 -10px 24px rgba(11,46,92,.18);
  }
  .sticky-cta a{
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 8px; font-weight: 700; font-size: .98rem;
  }
  .sticky-cta .call{ background: var(--yellow); color: var(--navy); }
  .sticky-cta .msg{ background: var(--ink); color: #fff; }
  body{ padding-bottom: 56px; }
}

/* ===== INNER PAGE HEADER ===== */
.page-hero{
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  padding: 140px 0 64px;
}
.crumbs{ font-size: .82rem; color: var(--ink-3); margin-bottom: 14px; }
.crumbs a{ color: var(--ink-3); }
.crumbs a:hover{ color: var(--navy); }
.page-hero h1{ font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 800px; }
.page-hero .lead{ font-size: 1.1rem; color: var(--ink-3); max-width: 700px; margin-top: 14px; }

/* ===== ARTICLE PROSE ===== */
.prose{ max-width: 720px; }
.prose p{ font-size: 1.05rem; line-height: 1.75; }
.prose ul, .prose ol{ padding-left: 1.4em; }
.prose li{ margin-bottom: .4em; }
.prose h2{ margin-top: 1.8em; }
.prose h3{ margin-top: 1.4em; }

/* ===== FAQ (details/summary) ===== */
.faq-list{ display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-list details{
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0; overflow: hidden;
  transition: box-shadow .15s, border-color .15s;
}
.faq-list details[open]{ box-shadow: var(--shadow-sm); border-color: rgba(11,46,92,.18); }
.faq-list summary{
  cursor: pointer; padding: 20px 24px;
  font-weight: 700; color: var(--ink); font-size: 1.04rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list summary::after{
  content:""; width: 12px; height: 12px;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(45deg); transition: transform .2s;
  margin-left: 14px; flex-shrink: 0;
}
.faq-list details[open] summary::after{ transform: rotate(-135deg); }
.faq-list .a{ padding: 0 24px 22px; color: var(--ink-2); line-height: 1.7; }

/* ===== UTILITY ===== */
.section.alt{ background: var(--soft); }
.center-text{ text-align: center; }
.muted{ color: var(--ink-3); }
hr.rule{ border:0; border-top:1px solid var(--line); margin: 48px 0; }

/* ===== CTA STRIP ===== */
.ctastrip{
  background: var(--navy); color: #fff; padding: 56px 0;
  background-image: radial-gradient(800px circle at 90% 50%, rgba(255,221,0,.10), transparent 60%);
}
.ctastrip h2{ color: #fff; margin-bottom: 10px; }
.ctastrip-inner{ display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.ctastrip p{ color: rgba(255,255,255,.82); margin: 0; }
.ctastrip .btns{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== AREA CARDS ===== */
.metrics-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric{
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center;
}
.metric strong{ display: block; font-family: var(--display); font-size: 1.8rem; color: var(--navy); }
.metric span{ font-size: .82rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; display: block; }
@media (max-width: 720px){
  .metrics-grid{ grid-template-columns: 1fr 1fr; }
}

/* ===== 404 ===== */
.page-404{
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 160px 22px 60px;
  text-align: center;
}
.page-404 h1{ font-size: clamp(3rem, 8vw, 6rem); margin: 0; color: var(--navy); }
.page-404 p{ font-size: 1.1rem; color: var(--ink-3); max-width: 480px; margin: 14px auto 28px; }
