/* ═══════════════════════════════════════════════
   COVERTON — MAIN STYLESHEET
   Colors sourced from Coverton_logo.svg
═══════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────── */
:root {
  --navy:        #1b2452;
  --blue:        #29aae1;
  --deep-blue:   #2e3690;
  --gold:        #ffdd63;
  --orange:      #f9a670;
  --white:       #ffffff;
  --off-white:   #f5f7fc;
  --border:      #e2e8f0;
  --text:        #1a1e38;
  --text-muted:  #6b7280;
  --wa-green:    #25d366;
  --wa-dark:     #128c7e;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);

  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --transition:  0.2s ease;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent any element from causing horizontal scroll */
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Grid/flex children must not overflow their cells */
.hero__content,
.hero__products-wrap,
.conversation__text,
.founder__photo-wrap,
.founder__note { min-width: 0; overflow-wrap: break-word; word-break: break-word; }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 3rem);
}

/* ── TYPOGRAPHY HELPERS ──────────────────────── */
.section-title {
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg  { padding: 0.9rem 1.75rem; font-size: 1.05rem; }
.btn--sm  { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn--wa  {
  background: var(--wa-green);
  color: var(--white);
}
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.15); }

.btn--ghost {
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}
.btn--ghost:hover { background: var(--blue); color: var(--white); }

/* ── WHATSAPP ICON ───────────────────────────── */
.icon-wa {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   S1 · NAV
══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(27,36,82,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.7rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img { height: 32px; width: auto; }
.nav__license-badge {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--navy); background: var(--off-white); }
.nav__link--active {
  color: var(--blue) !important;
  font-weight: 700 !important;
  position: relative;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}

/* Claims link gets a distinct colour — signals commitment */
.nav__link[href="claims.html"] {
  color: var(--deep-blue);
  font-weight: 600;
}
.nav__link[href="claims.html"]:hover { background: #eef0f8; }

/* Nav actions group */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav__call-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.nav__call-btn:hover { background: #f0f4ff; border-color: var(--blue); }
.nav__call-btn .material-symbols-outlined { font-size: 1.1rem; }

/* CTA always visible */
.nav__cta { flex-shrink: 0; }

/* Hamburger — hidden on desktop, shown on mobile (LEFT side) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  order: -1; /* always first in flex row */
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.22s ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide button text on mobile — show icon only */
.nav__cta-label { display: inline; }

/* Mobile nav */
@media (max-width: 767px) {
  .nav__hamburger { display: flex; }
  .nav__cta-label { display: none; }
  .nav__cta { padding: 0.55rem 0.65rem; } /* icon-only, compact */

  /* Logo centred on mobile */
  .nav__logo {
    flex: 1;
    align-items: center;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(27,36,82,0.12);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__link {
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
  }
  .nav__link:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════
   S2 · HERO
══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #111a45 0%, #1b2452 40%, #1e2f6e 100%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 28% 50%, rgba(41,170,225,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 45fr 55fr;
    gap: clamp(3rem, 4vw, 5rem);
    align-items: start;
  }
}
.hero__content {
  max-width: 540px;
}
@media (min-width: 1024px) {
  .hero__content {
    max-width: none;
    padding-top: clamp(0.5rem, 2vw, 2rem);
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  background: rgba(10,14,40,0.55);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,221,99,0.25);
  backdrop-filter: blur(4px);
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}
.hero__headline {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}
.hero__headline em {
  font-style: normal;
  color: var(--gold);
}
.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: block; } }

.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__ctas { margin-bottom: 1.5rem; }

/* Full-width CTA on mobile */
@media (max-width: 639px) {
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hero__trust-badges li {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.35;
}
.trust-icon-box {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: #1e2d6b;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-box .material-symbols-outlined {
  font-size: 1rem;
  color: #60a5fa;
  font-variation-settings: 'FILL' 1;
}

/* ── PRODUCT CATEGORIES PANEL ────────────────── */
.hero__products-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}

.products-panel {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
@media (min-width: 1024px) {
  .products-panel {
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.24), 0 0 0 1px rgba(255,255,255,0.12);
  }
}

/* ── PANEL HEADING ROW ──────────────────────── */
.panel-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.panel-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  white-space: nowrap;
}
.panel-heading-deco { width: 1.25rem; height: 1rem; flex-shrink: 0; }
.panel-heading-deco--flip { transform: scaleX(-1); }

/* ── PANEL CATEGORY CARDS ───────────────────── */
.panel-cats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 600px) {
  .panel-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .panel-cats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.pcat-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid #e8ecf4;
  padding: 1rem 0.9rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pcat-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }

.pcat--blue   { border-bottom: 3px solid #3b82f6; }
.pcat--red    { border-bottom: 3px solid #ef4444; }
.pcat--amber  { border-bottom: 3px solid #f59e0b; }
.pcat--indigo { border-bottom: 3px solid #6366f1; }
.pcat--green  { border-bottom: 3px solid #22c55e; }
.pcat--fire   { border-bottom: 3px solid #f97316; }

.pcat__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.pcat__icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pcat__icon-wrap .material-symbols-outlined {
  font-size: 1.4rem;
  color: #fff;
  font-variation-settings: 'FILL' 1;
}
.pcat-icon--blue   { background: #3b82f6; }
.pcat-icon--red    { background: #ef4444; }
.pcat-icon--amber  { background: #f59e0b; }
.pcat-icon--indigo { background: #6366f1; }
.pcat-icon--green  { background: #22c55e; }
.pcat-icon--fire   { background: #f97316; }

@media (min-width: 1024px) {
  .pcat-card {
    padding: 1.25rem 1.1rem;
    border-radius: 18px;
  }
  .pcat__icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
  }
  .pcat__icon-wrap .material-symbols-outlined { font-size: 1.55rem; }
  .pcat__name { font-size: 1rem; }
  .pcat__desc { font-size: 0.75rem; }
  .pcat__list li { font-size: 0.78rem; }
  .pcat__item-icon { width: 1.45rem; height: 1.45rem; }
  .pcat__item-icon .material-symbols-outlined { font-size: 0.9rem; }
}

.pcat__blob {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  opacity: 0.18;
  flex-shrink: 0;
}
.pcat--blue   .pcat__blob { background: #3b82f6; }
.pcat--red    .pcat__blob { background: #ef4444; }
.pcat--amber  .pcat__blob { background: #f59e0b; }
.pcat--indigo .pcat__blob { background: #6366f1; }
.pcat--green  .pcat__blob { background: #22c55e; }
.pcat--fire   .pcat__blob { background: #f97316; }

.pcat__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.1rem;
  line-height: 1.2;
}
.pcat__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8ecf4;
}

.pcat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.pcat__list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #374151;
  line-height: 1.35;
}
.pcat__list li svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
  color: #9ca3af;
}

.pcat__item-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pcat__item-icon .material-symbols-outlined {
  font-size: 0.85rem;
  font-variation-settings: 'FILL' 1;
}
.pcat-item--blue   { background: #eff6ff; }
.pcat-item--blue   .material-symbols-outlined { color: #3b82f6; }
.pcat-item--red    { background: #fef2f2; }
.pcat-item--red    .material-symbols-outlined { color: #ef4444; }
.pcat-item--amber  { background: #fffbeb; }
.pcat-item--amber  .material-symbols-outlined { color: #f59e0b; }
.pcat-item--indigo { background: #eef2ff; }
.pcat-item--indigo .material-symbols-outlined { color: #6366f1; }
.pcat-item--green  { background: #f0fdf4; }
.pcat-item--green  .material-symbols-outlined { color: #22c55e; }
.pcat-item--fire   { background: #fff7ed; }
.pcat-item--fire   .material-symbols-outlined { color: #f97316; }

.products-group + .products-group {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.products-group__label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 0.55rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 0.7rem 0.3rem 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.product-card__badge {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.5;
  pointer-events: none;
}
.badge--green  { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.badge--red    { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.badge--blue   { background: #dbeafe; color: #1d4ed8; border: 1px solid #bfdbfe; }

.product-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.product-card__icon .material-symbols-outlined {
  font-size: 1.25rem;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.product-card__name {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* Card colour variants */
.product-card--blue   { background: #eff6ff; border-color: #bfdbfe; }
.product-card--red    { background: #fef2f2; border-color: #fecaca; }
.product-card--indigo { background: #eef2ff; border-color: #c7d2fe; }
.product-card--yellow { background: #fefce8; border-color: #fde68a; }
.product-card--green  { background: #f0fdf4; border-color: #bbf7d0; }
.product-card--sky    { background: #f0f9ff; border-color: #bae6fd; }
.product-card--pink   { background: #fdf4ff; border-color: #f0abfc; }
.product-card--amber  { background: #fffbeb; border-color: #fde68a; }
.product-card--slate  { background: #f8fafc; border-color: #e2e8f0; }
.product-card--cyan   { background: #ecfeff; border-color: #a5f3fc; }
.product-card--purple { background: #faf5ff; border-color: #e9d5ff; }
.product-card--orange { background: #fff7ed; border-color: #fed7aa; }
.product-card--fire   { background: #fff1f0; border-color: #fecaca; }
.product-card--navy-l { background: #f0f4ff; border-color: #c7d2fe; }
.product-card--agri   { background: #f0fdf4; border-color: #bbf7d0; }
.product-card--sec    { background: #eff6ff; border-color: #bfdbfe; }

/* Icon colours per variant */
.product-card--blue   .material-symbols-outlined { color: #1d4ed8; }
.product-card--red    .material-symbols-outlined { color: #b91c1c; }
.product-card--indigo .material-symbols-outlined { color: #4338ca; }
.product-card--yellow .material-symbols-outlined { color: #b45309; }
.product-card--green  .material-symbols-outlined { color: #15803d; }
.product-card--sky    .material-symbols-outlined { color: #0284c7; }
.product-card--pink   .material-symbols-outlined { color: #a21caf; }
.product-card--amber  .material-symbols-outlined { color: #d97706; }
.product-card--slate  .material-symbols-outlined { color: var(--navy); }
.product-card--cyan   .material-symbols-outlined { color: #0e7490; }
.product-card--purple .material-symbols-outlined { color: #7c3aed; }
.product-card--orange .material-symbols-outlined { color: #c2410c; }
.product-card--fire   .material-symbols-outlined { color: #b91c1c; }
.product-card--navy-l .material-symbols-outlined { color: var(--navy); }
.product-card--agri   .material-symbols-outlined { color: #15803d; }
.product-card--sec    .material-symbols-outlined { color: #1d4ed8; }


/* ══════════════════════════════════════════════
   S3 · TRUSTED-BY
══════════════════════════════════════════════ */
.trusted {
  background: #f5f7ff;
  padding: clamp(3rem, 5vw, 5rem) 0;
}

/* ── Heading block ────────────────────────── */
.trusted__header {
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}
.trusted__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.65rem;
}
.trusted__heading {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.trusted__rule {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--deep-blue));
  border-radius: 99px;
  margin: 0 auto;
}

/* ── Logo grid ────────────────────────────── */
.trusted__logos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .trusted__logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .trusted__logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* ── Logo card ────────────────────────────── */
.trusted__logo-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid #e5e7eb;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 10px rgba(0,0,0,0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.trusted__logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10), 0 4px 14px rgba(0,0,0,0.06);
  border-color: #d1d5db;
}
.trusted__logo-img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}
.trusted__logo-card:hover .trusted__logo-img {
  transform: scale(1.05);
}

@media (max-width: 599px) {
  .trusted__logo-card { padding: 1.5rem; min-height: 100px; }
  .trusted__logo-img  { height: 40px; max-width: 130px; }
}

/* ══════════════════════════════════════════════
   S4 · PROOF OF CONVERSATION
══════════════════════════════════════════════ */
.conversation {
  padding: 5rem 0;
  background: var(--white);
}
.conversation__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .conversation__inner { grid-template-columns: 1fr 1fr; }
}

/* WhatsApp mock UI */
.whatsapp-mock {
  background: #ece5dd;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin: 0 auto;
}
.wa-header {
  background: #075e54;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-name { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.wa-status { color: rgba(255,255,255,0.7); font-size: 0.75rem; }

.wa-body { padding: 1rem 0.85rem; display: flex; flex-direction: column; gap: 0.6rem; }
.wa-msg {
  max-width: 82%;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.55;
  position: relative;
}
.wa-msg p { margin: 0; }
.wa-msg--in  { background: var(--white); align-self: flex-start; border-bottom-left-radius: 2px; }
.wa-msg--out { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 2px; }
.wa-time {
  display: block;
  font-size: 0.68rem;
  color: #999;
  text-align: right;
  margin-top: 0.25rem;
}
.wa-footer {
  background: rgba(0,0,0,0.06);
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  padding: 0.5rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   S5 · WHO WE'RE NOT FOR
══════════════════════════════════════════════ */
.not-for {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
}
.not-for .section-title { color: var(--white); }
.not-for__inner { max-width: 840px; margin: 0 auto; }
.not-for__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .not-for__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.not-for__col--no .not-for__list { display: flex; flex-direction: column; gap: 1rem; }
.not-for__col--no .not-for__list li {
  padding-left: 1.6rem;
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.55;
}
.not-for__col--no .not-for__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

.not-for__col--yes {
  background: rgba(41,170,225,0.12);
  border: 1px solid rgba(41,170,225,0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.not-for__yes-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.not-for__yes-text {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   S6 · FOUNDER NOTE
══════════════════════════════════════════════ */
.founder {
  padding: 5rem 0;
  background: var(--off-white);
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .founder__inner { grid-template-columns: 1fr 1fr; }
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #d1d9e8;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #5a6890;
  font-size: 0.85rem;
  line-height: 1.5;
  border: 2px dashed #aab4cc;
}
.founder__photo-caption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.founder__note-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.founder__quote {
  border-left: 3px solid var(--blue);
  padding-left: 1.5rem;
}
.founder__quote p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.founder__quote footer {
  margin-top: 1.25rem;
}
.founder__quote cite { font-style: normal; }
.founder__quote cite strong { font-size: 1rem; display: block; margin-bottom: 0.2rem; }
.irdai-verify {
  font-size: 0.8rem;
  color: var(--blue);
  margin-left: 0.5rem;
}
.founder__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.75rem;
}
.founder__link {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════
   S7 · MONEY TRANSPARENCY
══════════════════════════════════════════════ */
.money {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.money__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.money__icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
  font-weight: 700;
}
.money .section-title { margin-bottom: 1.5rem; }
.money__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}
.money__text strong { color: var(--navy); }

/* ══════════════════════════════════════════════
   S8 · TWO DOORS
══════════════════════════════════════════════ */
.doors {
  background: var(--off-white);
  padding: 5rem 0;
}
.doors__title { text-align: center; margin-bottom: 2.5rem; }
.doors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .doors__grid { grid-template-columns: 1fr 1fr; }
}

.door {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.door:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.door--family { border-top-color: var(--blue); }
.door--business { border-top-color: var(--gold); }

.door__icon { font-size: 2.25rem; margin-bottom: 1rem; }
.door__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.door__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.door__list li {
  font-size: 0.93rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.door__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
  top: 0.1em;
}
.door--business .door__list li::before { color: var(--orange); }
.door__promise {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.door__cta {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  transition: all var(--transition);
}
.door__cta:hover { background: var(--navy); color: var(--white); }

/* ══════════════════════════════════════════════
   S9 · HONEST NUMBERS
══════════════════════════════════════════════ */
.numbers {
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  color: var(--white);
  padding: 4rem 0 2rem;
}
.numbers__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .numbers__inner { grid-template-columns: repeat(4, 1fr); }
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.numbers__note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding-bottom: 2rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   S10 · CLAIM STORIES
══════════════════════════════════════════════ */
.claims {
  background: var(--white);
  padding: 5rem 0;
}
.claims .section-title { margin-bottom: 2.5rem; }
.claims__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .claims__grid { grid-template-columns: 1fr 1fr; }
}

.claim-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
}
.claim-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--blue);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.claim-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.claim-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
  counter-reset: none;
}
.claim-timeline li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.claim-timeline__day {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 0.1rem;
  letter-spacing: 0.03em;
}

.claim-card__quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}
.claim-card__quote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.claims__cta { text-align: center; }

/* ══════════════════════════════════════════════
   S11 · QUOTE
══════════════════════════════════════════════ */
.quote {
  background: var(--off-white);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.quote__inner { max-width: 640px; margin: 0 auto; }
.quote__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  counter-reset: steps;
}
.quote__steps li {
  padding-left: 3rem;
  position: relative;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.6;
  counter-increment: steps;
}
.quote__steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  top: 0.1rem;
}

/* ══════════════════════════════════════════════
   S12 · RESOURCES
══════════════════════════════════════════════ */
.resources {
  background: var(--white);
  padding: 5rem 0;
}
.tools__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .tools__grid { grid-template-columns: 1fr 1fr; }
}

.tool-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
  text-decoration: none;
}
.tool-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tool-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.tool-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.tool-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.tool-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

.guides__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.guides__list { display: flex; flex-direction: column; gap: 0.65rem; }
.guide-link {
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  text-decoration: none;
}
.guide-link::before { content: '📄'; }
.guide-link:hover { border-color: var(--blue); color: var(--blue); background: #eef7fc; }

/* ══════════════════════════════════════════════
   S13 · FAQ
══════════════════════════════════════════════ */
.faq {
  background: var(--off-white);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq .section-title { margin-bottom: 2rem; }

.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  cursor: pointer;
  border: none;
}
.faq__q:hover { color: var(--blue); }

.faq__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2329aae1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}
.faq__q[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq__a > div { overflow: hidden; }
.faq__a > div p {
  padding-bottom: 1.1rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }

/* ══════════════════════════════════════════════
   S14 · FINAL CTA
══════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
}
.final-cta__inner { max-width: 600px; margin: 0 auto; }
.final-cta__headline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.final-cta__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2.25rem;
}
.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding-top: 3.5rem;
}

/* 4-block grid */
.footer__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer__blocks { grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; }
}

/* Shared block styles */
.footer__block {}
.footer__block-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Block 1 — Compliance */
.footer__logo { height: 30px; margin-bottom: 1rem; opacity: 0.85; }
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer__compliance-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer__compliance-list span { color: rgba(255,255,255,0.35); font-size: 0.72rem; display: block; }
.footer__grievance {
  font-size: 0.8rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}
.footer__grievance-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.footer__grievance a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__grievance a:hover { color: var(--blue); }

/* Block 2 — Navigation */
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--blue); }

.footer__insurers-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.65rem;
}
.footer__insurer-logos { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.insurer-chip {
  font-size: 0.72rem;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
}

/* Block 3 — Contact */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}
.footer__contact-list svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--blue);
}
.footer__contact-list .icon-wa-sm {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  fill: var(--wa-green);
  color: var(--wa-green);
}
.footer__contact-list a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact-list a:hover { color: var(--blue); }
.footer__hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.85rem;
}
.footer__hours span { color: rgba(255,255,255,0.3); font-style: italic; }

/* Block 4 — Legal & Social */
.footer__social { margin-top: 1.5rem; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__social-link:hover { color: var(--blue); }

/* Footer bottom bar */
.footer__bottom { padding: 1.1rem 0; }
.footer__bottom-inner {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ══════════════════════════════════════════════
   STICKY WHATSAPP BUTTON
══════════════════════════════════════════════ */
.sticky-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50px;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.sticky-wa svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}
.sticky-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
@media (max-width: 480px) {
  .sticky-wa__label { display: none; }
  .sticky-wa { padding: 0.85rem; border-radius: 50%; }
}

/* ══════════════════════════════════════════════
   PRODUCT CATEGORY VERTICAL CARD LAYOUT
══════════════════════════════════════════════ */
.products-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.product-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.5rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-align: center;
}
.product-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.11);
}

.product-cat-card__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  flex-shrink: 0;
  margin-bottom: 0.35rem;
}
.product-cat-card__icon .material-symbols-outlined {
  font-size: 1.1rem;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.product-cat-card__name {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.45rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  width: 100%;
}

.product-cat-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-cat-card__list li {
  font-size: 0.57rem;
  color: #374151;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 3px;
  padding: 0.12rem 0.3rem;
  line-height: 1.4;
  text-align: center;
}

/* Card colour variants */
.product-cat-card--blue   { background: #eff6ff; border-color: #bfdbfe; }
.product-cat-card--red    { background: #fef2f2; border-color: #fecaca; }
.product-cat-card--amber  { background: #fffbeb; border-color: #fde68a; }
.product-cat-card--indigo { background: #eef2ff; border-color: #c7d2fe; }
.product-cat-card--green  { background: #f0fdf4; border-color: #bbf7d0; }
.product-cat-card--fire   { background: #fff7ed; border-color: #fed7aa; }

.product-cat-card--blue   .product-cat-card__icon .material-symbols-outlined { color: #1d4ed8; }
.product-cat-card--red    .product-cat-card__icon .material-symbols-outlined { color: #b91c1c; }
.product-cat-card--amber  .product-cat-card__icon .material-symbols-outlined { color: #d97706; }
.product-cat-card--indigo .product-cat-card__icon .material-symbols-outlined { color: #4338ca; }
.product-cat-card--green  .product-cat-card__icon .material-symbols-outlined { color: #15803d; }
.product-cat-card--fire   .product-cat-card__icon .material-symbols-outlined { color: #c2410c; }

/* Mobile: 2 columns */
@media (max-width: 480px) {
  .products-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.35rem; }
  .product-cat-card { padding: 0.6rem 0.4rem; }
  .product-cat-card__icon { width: 1.8rem; height: 1.8rem; }
  .product-cat-card__icon .material-symbols-outlined { font-size: 0.95rem; }
  .product-cat-card__list li { font-size: 0.54rem; }
}

/* ══════════════════════════════════════════════
   MOBILE — GLOBAL SECTION SPACING
══════════════════════════════════════════════ */
@media (max-width: 639px) {
  .conversation  { padding: 3rem 0; }
  .not-for       { padding: 3rem 0; }
  .founder       { padding: 3rem 0; }
  .money         { padding: 3rem 0; }
  .doors         { padding: 3rem 0; }
  .numbers       { padding: 2.5rem 0 1.5rem; }
  .claims        { padding: 3rem 0; }
  .quote         { padding: 3rem 0; }
  .resources     { padding: 3rem 0; }
  .faq           { padding: 3rem 0; }
  .final-cta     { padding: 3.5rem 0; }

  /* Section title smaller on mobile */
  .section-title { font-size: clamp(1.2rem, 5vw, 1.7rem); }

  /* Hero headline */
  .hero__headline { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .hero__sub      { font-size: 0.95rem; }

  /* Full-width outline-light button */
  .final-cta__btns {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta__btns .btn {
    justify-content: center;
    text-align: center;
  }

  /* Claim cards */
  .claim-card { padding: 1.25rem; }

  /* Door cards */
  .door { padding: 1.5rem 1.25rem; }

  /* WhatsApp mock — full width */
  .whatsapp-mock { max-width: 100%; }

  /* Trusted logos — smaller on mobile */
  .trusted__logo-img {
    height: 38px;
    max-width: 100px;
  }

  /* Nav logo — slightly smaller */
  .nav__logo-img { height: 26px; }

  /* Footer logo */
  .footer__logo { height: 24px; }
}

/* ── PRODUCT CARDS — compact on small screens ─ */
@media (max-width: 480px) {
  .products-panel { padding: 0.75rem 0.65rem 0.9rem; }
  .products-grid  { gap: 0.3rem; }

  .product-card {
    padding: 0.5rem 0.15rem 0.4rem;
    gap: 0.2rem;
    border-radius: 8px;
  }
  .product-card__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .product-card__icon .material-symbols-outlined { font-size: 1rem; }
  .product-card__name { font-size: 0.5rem; letter-spacing: 0.02em; }

  .products-group__label { font-size: 0.56rem; margin-bottom: 0.4rem; }
  .products-group + .products-group { margin-top: 0.65rem; padding-top: 0.65rem; }
}

/* ── NUMBERS GRID — always 2 col on mobile ─── */
@media (max-width: 479px) {
  .numbers__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat__num { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ── FOOTER — single column tight spacing ──── */
@media (max-width: 767px) {
  .footer__blocks { gap: 1.75rem; padding-bottom: 1.75rem; }
  .footer { padding-top: 2.5rem; }

  /* Stack insurer chips */
  .footer__insurer-logos { gap: 0.3rem; }
}

/* ── QUOTE STEPS — full-width on mobile ─────── */
@media (max-width: 639px) {
  .quote__inner  { padding-inline: 0; }
  .quote__steps li { font-size: 0.93rem; }
}

/* ── FAQ — tighter padding ───────────────────── */
@media (max-width: 639px) {
  .faq__inner { padding-inline: 0; }
  .faq__q     { font-size: 0.92rem; padding: 0.9rem 0; }
}

/* ── HERO TRUST BADGES — wrap cleanly ───────── */
@media (max-width: 360px) {
  .hero__trust-badges { gap: 0.35rem 0.75rem; }
  .hero__trust-badges li { font-size: 0.73rem; }
}

/* ── CONVERSATION SECTION ────────────────────── */
@media (max-width: 767px) {
  .conversation__inner { gap: 2rem; }
}

/* ── FOUNDER SECTION ─────────────────────────── */
@media (max-width: 767px) {
  .founder__inner { gap: 2rem; }
  .founder__quote { padding-left: 1rem; }
}

/* ── NOT-FOR SECTION ─────────────────────────── */
@media (max-width: 639px) {
  .not-for__inner { padding-inline: 0; }
  .not-for__col--yes { padding: 1.1rem; }
}

/* ── DOORS SECTION ───────────────────────────── */
@media (max-width: 639px) {
  .doors__title { margin-bottom: 1.5rem; }
  .doors__grid  { gap: 1rem; }
}

/* ── RESOURCES / TOOLS ───────────────────────── */
@media (max-width: 639px) {
  .tool-card { padding: 1.25rem; }
  .tools__grid { gap: 1rem; margin-bottom: 2rem; }
}
