/* ============================================
   OZ Media Digital — Design System
   ============================================ */

:root {
  --navy: #121212;
  --ink: #1A1A1A;
  --ink-soft: #333333;
  --accent: #CB1F2C;
  --accent-dark: #A21923;
  --bg: #FFFFFF;
  --bg-alt: #F4F4F4;
  --bg-dark: #121212;
  --muted: #5C5C5C;
  --border: #E5E5E5;
  --white: #FFFFFF;

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.28);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  color: var(--navy);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
p { margin: 0 0 1em; color: var(--muted); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

/* ============================================
   Motion & Scroll Effects
   ============================================ */
.site-header { transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.25); }

.reveal-up {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.img-frame { display: block; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }

.hero-banner-strip { padding: 0; }
.hero-banner-strip .img-frame { border-radius: 0; box-shadow: none; }
.hero-banner-strip .page-banner-img { max-height: 480px; }
.image-caption { margin: 14px 0 0; font-size: 0.9rem; color: var(--muted); font-style: italic; }

.reveal-zoom {
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-zoom.is-visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal-zoom { opacity: 1 !important; transform: none !important; transition: none !important; }
  .site-header { transition: none !important; }
}

/* Scroll-to-top button */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.15s ease;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity 0.15s, visibility 0.15s; } }

/* Blog reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  background: transparent;
}
.reading-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.lede {
  font-size: 1.15rem;
  max-width: 620px;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(0.95rem, 1.3vw, 1.1rem); }
.section-head .lede { font-size: 1rem; }
.section-head .eyebrow { font-size: clamp(2.1rem, 4vw, 3rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--bg-dark); color: #D0D0D0; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: #ABABAB; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -10px rgba(203, 31, 44, 0.55); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #262626; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-right: auto;
}
.brand-mark { width: 34px; height: 34px; }
.main-nav { display: flex; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 8px;
  color: var(--ink-soft);
}
.main-nav > ul > li > a:hover { background: var(--bg-alt); color: var(--accent); }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.main-nav .dropdown a:hover { background: var(--bg-alt); color: var(--accent); }
.header-cta { margin-left: 4px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }

@media (max-width: 980px) {
  .header-cta { padding: 9px 16px; white-space: nowrap; }
  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    width: min(320px, 85vw);
    background: #fff;
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding-left: 14px; display: none;
  }
  .main-nav .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .header-inner { gap: 10px; }
  .brand { font-size: 0.88rem; gap: 8px; }
  .brand-mark { width: 28px; height: 28px; }
  .header-cta {
    padding: 8px 12px;
    font-size: 0;
  }
  .header-cta::before {
    content: "Book Now";
    font-size: 0.78rem;
  }
  .nav-toggle { padding: 8px 4px; }
}

/* Hero */
.hero {
  background: radial-gradient(circle at 85% 15%, rgba(203,31,44,0.18), transparent 45%), var(--navy);
  color: #fff;
  padding: 100px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero .lede { color: #B8B8B8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 40px; }
.hero-badge { font-size: 0.85rem; color: #999999; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: #fff; }
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-card ul { display: flex; flex-direction: column; gap: 14px; }
.hero-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: #DADADA; }
.hero-card .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Metrics strip */
.metrics-strip { background: var(--ink); }
.metrics-eyebrow { text-align: center; margin-bottom: 40px; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; position: relative; }
.metric { padding: 0 28px; position: relative; }
.metric:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px;
  background: rgba(255,255,255,0.12);
}
.metric-icon {
  width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 18px;
  background: rgba(203,31,44,0.08); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.metric-icon svg { width: 22px; height: 22px; }
.metric strong { display: block; font-family: var(--font-head); font-size: 2.6rem; color: #fff; margin-bottom: 8px; }
.metric span { color: #B8B8B8; font-size: 0.82rem; line-height: 1.55; }
.metrics-disclaimer { text-align: center; color: #8a8a8a; font-size: 0.8rem; margin: 32px 0 0; }
@media (max-width: 700px) {
  .metrics-grid { grid-template-columns: 1fr; gap: 36px; }
  .metric { padding: 0; }
  .metric:not(:last-child)::after { display: none; }
  .metric:not(:last-child) { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* Card grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(203,31,44,0.35); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(203,31,44,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.card:hover .icon { background: var(--accent); color: #fff; transform: scale(1.06); }
.card .icon svg { width: 24px; height: 24px; }
.card ul.check-list { margin-top: 14px; }

.check-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.95rem; color: var(--ink-soft); }
.check-list li svg { flex: none; width: 18px; height: 18px; color: var(--ink); margin-top: 2px; }

.number-tag {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(203,31,44,0.35); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  position: relative;
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card .badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  padding: 6px 14px; border-radius: 999px;
}
.price-card .price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--navy); margin: 10px 0 4px; }
.price-card .price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card .ad-spend-note { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin: -8px 0 14px; }
.price-card .check-list { margin: 22px 0 26px; flex-grow: 1; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

/* Service page price teaser */
.price-teaser {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-teaser:hover { box-shadow: var(--shadow); border-color: rgba(203,31,44,0.35); }
.price-teaser-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin: 2px 0; }
.price-teaser-amount span { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.price-teaser-note { color: var(--ink-soft); font-size: 0.92rem; max-width: 460px; margin: 0; }
.price-teaser-quote .price-teaser-amount { font-size: 1.6rem; }
.price-teaser-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.price-teaser-custom { font-size: 0.85rem; color: var(--muted); text-decoration: underline; }
.price-teaser-custom:hover { color: var(--accent); }
.price-teaser-plan {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Reviews carousel — single scrolling row, fixed compact height */
.reviews-carousel { position: relative; }
.reviews-wall {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 18px;
  margin: 0 -4px;
}
.reviews-wall::-webkit-scrollbar { height: 6px; }
.reviews-wall::-webkit-scrollbar-track { background: transparent; }
.reviews-wall::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.review-card {
  flex: 0 0 auto;
  width: min(80vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card .quote {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--ink-soft); line-height: 1.6;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden;
}
.review-card .attribution { margin: 16px 0 0; font-weight: 700; color: var(--ink); font-size: 0.88rem; padding-top: 14px; border-top: 1px solid var(--border); }
.review-card .attribution span { display: block; font-weight: 500; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.reviews-nav {
  position: absolute; top: 108px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1; color: var(--ink); cursor: pointer;
}
.reviews-nav-prev { left: -8px; }
.reviews-nav-next { right: -8px; }
.reviews-nav:hover { background: var(--bg-alt); }
@media (max-width: 900px) { .reviews-nav { display: none; } }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #B8B8B8; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy);
}
.faq-q h3 { margin: 0; font: inherit; color: inherit; }
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); transition: transform 0.2s ease; }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { height: 0; overflow: hidden; }
.faq-a p { padding-bottom: 20px; margin: 0; }
.faq-item.open .faq-a { height: auto; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none !important; } }

/* Breadcrumb */
.breadcrumb { padding: 20px 0 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* Page hero (interior pages) */
.page-hero { background: var(--bg-alt); padding: 60px 0 50px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lede { color: var(--muted); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--ink-soft); }
input, textarea, select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
textarea { resize: vertical; min-height: 120px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: auto; } }

/* Form validation feedback */
input.invalid, textarea.invalid, select.invalid { border-color: var(--accent); }
input.valid, textarea.valid, select.valid { border-color: #2f9e5c; }
.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}
.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.form-status.form-status-error { color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px; }
.contact-info-card h3 { color: #fff; }
.contact-info-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-info-card .row svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }
.contact-info-card a { color: #fff; font-weight: 600; }
.contact-info-card a:hover { color: var(--accent); }

/* Banner / content images */
.page-banner-img { display: block; width: 100%; max-height: 420px; object-fit: cover; }
.founder-photo { width: 100%; max-width: 260px; border-radius: var(--radius); box-shadow: var(--shadow); }
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; max-width: 640px; margin: 0 auto; text-align: left; }
@media (max-width: 640px) { .founder-grid { grid-template-columns: 1fr; text-align: center; } .founder-photo { max-width: 200px; margin: 0 auto; } }

/* Footer */
.site-footer { background: var(--navy); color: #9A9A9A; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-mark { width: 32px; margin-bottom: 14px; }
.footer-brand p { color: #9A9A9A; font-size: 0.92rem; }
.footer-brand a:hover { color: var(--accent); }
.footer-col h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; color: #9A9A9A; }
.footer-col a:hover { color: var(--accent); }
.whatsapp-link { display: inline-flex; align-items: center; gap: 6px; }
.whatsapp-link svg { width: 15px; height: 15px; flex: none; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-links a:hover { background: var(--accent); }
.social-links svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 24px 24px; font-size: 0.85rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-pill {
  display: inline-block; background: rgba(203,31,44,0.1); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  padding: 6px 14px; border-radius: 999px; letter-spacing: 0.04em;
}
.divider { height: 1px; background: var(--border); margin: 50px 0; }
.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.jump-nav a.tag-pill { transition: background 0.15s ease, color 0.15s ease; }
.jump-nav a.tag-pill:hover { background: var(--accent); color: #fff; }
.faq-section-block { margin-bottom: 60px; scroll-margin-top: 90px; }
.faq-section-block:last-child { margin-bottom: 0; }

/* FAQ live search */
.faq-search-wrap { position: relative; max-width: 480px; margin-top: 28px; }
.faq-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.faq-search-input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
}
.faq-search-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.faq-item[hidden], .faq-section-block[hidden] { display: none; }
.faq-no-results { text-align: center; color: var(--muted); padding: 20px 0 40px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.stat-inline { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 20px; }
.stat-inline strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--navy); }
.stat-inline span { font-size: 0.85rem; color: var(--muted); }

.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-card .thumb { height: 170px; background: linear-gradient(135deg, var(--navy), var(--ink-soft)); display: flex; align-items: center; justify-content: center; }
.blog-card .thumb svg { width: 40px; height: 40px; color: var(--accent); }
.blog-card .body { padding: 24px; }
.blog-card .meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 a:hover { color: var(--accent); }
