/* =========================================
   Click To Engage — Global Stylesheet
   ========================================= */

:root {
  --navy:    #0F1E38;
  --blue:    #1A3A6B;
  --teal:    #0D9E8A;
  --teal-lt: #E6F7F5;
  --coral:   #F0522A;
  --amber:   #F5A623;
  --cream:   #F4F7FB;
  --white:   #FFFFFF;
  --ink:     #0F1E38;
  --muted:   rgba(15,30,56,0.60);
  --line:    rgba(15,30,56,0.10);
  --card-shadow: 0 2px 12px rgba(15,30,56,0.07);
  --card-shadow-hover: 0 12px 32px rgba(15,30,56,0.13);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

/* ---- Layout ---- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- Header ---- */
header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  color: var(--navy);
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { display: block; }

nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
nav a:hover { color: var(--navy); background: var(--cream); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: #0b8a79; transform: translateY(-1px); }

.btn-primary-lg {
  background: var(--teal);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary-lg:hover { background: #0b8a79; transform: translateY(-2px); }

.btn-ghost {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.btn-ghost:hover { gap: 10px; }

.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---- Eyebrow ---- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  display: inline-block;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: 58px;
  margin-bottom: 22px;
  color: var(--navy);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 38px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}
.hv-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(13,158,138,0.10) 0%, transparent 70%);
  border-radius: 24px;
}
.hv-center {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(13,158,138,0.35);
}
.hv-center svg { display: block; }

/* Pulse rings */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(13,158,138,0.4);
  animation: hv-pulse 3s ease-out infinite;
}
.hv-ring:nth-child(1) { width: 130px; height: 130px; animation-delay: 0s; }
.hv-ring:nth-child(2) { width: 130px; height: 130px; animation-delay: 1s; }
.hv-ring:nth-child(3) { width: 130px; height: 130px; animation-delay: 2s; }
@keyframes hv-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Floating chat bubbles */
.hv-bubble {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(15,30,56,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hv-bubble .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-bubble-1 { top: 30px;  left: 0;    animation: float1 4s ease-in-out infinite; }
.hv-bubble-2 { top: 80px;  right: -10px; animation: float2 5s ease-in-out infinite; }
.hv-bubble-3 { bottom: 60px; left: 10px; animation: float1 4.5s ease-in-out infinite 0.5s; }
.hv-bubble-4 { bottom: 20px; right: 20px; animation: float2 3.8s ease-in-out infinite 1s; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

@media (prefers-reduced-motion: reduce) {
  .hv-ring { animation: none; opacity: 0.2; }
  .hv-bubble { animation: none; }
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section { padding: 80px 24px; }
.section-sm { padding: 48px 24px; }

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.pcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.pcard-icon.teal   { background: var(--teal-lt); color: var(--teal); }
.pcard-icon.coral  { background: #FEF0EC; color: var(--coral); }
.pcard-icon.blue   { background: #E8EEF9; color: var(--blue); }
.pcard-icon.amber  { background: #FEF7E8; color: #C47F00; }

.pcard h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--navy);
}
.pcard p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.pcard a.card-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.pcard a.card-link:hover { gap: 8px; }

/* =========================================
   PRICING CARDS
   ========================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.price-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: 0 20px 48px rgba(15,30,56,0.22);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.plan-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.price-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-top: 4px;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 14px 0 4px;
}
.price-amount span { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; opacity: 0.6; }
.price-desc { font-size: 14px; opacity: 0.7; margin-bottom: 20px; line-height: 1.55; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-card li { font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.price-card li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}
.price-card.featured li::before { background: var(--amber); }
.price-cta {
  margin-top: auto;
  text-align: center;
  padding: 14px 0;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.price-cta:hover { background: var(--navy); color: var(--white); }
.price-card.featured .price-cta {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.price-card.featured .price-cta:hover { background: #0b8a79; border-color: #0b8a79; }

/* =========================================
   WHY SECTION
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
  opacity: 0.35;
}
.why-card h4 { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* =========================================
   HOW IT WORKS STEPS
   ========================================= */
.steps-list { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.step h3 { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 24px 80px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--teal); justify-content: center; }
.page-hero .eyebrow::before { background: var(--teal); }
.page-hero h1 { font-size: 48px; color: var(--white); margin-bottom: 18px; max-width: 680px; margin-left: auto; margin-right: auto; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.70); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.page-hero .hero-actions { justify-content: center; }

/* =========================================
   FEATURE CARDS
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.fcard:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.fcard .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.fcard h3 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); }
.fcard p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* =========================================
   CONTENT PROSE (blog etc.)
   ========================================= */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.prose h1 { font-size: 40px; margin-bottom: 20px; }
.prose h2 { font-size: 28px; margin: 40px 0 14px; }
.prose h3 { font-size: 22px; margin: 30px 0 10px; }
.prose p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.prose ul li { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.post-meta { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.post-tag {
  display: inline-block;
  background: var(--teal-lt);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 8px;
}

/* =========================================
   BLOG CARDS
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.blog-card h3 { font-family: 'Fraunces', serif; font-size: 20px; color: var(--navy); line-height: 1.3; }
.blog-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.blog-card a.read-more { font-size: 14px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: gap 0.15s; }
.blog-card a.read-more:hover { gap: 8px; }

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.contact-info h2 { font-size: 32px; margin-bottom: 14px; }
.contact-info p { font-size: 15.5px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-lt);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-detail h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-detail p { font-size: 14px; margin: 0; color: var(--muted); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,158,138,0.12); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--teal);
  color: var(--white);
  padding: 15px 0;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, transform 0.15s;
  margin-top: 4px;
}
.form-submit:hover { background: #0b8a79; transform: translateY(-1px); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 { font-size: 40px; color: var(--white); margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 64px 24px 40px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; font-size: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.60); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* =========================================
   INDUSTRIES / INTEGRATIONS
   ========================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.industry-card .icon-big { font-size: 32px; margin-bottom: 14px; }
.industry-card h3 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.industry-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* =========================================
   STAT ROW
   ========================================= */
.stat-row {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 24px;
}
.stat-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}
.stat-item .label { font-size: 14px; color: var(--muted); }

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid img { border-radius: 18px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .hero-visual { height: 260px; }
  nav { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stat-inner { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stat-inner { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 34px; }
  .section-head h2 { font-size: 30px; }
  .hero h1 { font-size: 34px; }
}

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.bg-white { background: var(--white); }

/* Divider */
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }
