
:root {
  --color-primary: #0B1F3A;
  --color-primary-light: #1A3A5C;
  --color-primary-hover: #0D2647;
  --color-accent: #C9A84C;
  --color-accent-light: #F0D58C;
  --color-accent-dark: #A8861E;
  --color-bg: #F8F9FA;
  --color-bg-alt: #F2F4F7;
  --color-surface: #FFFFFF;
  --color-border: #DEE2E6;
  --color-border-dark: #CED4DA;
  --color-text-primary: #1C1C1E;
  --color-text-secondary: #495057;
  --color-text-muted: #6C757D;
  --color-text-inverse: #FFFFFF;
  --color-success: #28A745;
  --color-error: #DC3545;
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --shadow-xs: 0 1px 2px rgba(11,31,58,0.06);
  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 4px 16px rgba(11,31,58,0.10);
  --shadow-lg: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-xl: 0 16px 48px rgba(11,31,58,0.16);
  --shadow-nav: 0 2px 12px rgba(11,31,58,0.10);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --ease-standard: cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  --container-max: 1200px;
  --nav-height: 80px;
  --_base---global-variable--global-full: 100%;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Skip nav */
.skip-nav {
  position: absolute;
  top: -100%; left: 16px;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
  font-size: 14px;
  font-weight: 600;
}
.skip-nav:focus { top: 16px; }

/* Focus ring */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }
@media (min-width: 1024px) { .container { padding-inline: 64px; } }

.section { padding-block: 50px; }
.section--alt   { background: var(--color-bg-alt); }
.section--navy  { background: var(--color-primary); }
.section--white { background: var(--color-surface); }

/* Problem section — the only card that slides over the sticky hero */
#problem {
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 56px rgba(11,31,58,0.13);
}
@media (max-width: 767px) { .section { padding-block: 56px; } }

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header--left { text-align: left; margin-inline: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-label--inverse {
  background: rgba(201,168,76,0.2);
  color: var(--color-accent-light);
}
.section-label .star { color: var(--color-accent); font-size: 10px; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.section-heading em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-accent-dark);
  font-weight: 400;
}
.section-heading--inverse { color: var(--color-text-inverse); }
.section-heading--inverse em { color: var(--color-accent-light); }

.section-subtext {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
}
.section-subtext--inverse { color: rgba(255,255,255,0.72); }
.section-header--left .section-subtext { margin-inline: 0; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-nav);
}
.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.nav-logo-sub {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 3px;
  /* pill container */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 5px;
  white-space: nowrap;
  z-index: 10;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-primary); background: var(--color-bg-alt); }
.nav-link svg { width: 13px; height: 13px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 16px 16px;
  min-width: 580px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .nav-dropdown,
.nav-item--open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item--open .nav-link svg { transform: rotate(180deg); }
.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: var(--color-bg-alt); }
.nav-dropdown-icon {
  width: 36px; height: 36px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.nav-dropdown-content { flex: 1; }
.nav-dropdown-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  line-height: 1.3;
}
.nav-dropdown-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.4;
  display: block;
}
.nav-dropdown-footer {
  border-top: 1px solid var(--color-border);
  margin-top: 12px;
  padding-top: 12px;
  text-align: center;
}
.nav-dropdown-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.15s;
}
.nav-dropdown-footer a:hover { color: var(--color-accent-dark); }

/* Small dropdown */
.nav-dropdown--sm { min-width: 220px; }
.nav-dropdown--sm .nav-dropdown-grid { grid-template-columns: 1fr; }

.nav-cta {
  display: none !important;
  margin-left: 8px;
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex !important; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger:hover { background: var(--color-bg-alt); }
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(11, 31, 58, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 90;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-standard),
              opacity 0.35s var(--ease-standard);
  opacity: 0;
  padding: 16px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
}
.mobile-drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hide drawer CTA footer — bottom of drawer already has the nav links */
.mobile-drawer-footer {
  display: none !important;
}

/* Nav card inside drawer */
.mobile-drawer > nav {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
  text-align: center;
}
.mobile-nav-link:last-child { border-bottom: none; }

/* Active mobile nav link */
.mobile-nav-link--active {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
  border-bottom-color: var(--color-accent) !important;
}

.mobile-nav-section {
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-section:last-of-type { border-bottom: none; }

.mobile-nav-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, color 0.15s;
  text-align: center;
}
.mobile-nav-section-title:hover { background: var(--color-bg-alt); }

/* Chevron for section — positioned absolute so it doesn't break centering */
.mobile-nav-section-title {
  position: relative;
}
.mobile-nav-section-title::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22%236b7280%22 stroke-width%3D%222.5%22%3E%3Cpath d%3D%22M6 9l6 6 6-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 18px;
  transition: transform 0.25s;
}
.mobile-nav-section.mobile-section--open .mobile-nav-section-title::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22%230B1F3A%22 stroke-width%3D%222.5%22%3E%3Cpath d%3D%22M6 9l6 6 6-6%22%2F%3E%3C%2Fsvg%3E");
  transform: translateY(-50%) rotate(180deg);
}
.mobile-nav-section.mobile-section--open .mobile-nav-section-title {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 14px 14px 0 0;
}

.mobile-nav-section-links {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 4px 8px 8px;
  background: var(--color-bg-alt);
  border-radius: 0 0 14px 14px;
}
.mobile-nav-section.mobile-section--open .mobile-nav-section-links {
  display: flex;
}
.mobile-nav-section-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  text-align: center;
}
.mobile-nav-section-link:hover { background: var(--color-surface); }
.mobile-nav-section-link .icon { font-size: 16px; }

/* Mobile drawer footer — hidden, CTA removed */
.mobile-drawer-footer { display: none !important; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  min-height: 50px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s var(--ease-bounce), box-shadow 0.15s, border-color 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); box-shadow: var(--shadow-sm); }

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-outline-navy {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-navy:hover { background: var(--color-primary); color: white; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #20BA58; }

.btn-lg { font-size: 16px; padding: 15px 32px; min-height: 54px; }
.btn-sm { font-size: 13px; padding: 9px 18px; min-height: 40px; }
.btn-full { width: 100%; }

.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

.btn-dark {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn-dark:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); box-shadow: var(--shadow-sm); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--color-bg-alt); color: var(--color-primary); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  background: var(--color-primary);
  position: sticky;
  top: var(--nav-height);
  z-index: 1;
  padding-block: 88px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transform-origin: top center;
  will-change: transform, opacity;
  overflow: hidden;
}

/* Background image layer — fades in after preloader */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/homepage_bg.webp') center top / cover no-repeat;
  z-index: 0;
  opacity: 0;
  animation: heroBgFadeIn 1.4s var(--ease-out) 0.5s forwards;
  pointer-events: none;
}

/* Gradient overlay — ensures left-side text stays readable */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,31,58,0.92) 0%,
    rgba(11,31,58,0.76) 38%,
    rgba(11,31,58,0.32) 68%,
    rgba(11,31,58,0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
}

@keyframes heroBgFadeIn {
  to { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.hero-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-primary);
}

.hero-subtext {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero visual column */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1023px) { .hero-visual { justify-content: center; } }

.hero-visual-frame {
  width: 100%;
  max-width: 500px;
  min-height: 380px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,31,58,0.15);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 24px;
  background:
    radial-gradient(ellipse 110% 55% at 50% 108%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.55) 40%, transparent 65%),
    radial-gradient(ellipse 60% 35% at 15% 88%, rgba(255,255,255,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 85% 82%, rgba(255,255,255,0.6) 0%, transparent 55%),
    linear-gradient(175deg, #5BAACF 0%, #72BCDE 12%, #8DC9E7 26%, #AADAF0 42%, #C3E5F5 56%, #D8EFF8 68%, #EAF5FB 78%, #F5FAFD 88%, #FBFCFE 100%);
}

/* Widget card */
.hero-widget {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px 16px;
  box-shadow: 0 8px 40px rgba(11,31,58,0.14), 0 2px 8px rgba(11,31,58,0.06);
  width: 100%;
  max-width: 250px;
  position: relative;
  z-index: 1;
}

.hero-widget-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hero-widget-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-widget-period {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px 9px;
}
.hero-widget-period svg { flex-shrink: 0; }

/* Donut chart */
.hero-donut-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
}
.hero-donut-svg {
  width: 140px;
  height: 140px;
  display: block;
}
.hero-donut-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero-donut-pct {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}
.hero-donut-lbl {
  display: block;
  font-size: 8.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* Legend */
.hero-widget-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--color-text-secondary);
  font-weight: 500;
}
.hero-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* Bottom stats row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 18px 16px;
  text-align: center;
  background: rgba(11,31,58,0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
}

.hero-stat-icon {
  font-size: 22px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.hero-stat-num {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0 0 7px;
}
.hero-stat-pfx {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0;
  margin-right: 1px;
}
.hero-stat-count {
  display: inline;
}
.hero-stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0 0 3px;
}
.hero-stat-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ── Hero dark-bg colour overrides ─────────────────────────── */
.hero-eyebrow {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.hero-heading { color: #fff; }
.hero-heading em { color: var(--color-accent); }
.hero-subtext { color: rgba(255,255,255,0.78); }
.hero .btn-ghost {
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.06);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.50);
  color: #fff;
}
.hero-stat-num { color: var(--color-accent); }
.hero-stat-pfx { color: rgba(255,255,255,0.60); }
.hero-stat-lbl { color: #fff; }
.hero-stat-sub { color: rgba(255,255,255,0.60); }

@media (max-width: 767px) {
  .hero { padding-block: 64px 48px; }
  .hero::before {
    background-image: url('/images/homepage_bg-mobile.webp');
    background-position: center top;
  }
  .hero::after {
    background: linear-gradient(
      175deg,
      rgba(11,31,58,0.90) 0%,
      rgba(11,31,58,0.72) 40%,
      rgba(11,31,58,0.28) 75%,
      rgba(11,31,58,0.08) 100%
    );
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-top: 28px;
  }
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-block: 20px 28px;
  overflow: hidden;
}
.trust-bar-hd {
  text-align: center;
  margin-bottom: 16px;
}
.trust-bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── Marquee layout ── */
.trust-marquee {
  display: flex;
  align-items: center;
  gap: 0;
}
.marquee-lane {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* outer edge fades; centre edge stays sharp so logos appear to emerge from centre */
.marquee-lane--left {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 32%);
          mask-image: linear-gradient(to right, transparent 0%, #000 32%);
}
.marquee-lane--right {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 32%);
          mask-image: linear-gradient(to left, transparent 0%, #000 32%);
}
.marquee-strip {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-inline: 32px;
  flex-shrink: 0;
  will-change: transform;
  animation-play-state: paused;
}
.marquee-strip--left {
  animation: marquee-left 38s linear infinite;
}
/* right strip default position = translateX(-50%) so original logos sit at centre */
.marquee-strip--right {
  animation: marquee-right 38s linear infinite;
  transform: translateX(-50%);
}
.trust-marquee.marquee--playing .marquee-strip--left,
.trust-marquee.marquee--playing .marquee-strip--right {
  animation-play-state: running;
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.marquee-logo {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.25s, filter 0.25s;
  flex-shrink: 0;
  display: block;
  user-select: none;
  pointer-events: none;
}
.trust-marquee.marquee--playing .marquee-logo { pointer-events: auto; }
.marquee-logo:hover { opacity: 0.85; filter: grayscale(15%); }
.marquee-center-divider {
  width: 1px;
  height: 30px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ============================================================
   PAIN / PROBLEM SECTION
============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }

.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.pain-card-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.pain-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card-text {
  font-size: 14.5px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* Staggered directional entrance — pain cards */
.pain-grid .pain-card.reveal {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.pain-grid .pain-card.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Card 1 — masuk dari kiri */
.pain-grid .pain-card.reveal-delay-1 {
  transform: translateX(-80px);
  transition-delay: 1s;
}
/* Card 2 — masuk dari atas */
.pain-grid .pain-card.reveal-delay-2 {
  transform: translateY(-80px);
  transition-delay: 1s;
}
/* Card 3 — masuk dari kanan */
.pain-grid .pain-card.reveal-delay-3 {
  transform: translateX(80px);
  transition-delay: 1s;
}

.pain-resolution {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.pain-resolution strong { color: var(--color-primary); }

.pain-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* ============================================================
   PRODUCTS SECTION
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: #f7f7f8;
  border: 1px solid #ececef;
  border-radius: 24px;
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-media {
  min-height: 220px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.72);
  overflow: hidden;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.product-card-icon-wrap {
  width: 82px;
  height: 82px;
  background: rgba(255,255,255,0.86);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transition: transform 0.25s var(--ease-bounce);
}
.product-card:hover .product-card-icon-wrap { transform: scale(1.08); }
.product-card-name {
  font-size: 19px;
  font-family: "DM Serif Display", serif;
  font-weight: 700;
  color: #191a1f;
  line-height: 1.08;
  margin-top: 8px;
  text-align: center;
}
.product-card-abbr {
  display: inline-block;
  font-size: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  background: #1b1d24;
  color: white;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  letter-spacing: 0.04em;
  transform: translateY(-6px);
}
.product-card-desc {
  font-size: 16px;
  color: #4d4f58;
  line-height: 1.55;
  flex: 1;
  text-align: center;
}
.product-card-link {
  font-size: 15px;
  font-family: "DM Serif Display", serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #17191f;
  border-radius: 999px;
  padding: 12px 18px;
  margin-top: auto;
  line-height: 1.1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.product-card:hover .product-card-link {
  transform: translateY(-1px);
  background: #0f1116;
}
@media (max-width: 1023px) {
  .product-card-name { font-size: 18px; }
  .product-card-link { font-size: 15px; }
}
@media (max-width: 639px) {
  .product-card-name { font-size: 17px; }
  .product-card-link { font-size: 14px; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .hiw-steps { grid-template-columns: repeat(3, 1fr); } }

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 36px 32px;
}

/* Connector line between steps */
@media (min-width: 768px) {
  .hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -1px;
    width: 2px;
    height: 40px;
    background: rgba(201,168,76,0.3);
  }
}
@media (max-width: 767px) {
  .hiw-step {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  .hiw-step:last-child { border-bottom: none; }
}

.hiw-step-number {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}
@media (max-width: 767px) { .hiw-step-number { margin-bottom: 0; } }

.hiw-step-content { flex: 1; }
.hiw-step-title {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hiw-step-text {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
.hiw-step-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(201,168,76,0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 14px;
}

.hiw-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hiw-cta-text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

/* HIW background image */
#cara-ia-berfungsi {
  position: relative;
  overflow: hidden;
}
#cara-ia-berfungsi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hiw_bg.webp') center center / cover no-repeat;
  z-index: 0;
  opacity: 0;
  animation: heroBgFadeIn 1.2s var(--ease-out) 0.2s forwards;
  pointer-events: none;
}
#cara-ia-berfungsi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.82);
  z-index: 1;
  pointer-events: none;
}
#cara-ia-berfungsi .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   STATS SECTION
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  background: rgba(255,255,255,0.02);
  padding: 36px 24px;
  text-align: center;
  position: relative;
}
.stat-number {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-number span { color: var(--color-accent); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 100px;
  margin-inline: auto;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: none;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: var(--color-primary) !important;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/testimonials-bg.webp') center center / cover no-repeat;
  z-index: 0;
  opacity: 0;
  animation: heroBgFadeIn 1.2s var(--ease-out) 0.2s forwards;
  pointer-events: none;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.60);
  z-index: 1;
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
  max-width: min(1880px, 98vw);
  padding-inline: 20px;
}

.testimonials-header .section-heading {
  margin-bottom: 14px;
  color: #fff;
}
.testimonials-header .section-heading em { color: var(--color-accent); }

.testimonials-header .section-subtext {
  max-width: 320px;
  color: rgba(255,255,255,0.70);
}

.testimonials-rail {
  position: relative;
  overflow: hidden;
  padding: 28px 0 10px;
}

.testimonials-rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(to right, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0) 100%);
  z-index: 2;
  pointer-events: none;
}

.testimonials-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimonials-marquee 26s linear infinite;
}

.testimonials-rail:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonials-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: #f6f6f7;
  border: 1px solid #ececef;
  border-radius: 24px;
  padding: 52px 20px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  width: 235px;
  min-height: 330px;
  flex-shrink: 0;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.testimonial-profile {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(11,31,58,0.14);
}

.testimonial-quote-mark {
  position: static;
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1;
  color: #0f1014;
  opacity: 0.92;
  user-select: none;
  pointer-events: none;
}

.testimonial-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.72;
  flex: 1;
  font-style: normal;
  margin: 0;
}

.testimonial-footer {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-top: 0;
  padding-top: 4px;
  margin-top: auto;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  display: block;
  line-height: 1.3;
  font-family: var(--font-serif);
}
.testimonial-role {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

@media (max-width: 1023px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonials-section .container {
    max-width: 100%;
    padding-inline: 16px;
  }
  .testimonials-header .section-subtext {
    max-width: none;
  }
  .testimonials-rail::before {
    width: 72px;
  }
  .testimonial-card {
    width: 270px;
  }
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 380px 1fr; } }

.faq-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.faq-sidebar-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.faq-sidebar-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.accordion-list { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-item:first-child { border-top: 1px solid var(--color-border); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.accordion-trigger:hover .accordion-question { color: var(--color-primary); }
.accordion-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  transition: color 0.15s;
}
.accordion-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s var(--ease-standard), background 0.2s;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: var(--color-accent-light);
}
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-standard), opacity 0.3s;
  opacity: 0;
}
.accordion-panel.open { opacity: 1; }
.accordion-answer {
  font-size: 14.5px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  padding-bottom: 20px;
}
.accordion-answer a { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: 80px;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 250px; height: 250px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.cta-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}
.cta-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-microcopy-item { display: flex; align-items: center; gap: 5px; }
.cta-microcopy-item .check { color: var(--color-accent); }

/* ============================================================
   FOOTER
============================================================ */
/* ============================================================
   FOOTER — redesign (template-match)
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

/* Main grid: brand+newsletter | 3 link cols */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 40px; }
}

/* Brand col */
.footer-brand-col { }
.footer-logo-link { display: inline-block; margin-bottom: 28px; }
.footer-logo-img  { height: 36px; width: auto; display: block; }

/* Newsletter */
.footer-newsletter-label {
  font-size: 13.5px; font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
.footer-newsletter-form {
  display: flex;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 5px 5px 5px 16px;
  max-width: 320px;
}
.footer-newsletter-input {
  flex: 1; min-width: 0;
  border: none; background: transparent;
  font-size: 13px; font-family: var(--font-display);
  color: var(--color-text-primary); outline: none;
}
.footer-newsletter-input::placeholder { color: var(--color-text-muted); }
.footer-newsletter-btn {
  flex-shrink: 0;
  background: var(--color-primary); color: #fff;
  border: none; border-radius: var(--radius-full);
  padding: 9px 18px; font-size: 13px; font-weight: 600;
  font-family: var(--font-display); cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-newsletter-btn:hover { background: #162d52; }

/* Trust badges (compact row) */
.footer-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.footer-trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

/* Link columns */
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  font-size: 14px; color: var(--color-text-secondary);
  font-weight: 500; text-decoration: none;
  transition: color 0.15s; line-height: 1.4;
}
.footer-link:hover { color: var(--color-primary); }

/* Watermark brand text */
.footer-watermark {
  overflow: hidden;
  line-height: 0.82;
  pointer-events: none; user-select: none;
  padding-left: max(24px, calc((100vw - var(--container-max)) / 2));
}
.footer-watermark-text {
  font-family: var(--font-serif);
  font-size: clamp(72px, 13vw, 196px);
  color: var(--color-primary);
  opacity: 0.07;
  white-space: nowrap;
  display: block;
  letter-spacing: -0.02em;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copyright {
  font-size: 12px; color: var(--color-text-muted); line-height: 1.6;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12px; color: var(--color-text-muted);
  text-decoration: none; transition: color 0.15s;
}
.footer-legal a:hover { color: var(--color-primary); }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 80;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--color-primary);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@media (max-width: 1023px) {
  .wa-float { display: none !important; }
}

/* ============================================================
   MOBILE STICKY BAR
============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 68px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(11,31,58,0.1);
  z-index: 80;
}
@media (max-width: 767px) { .mobile-bar { display: flex; } }
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-display);
  transition: background 0.15s;
}
.mobile-bar-btn--wa { color: #25D366; border-right: 1px solid var(--color-border); }
.mobile-bar-btn--wa svg { width: 20px; height: 20px; fill: #25D366; }
.mobile-bar-btn--cta { background: var(--color-accent); color: var(--color-primary); }
.mobile-bar-btn--cta:hover { background: var(--color-accent-dark); }
@media (max-width: 767px) { body { padding-bottom: 68px; } }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

/* ============================================================
   UTILITIES
============================================================ */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), visibility 0.55s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: preloader-breathe 2.4s ease-in-out infinite;
}
.preloader-logo-ring {
  position: relative;
  width: 88px;
  height: 88px;
}
.preloader-spinner {
  position: absolute;
  inset: 0;
  border: 3px solid #E8EFFE;
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.preloader-icon {
  position: absolute;
  inset: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-favicon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.preloader-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin: 0;
}
.preloader-brand span {
  color: var(--color-accent);
}
.preloader-dots {
  display: flex;
  gap: 7px;
}
.preloader-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.3;
  animation: preloader-dot-pulse 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes preloader-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes preloader-dot-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
============================================================ */
[data-hero-anim] {
  opacity: 0;
}
[data-hero-anim="1"],
[data-hero-anim="2"],
[data-hero-anim="3"],
[data-hero-anim="4"],
[data-hero-anim="5"] {
  transform: translateY(28px);
}
[data-hero-anim="right"] {
  transform: translateX(44px);
}

[data-hero-anim].hero-animated {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-duration: 0.72s;
}
[data-hero-anim="1"].hero-animated,
[data-hero-anim="2"].hero-animated,
[data-hero-anim="3"].hero-animated,
[data-hero-anim="4"].hero-animated,
[data-hero-anim="5"].hero-animated {
  animation-name: heroFadeUp;
}
[data-hero-anim="right"].hero-animated {
  animation-name: heroFadeRight;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(44px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Widget perpetual float */
.hero-widget {
  animation: heroWidgetFloat 5s ease-in-out infinite;
}
@keyframes heroWidgetFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Donut arc starts collapsed — JS drives it to target */
.hero-donut-arc {
  stroke-dasharray: 0 239;
  transition: none;
}

/* ============================================================
   PRODUCT PAGES — SHARED
============================================================ */

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  padding-top: 32px;
}
.breadcrumb-link {
  color: var(--color-text-muted);
  transition: color 0.18s;
}
.breadcrumb-link:hover { color: var(--color-primary); }
.breadcrumb-sep { color: var(--color-border-dark); }
.breadcrumb-current { color: var(--color-text-secondary); font-weight: 600; }

/* ── Product Hero ── */
.product-hero {
  background: var(--color-surface);
  padding-block: 0 72px;
  border-bottom: 1px solid var(--color-border);
}
.product-hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .product-hero-inner {
    grid-template-columns: 1fr 440px;
    gap: 64px;
  }
}

.product-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.product-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.product-hero-heading em {
  font-style: italic;
  color: var(--color-accent-dark);
}
.product-hero-subtext {
  font-size: 16.5px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.product-hero-proof {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.product-hero-proof li {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-hero-proof li::before { content: none; }

/* ── GMC Card Mockup ── */
.product-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gmc-card-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.gmc-card-mock {
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3A5C 55%, #0D2647 100%);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 20px 60px rgba(11,31,58,0.30), 0 4px 16px rgba(11,31,58,0.20);
  color: white;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gmc-card-mock::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
}
.gmc-card-mock::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.gmc-card-mock-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gmc-card-mock-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}
.gmc-card-mock-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: right;
}
.gmc-card-mock-chip {
  width: 36px;
  height: 26px;
  border-radius: 5px;
  background: linear-gradient(135deg, #C9A84C 0%, #F0D58C 50%, #A8861E 100%);
  margin-block: 8px;
  position: relative;
  z-index: 1;
}
.gmc-card-mock-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.gmc-card-mock-co {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.gmc-card-mock-row {
  display: flex;
  gap: 28px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.gmc-card-mock-lbl {
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.gmc-card-mock-val {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
}
.gmc-card-mock-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.gmc-card-mock-tags span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--color-accent);
}

/* Floaters */
.gmc-card-floater {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
  z-index: 10;
  animation: floaterBob 4s ease-in-out infinite;
}
.gmc-card-floater span { font-size: 14px; }
.gmc-card-floater--1 {
  bottom: -18px;
  right: 12px;
  animation-delay: 0.8s;
}
.gmc-card-floater--2 {
  top: -14px;
  left: 16px;
  animation-delay: 2s;
}
@keyframes floaterBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Product page typography helpers ── */
.pp-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}
.pp-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}
.pp-heading-left {
  text-align: left;
  margin-inline: 0;
}

/* ── Two-column section ── */
.pp-two-col {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 960px) {
  .pp-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
}

/* ── Explain cards ── */
.pp-two-col-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pp-explain-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pp-explain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pp-explain-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.pp-explain-title {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}
.pp-explain-desc {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── Coverage grid ── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .coverage-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.coverage-item {
  padding: 24px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.coverage-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.coverage-icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.coverage-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.coverage-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}
.coverage-note {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 16px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  line-height: 1.6;
}

/* ── Plan tier grid ── */
.plan-tier-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .plan-tier-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.plan-tier {
  padding: 32px 28px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan-tier:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.plan-tier--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.plan-tier--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(11,31,58,0.24);
}

.plan-tier-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-tier-header { display: flex; flex-direction: column; gap: 6px; }
.plan-tier-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}
.plan-tier--featured .plan-tier-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); border-color: transparent; }
.plan-tier-tag--accent {
  background: rgba(201,168,76,0.15);
  color: var(--color-accent-dark);
  border-color: rgba(201,168,76,0.3);
}
.plan-tier-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}
.plan-tier--featured .plan-tier-name { color: white; }
.plan-tier-tagline {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin: 0;
}
.plan-tier--featured .plan-tier-tagline { color: rgba(255,255,255,0.6); }

.plan-tier-price { display: flex; flex-direction: column; gap: 2px; }
.plan-tier-from {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-tier--featured .plan-tier-from { color: rgba(255,255,255,0.5); }
.plan-tier-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}
.plan-tier--featured .plan-tier-amount { color: var(--color-accent); }
.plan-tier-per {
  font-size: 12px;
  color: var(--color-text-muted);
}
.plan-tier--featured .plan-tier-per { color: rgba(255,255,255,0.5); }

.plan-tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-tier-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.plan-tier--featured .plan-tier-item { color: rgba(255,255,255,0.75); }
.plan-tier-item::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-success);
  margin-top: 1px;
}
.plan-tier-item--no::before {
  content: '✗';
  color: var(--color-text-muted);
}
.plan-tier--featured .plan-tier-item--no { color: rgba(255,255,255,0.35); }

.plan-tier-limit {
  font-size: 12.5px;
  color: var(--color-text-muted);
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.plan-tier--featured .plan-tier-limit {
  background: rgba(255,255,255,0.1);
  border-color: transparent;
  color: rgba(255,255,255,0.65);
}

.plan-tier-disclaimer {
  font-size: 12.5px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.65;
  padding: 0 8px;
}

/* ── Comparison table ── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--color-surface);
  min-width: 540px;
}
.compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-text-primary);
  background: var(--color-bg-alt);
  border-bottom: 2px solid var(--color-border);
  line-height: 1.35;
}
.compare-th-gmc {
  background: var(--color-primary) !important;
  color: white !important;
}
.compare-table tbody tr { border-bottom: 1px solid var(--color-border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--color-bg); }
.compare-table td {
  padding: 14px 20px;
  color: var(--color-text-secondary);
  vertical-align: top;
  line-height: 1.5;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
}
.compare-yes {
  color: var(--color-success) !important;
  font-weight: 600;
}
.compare-no {
  color: var(--color-text-muted) !important;
}
.compare-partial {
  color: #B45309 !important;
  font-weight: 600;
}
.compare-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.compare-cta p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

/* ── Audience grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.audience-card {
  padding: 28px 24px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.audience-icon {
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.audience-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.audience-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── hiw-step-desc alias (product pages use this class) ── */
.hiw-step-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Active nav dropdown item ── */
.nav-dropdown-item--active .nav-dropdown-title {
  color: var(--color-accent-dark);
  font-weight: 700;
}
.nav-dropdown-item--active {
  background: rgba(201,168,76,0.06);
}
.nav-dropdown-item--full {
  grid-column: 1 / -1;
}

/* ── Product page responsive ── */
@media (max-width: 767px) {
  .product-hero { padding-bottom: 48px; }
  .product-hero-inner { gap: 36px; }
  .product-hero-heading { font-size: clamp(28px, 7vw, 40px); }
  .product-hero-subtext { font-size: 15px; }
  .product-hero-actions { flex-direction: column; }
  .product-hero-actions .btn { width: 100%; justify-content: center; }
  .gmc-card-visual { max-width: 320px; }
  .plan-tier--featured { transform: none; }
  .plan-tier--featured:hover { transform: translateY(-4px); }
  .coverage-grid { grid-template-columns: 1fr; }
  .pp-two-col { gap: 32px; }
  .compare-cta { flex-direction: column; align-items: flex-start; }
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding-block: 0 72px;
  border-bottom: 1px solid var(--color-border);
}
.about-hero-inner {
  display: grid;
  gap: 48px;
  align-items: start;
  padding-top: 32px;
}
@media (min-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
}
.about-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  margin: 16px 0 20px;
}
.about-hero-heading em { font-style: italic; color: var(--color-accent-dark); }
.about-hero-subtext {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-lbl {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Values grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.about-value-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-value-icon { margin-bottom: 20px; }
.about-value-icon svg { width: 48px; height: 48px; }
.about-value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
.about-value-desc {
  font-size: 14.5px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Compare columns (navy section) */
.about-compare-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 720px) { .about-compare-grid { grid-template-columns: 1fr 1fr; } }
.about-compare-col {
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.about-compare-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
}
.about-compare-label--bad { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.about-compare-label--good { background: rgba(52,211,153,0.15); color: #6EE7B7; }
.about-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-compare-list li {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  color: rgba(255,255,255,0.75);
}
.about-compare-list--bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #FCA5A5;
  font-weight: 700;
}
.about-compare-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6EE7B7;
  font-weight: 700;
}

/* Partners grid */
.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 24px;
}
@media (max-width: 640px) { .about-partners-grid { grid-template-columns: repeat(2, 1fr); } }
.about-partner-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: box-shadow 0.2s;
}
.about-partner-item:hover { box-shadow: var(--shadow-sm); }
.about-partner-logo {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.about-partner-item:hover .about-partner-logo { filter: grayscale(0%); opacity: 1; }

/* Active nav-link for plain anchor (non-dropdown) */
.nav-link--active,
.nav-item--active > .nav-link {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
}

/* ── BLOG SECTION background ── */
.blog-section {
  position: relative;
  overflow: hidden;
  background: var(--color-primary) !important;
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/blog-bg.webp') center center / cover no-repeat;
  z-index: 0;
  opacity: 0;
  animation: heroBgFadeIn 1.2s var(--ease-out) 0.2s forwards;
  pointer-events: none;
}
.blog-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.78);
  z-index: 1;
  pointer-events: none;
}
.blog-section .container {
  position: relative;
  z-index: 2;
}
.blog-section .section-heading { color: #fff; }
.blog-section .section-heading em { color: var(--color-accent); }
.blog-section .section-subtext { color: rgba(255,255,255,0.70); }

/* ── BLOG CARDS (homepage + blog page) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-grid--listing { margin-top: 0; }

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card-img-wrap { display: block; text-decoration: none; flex-shrink: 0; }
.blog-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img--blue   { background: linear-gradient(135deg, #EEF2FF 0%, #C7D2FE 100%); }
.blog-card-img--gold   { background: linear-gradient(135deg, #FFFBEB 0%, #FDE68A 100%); }
.blog-card-img--green  { background: linear-gradient(135deg, #F0FDF4 0%, #BBF7D0 100%); }
.blog-card-img--purple { background: linear-gradient(135deg, #FAF5FF 0%, #DDD6FE 100%); }
.blog-card-img--teal   { background: linear-gradient(135deg, #F0FDFA 0%, #99F6E4 100%); }
.blog-card-img--red    { background: linear-gradient(135deg, #FFF1F2 0%, #FECDD3 100%); }
.blog-card-img-icon { font-size: 56px; line-height: 1; }
.blog-card-photo,
.blog-featured-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-dark);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.blog-card-time {
  font-size: 12px;
  color: var(--color-text-muted);
}
.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-primary);
  flex: 1;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s;
}
.blog-card-link:hover { color: var(--color-accent-dark); }

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── BLOG PAGE HERO ── */
.blog-page-hero {
  padding-block: 0 56px;
  border-bottom: 1px solid var(--color-border);
}
.blog-page-hero-inner { padding-top: 32px; }
.blog-page-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.blog-page-heading em { font-style: italic; color: var(--color-accent-dark); }
.blog-page-subtext {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 28px;
}

/* Category filter pills */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-cat-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  background: var(--color-surface);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.blog-cat-btn:hover,
.blog-cat-btn--active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(11,31,58,0.05);
}

/* ── FEATURED ARTICLE ── */
.blog-featured {
  display: grid;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (min-width: 768px) { .blog-featured { grid-template-columns: 380px 1fr; } }
.blog-featured:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.blog-featured-img {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-featured-img--blue { background: linear-gradient(135deg, #EEF2FF 0%, #C7D2FE 100%); }
.blog-featured-icon { font-size: 80px; line-height: 1; }

.blog-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.blog-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  color: var(--color-text-primary);
}
.blog-featured-excerpt {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
@media (max-width: 767px) {
  .blog-featured-body { padding: 24px; }
  .blog-featured-icon { font-size: 56px; }
}

/* ── ARTICLE PAGE ── */
.article-page-hero {
  padding-block: 0 48px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.article-hero-inner { padding-top: 32px; max-width: 780px; }

.article-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  margin: 16px 0 20px;
  color: var(--color-text-primary);
}
.article-heading em { font-style: italic; color: var(--color-accent-dark); }

.article-hero-image {
  margin: 28px 0 0;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.article-meta-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent-dark);
  background: rgba(201,168,76,0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.article-meta-sep { color: var(--color-border); font-size: 18px; line-height: 1; }
.article-meta-info { font-size: 13px; color: var(--color-text-muted); }

/* Layout: main body + sidebar */
.article-layout {
  display: grid;
  gap: 48px;
  align-items: start;
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .article-layout { grid-template-columns: 1fr 300px; gap: 64px; }
}

/* Prose styles */
.article-content { max-width: 720px; min-width: 0; }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--color-primary);
  margin: 44px 0 16px;
  line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 28px 0 10px;
}
.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}
.article-content p strong { color: var(--color-text-primary); font-weight: 700; }
.article-content ul, .article-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content a:hover { color: var(--color-accent-dark); }

/* Callout boxes */
.article-callout {
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.article-callout--tip { background: #EFF6FF; border-left: 4px solid #3B82F6; }
.article-callout--warn { background: #FFFBEB; border-left: 4px solid #F59E0B; }
.article-callout--info { background: #F0FDF4; border-left: 4px solid #22C55E; }
.article-callout-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.article-callout-text { font-size: 14.5px; line-height: 1.7; color: var(--color-text-primary); }
.article-callout-text strong { font-weight: 700; display: block; margin-bottom: 4px; }

/* In-article comparison table */
.article-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.article-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.article-table th.at-gmc { background: var(--color-primary); color: white; }
.article-table th.at-ghs { background: #1E3A5F; color: white; }
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:nth-child(even) td { background: var(--color-bg-alt); }
.at-yes { color: #16A34A; font-weight: 700; }
.at-no  { color: var(--color-text-muted); }
.at-partial { color: #B45309; font-weight: 600; }

/* Key points box */
.article-keybox {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  margin: 36px 0;
  color: white;
}
.article-keybox-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.article-keybox ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.article-keybox li {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
@media (min-width: 1024px) { .article-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); } }

.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.sidebar-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.sidebar-toc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sidebar-toc a {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.sidebar-toc a:hover { background: var(--color-bg-alt); color: var(--color-primary); }

.sidebar-cta {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: white;
}
.sidebar-cta-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 10px; }
.sidebar-cta-title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.sidebar-cta-text { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 18px; }

/* Related articles */
.article-related { border-top: 1px solid var(--color-border); padding-top: 48px; margin-top: 48px; }
.article-related-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.related-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.related-card-icon--gold   { background: linear-gradient(135deg,#FFFBEB,#FDE68A); }
.related-card-icon--green  { background: linear-gradient(135deg,#F0FDF4,#BBF7D0); }
.related-card-icon--purple { background: linear-gradient(135deg,#FAF5FF,#DDD6FE); }
.related-card-icon--teal   { background: linear-gradient(135deg,#F0FDFA,#99F6E4); }
.related-card-body {}
.related-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-accent-dark); }
.related-card-title { font-size: 13.5px; font-weight: 600; line-height: 1.4; color: var(--color-text-primary); margin-top: 4px; }

/* Author / share bar */
.article-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}
.article-author { font-size: 13px; color: var(--color-text-muted); }
.article-author strong { color: var(--color-text-primary); }
.article-share { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--color-text-muted); }
.article-share a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.article-share a:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ============================================================
   INDUSTRY PAGES
============================================================ */
.industry-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a6b 100%);
  padding: calc(var(--nav-height) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
}
.industry-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.industry-hero-inner { position: relative; max-width: 720px; }
.industry-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.industry-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.industry-hero-heading em { font-style: italic; color: var(--color-accent); }
.industry-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}
.industry-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Challenges grid */
.industry-challenges { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .industry-challenges { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .industry-challenges { grid-template-columns: repeat(2,1fr); } }
.industry-challenge-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
}
.industry-challenge-icon {
  font-size: 28px; margin-bottom: 14px; display: block; text-align: center;
}
.industry-challenge-title {
  font-size: 15px; font-weight: 700;
  color: var(--color-text-primary); margin-bottom: 8px;
}
.industry-challenge-desc {
  font-size: 14px; line-height: 1.65;
  color: var(--color-text-secondary);
}

/* Recommended products */
.industry-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 768px) { .industry-products-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .industry-products-grid { grid-template-columns: repeat(2,1fr); } }
.industry-product-card {
  display: flex; flex-direction: column;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-xs);
}
.industry-product-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.industry-product-card-icon {
  font-size: 28px; margin-bottom: 14px;
  width: 52px; height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.industry-product-card-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.industry-product-card-badge--must { background: #FEF3C7; color: #92400E; }
.industry-product-card-badge--rec  { background: #ECFDF5; color: #065F46; }
.industry-product-card-badge--opt  { background: #EFF6FF; color: #1E40AF; }
.industry-product-card-title {
  font-size: 15px; font-weight: 700;
  color: var(--color-text-primary); margin-bottom: 8px;
}
.industry-product-card-desc {
  font-size: 13.5px; line-height: 1.6;
  color: var(--color-text-secondary); flex: 1;
  margin-bottom: 16px;
}
.industry-product-card-link {
  font-size: 13px; font-weight: 600;
  color: var(--color-primary);
}
.industry-product-card:hover .industry-product-card-link { text-decoration: underline; }

/* Industry stats bar */
.industry-stats-bar {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
}
.industry-stat {
  flex: 1; min-width: 160px;
  padding: 28px 24px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}
.industry-stat:last-child { border-right: none; }
.industry-stat-num {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 400;
  color: var(--color-primary);
  display: block; margin-bottom: 4px;
}
.industry-stat-lbl {
  font-size: 13px; color: var(--color-text-muted);
}
@media (max-width: 640px) {
  .industry-stats-bar { flex-direction: column; }
  .industry-stat { border-right: none; border-bottom: 1px solid var(--color-border); }
  .industry-stat:last-child { border-bottom: none; }
}

/* Legal pages */
.legal-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a6b 100%);
  padding: calc(var(--nav-height) + 56px) 0 56px;
  text-align: center;
}
.legal-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-full); color: var(--color-accent);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 14px; margin-bottom: 20px;
}
.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff; margin-bottom: 12px; line-height: 1.2;
}
.legal-hero-date { font-size: 13px; color: rgba(255,255,255,0.55); }

.legal-layout {
  max-width: 780px; margin: 0 auto;
  padding: 64px 0 80px;
}
.legal-toc {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 12px; }
.legal-toc ol { padding-left: 20px; margin: 0; }
.legal-toc li { font-size: 14px; color: var(--color-primary); margin-bottom: 6px; }
.legal-toc a { color: var(--color-primary); text-decoration: none; font-weight: 500; }
.legal-toc a:hover { text-decoration: underline; }

.legal-section { margin-bottom: 44px; scroll-margin-top: 100px; }
.legal-section-num {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-accent);
  background: rgba(201,168,76,0.12); border-radius: var(--radius-full);
  padding: 2px 10px; margin-bottom: 10px;
}
.legal-section h2 {
  font-size: 20px; font-weight: 700; color: var(--color-text-primary);
  margin-bottom: 14px; line-height: 1.35;
}
.legal-section p {
  font-size: 15px; line-height: 1.75; color: var(--color-text-secondary);
  margin-bottom: 12px;
}
.legal-section ul, .legal-section ol {
  padding-left: 22px; margin-bottom: 14px;
}
.legal-section li {
  font-size: 15px; line-height: 1.7; color: var(--color-text-secondary);
  margin-bottom: 6px;
}
.legal-section strong { color: var(--color-text-primary); font-weight: 600; }
.legal-divider { border: none; border-top: 1px solid var(--color-border); margin: 0 0 44px; }
.legal-highlight {
  background: #FEF3C7; border-left: 3px solid #F59E0B;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px; margin-bottom: 14px;
  font-size: 14px; line-height: 1.65; color: #92400E;
}
.legal-contact-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-top: 48px;
}
.legal-contact-box h3 { font-size: 16px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 10px; }
.legal-contact-box p { font-size: 14px; line-height: 1.65; color: var(--color-text-secondary); margin-bottom: 6px; }
.legal-contact-box a { color: var(--color-primary); font-weight: 500; }

/* ============================================================
   MOBILE RESPONSIVE — COMPREHENSIVE PASS
   All breakpoints: 1024px | 767px | 639px | 479px
   ============================================================ */

/* Prevent horizontal overflow globally */
html { overflow-x: hidden; }
* { box-sizing: border-box; }

/* ── 1024px: tablet tweaks ── */
@media (max-width: 1024px) {
  .section-heading { font-size: clamp(24px, 4vw, 32px); }
  .cta-heading { font-size: clamp(24px, 4vw, 36px); }
}

/* ── 767px: mobile core ── */
@media (max-width: 767px) {

  /* Buttons — full-width in action groups */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .cta-section { padding-block: 56px; }

  /* Industry page hero */
  .industry-hero { padding: calc(var(--nav-height) + 32px) 0 48px; }
  .industry-hero-heading { font-size: clamp(24px, 7vw, 34px); line-height: 1.25; }
  .industry-hero-sub { font-size: 15px; }
  .industry-hero-actions { flex-direction: column; align-items: stretch; }
  .industry-hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Industry stats bar — stack vertically */
  .industry-stats-bar { flex-direction: column; }
  .industry-stat { border-right: none; border-bottom: 1px solid var(--color-border); padding: 20px 20px; }
  .industry-stat:last-child { border-bottom: none; }
  .industry-stat-num { font-size: 26px; }

  /* Tables — scrollable on mobile (biggest cause of horizontal overflow) */
  .article-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    font-size: 13.5px;
  }
  .article-table th, .article-table td { padding: 10px 12px; }
  .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13.5px; }

  /* Legal pages */
  .legal-hero { padding: calc(var(--nav-height) + 32px) 0 36px; }
  .legal-hero-title { font-size: clamp(22px, 7vw, 34px); }
  .legal-layout { padding: 36px 0 48px; }
  .legal-toc { padding: 16px 18px; }
  .legal-section h2 { font-size: 18px; }
  .legal-section p, .legal-section li { font-size: 14.5px; }
  .legal-contact-box { padding: 20px 18px; }

  /* Section header */
  .section-subtext { font-size: 15px; }

  /* Article pages */
  .article-callout { flex-direction: column; gap: 10px; }
  .article-callout-icon { font-size: 24px; }
  .article-keybox { padding: 20px; }
  .article-footer-bar { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* About page */
  .about-hero-subtext { font-size: 15px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-form-group-row { flex-direction: column; }

  /* Product hero actions already stacks — ensure buttons full-width */
  .product-hero-actions { flex-direction: column; align-items: stretch; }
  .product-hero-actions .btn { width: 100%; justify-content: center; }

  /* Plan tiers — reduce padding */
  .plan-tier { padding: 24px 20px; }
  .plan-tier--featured { transform: none; }
  .plan-tier--featured:hover { transform: translateY(-4px); }

  /* Pricing/compare CTA */
  .compare-cta { flex-direction: column; align-items: flex-start; }

  /* Nav hamburger touch target */
  .nav-hamburger { min-width: 44px; min-height: 44px; }

  /* Footer watermark smaller */
  .footer-watermark-text { font-size: clamp(48px, 18vw, 80px); }

  /* Footer newsletter — ensure readable */
  .footer-newsletter-form { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero {
  padding-block: 0 72px;
  border-bottom: 1px solid var(--color-border);
}
.contact-hero-inner {
  padding-top: 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contact-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  margin: 16px 0 20px;
  color: var(--color-text-primary);
}
.contact-hero-heading em { font-style: italic; color: var(--color-accent-dark); }
.contact-hero-subtext {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Channel cards row */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .contact-channels { grid-template-columns: 1fr; gap: 14px; }
}
.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}
.contact-channel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}
.contact-channel-card--hours { cursor: default; }
.contact-channel-card--hours:hover { transform: none; box-shadow: none; border-color: var(--color-border); }
.contact-channel-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt);
}
.contact-channel-icon svg { width: 26px; height: 26px; }
.contact-channel-card--wa .contact-channel-icon { background: #dcfce7; color: #16a34a; }
.contact-channel-card--email .contact-channel-icon { background: #dbeafe; color: #2563eb; }
.contact-channel-card--hours .contact-channel-icon { background: #fef3c7; color: #d97706; }
.contact-channel-body { flex: 1; min-width: 0; }
.contact-channel-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}
.contact-channel-title {
  font-size: 15px; font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 3px;
}
.contact-channel-value {
  font-size: 14px; font-weight: 600;
  color: var(--color-primary);
}
.contact-channel-note {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.contact-channel-arrow {
  font-size: 18px;
  color: var(--color-text-muted);
  transition: transform 0.2s;
}
.contact-channel-card:hover .contact-channel-arrow { transform: translateX(4px); }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 639px) {
  .contact-form-wrap { padding: 28px 20px; }
}
.contact-form-group-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}
.contact-form-group-row .contact-form-group { flex: 1; }
.contact-form-group { margin-bottom: 22px; }
.contact-form-label {
  display: block;
  font-size: 13.5px; font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 7px;
  text-align: left;
}
.contact-form-optional {
  font-weight: 400;
  color: var(--color-text-muted);
}
.contact-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 14.5px;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  background: var(--color-bg-alt);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
}
.contact-form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
  background: var(--color-surface);
}
.contact-form-input::placeholder { color: var(--color-text-muted); }
.contact-form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22%236b7280%22 stroke-width%3D%222%22%3E%3Cpath d%3D%22M6 9l6 6 6-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.contact-form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkboxes */
.contact-form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 500px) {
  .contact-form-checks { grid-template-columns: 1fr; }
}
.contact-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
  text-align: left;
}
.contact-check-item:hover { border-color: var(--color-primary); background: var(--color-surface); }
.contact-check-item input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.contact-form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.contact-form-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 16px;
  text-align: center;
}
.contact-form-disclaimer a { color: var(--color-primary); }

/* Info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}
.contact-info-card--trust { background: var(--color-surface); }
.contact-info-card-icon { font-size: 28px; margin-bottom: 14px; }
.contact-info-card-title {
  font-size: 16px; font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  text-align: left;
}

/* Steps */
.contact-steps-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  text-align: left;
}
.contact-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.contact-step p { margin: 0; }
.contact-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Trust list */
.contact-trust-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: left;
}
.contact-trust-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(11,31,58,0.08);
  color: var(--color-primary);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* CTA btn row */
.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Nav active state (contact page) */
.nav-link--active {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
}

/* ── 639px: small phones ── */
@media (max-width: 639px) {
  /* Container inner padding tighter */
  .container { padding-inline: 18px; }

  /* Hero */
  .hero { padding-block: 52px 40px; }
  .hero-heading { font-size: clamp(30px, 9vw, 42px); }
  .hero-subtext { font-size: 15px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Section */
  .section { padding-block: 48px; }
  .section-heading { font-size: clamp(22px, 7vw, 30px); }

  /* Industry challenges — 1 col already, just tighten spacing */
  .industry-challenge-card { padding: 22px 18px; }

  /* Industry product cards */
  .industry-product-card { padding: 20px 18px; }

  /* Pain points grid — ensure 1 col */
  .pain-grid { grid-template-columns: 1fr; }

  /* Buttons default sizing */
  .btn-lg { padding: 14px 24px; font-size: 15px; }

  /* CTA microcopy — stack to 2 per row */
  .cta-microcopy { gap: 8px 14px; }

  /* Blog grid already 1 col */

  /* Related articles grid — 1 col */
  .related-grid { grid-template-columns: 1fr; }

  /* Sidebar cards on article pages */
  .sidebar-card { padding: 18px; }

  /* Plan tier actions */
  .plan-tier .btn { width: 100%; justify-content: center; }

  /* Footer main already collapses */

  /* Footer bottom bar */
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal { gap: 14px; }

  /* Footer trust badges wrap tightly */
  .footer-trust { gap: 6px; }
  .footer-trust-badge { font-size: 10.5px; padding: 3px 8px; }
}

/* ── 479px: very small phones ── */
@media (max-width: 479px) {
  /* Newsletter form stack */
  .footer-newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-xl);
    padding: 10px;
    gap: 8px;
  }
  .footer-newsletter-input { padding: 6px 4px; }
  .footer-newsletter-btn {
    border-radius: var(--radius-lg);
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
  }

  /* Industry stat number smaller */
  .industry-stat-num { font-size: 22px; }

  /* Accordion trigger text smaller */
  .accordion-trigger span { font-size: 14px; }

  /* Table text even smaller */
  .article-table { font-size: 12.5px; }
  .article-table th, .article-table td { padding: 8px 10px; }

  /* Footer watermark */
  .footer-watermark-text { font-size: clamp(40px, 20vw, 64px); }

  /* Legal highlight */
  .legal-highlight { font-size: 13.5px; padding: 12px 14px; }

  /* Buttons on very small screens */
  .btn-lg { padding: 13px 20px; font-size: 14.5px; }
}

/* ============================================================
   BLOG & ARTICLE — MOBILE OPTIMISATIONS
============================================================ */

/* ── Global grid/flex overflow fix ── */
.article-layout,
.blog-featured,
.blog-grid {
  /* children with min-width:auto can force container wider than viewport */
  overflow: hidden;
}
.article-layout > *,
.blog-featured > * {
  min-width: 0;
}

/* Ensure article content never causes horizontal overflow */
.article-content {
  overflow-wrap: break-word;
  word-break: break-word;
}
.article-content img,
.article-hero-image {
  max-width: 100%;
}

/* Table wrapper always scrollable, never overflows page */
.article-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 1023px) {
  /* Article layout: single column, tighter vertical padding */
  .article-layout {
    grid-template-columns: 1fr;
    padding-block: 32px;
    gap: 32px;
  }

  /* Sidebar renders below article body — remove sticky */
  .article-sidebar { position: static !important; }

  /* Article hero */
  .article-page-hero { padding-bottom: 32px; }
  .article-hero-inner { max-width: 100%; padding-top: 20px; }
  .article-hero-image { aspect-ratio: 16 / 9; margin-top: 20px; }

  /* Prose sizing */
  .article-content { max-width: 100%; }
  .article-content h2 { font-size: clamp(20px, 5vw, 24px); margin-top: 32px; }
  .article-content h3 { font-size: 16px; }
  .article-content p { font-size: 15.5px; }

  /* Callout boxes */
  .article-callout { padding: 16px 18px; gap: 10px; }

  /* Key box */
  .article-keybox { padding: 22px 20px 18px; }

  /* Author/share bar stack on mobile */
  .article-footer-bar { flex-direction: column; align-items: flex-start; }

  /* Blog listing page hero */
  .blog-page-hero { padding-bottom: 36px; }
  .blog-page-hero-inner { padding-top: 20px; }
  .blog-page-subtext { font-size: 15px; }
  .blog-cats { gap: 8px; }
  .blog-cat-btn { padding: 7px 14px; font-size: 12.5px; }

  /* Featured article — single column, no fixed image width */
  .blog-featured { grid-template-columns: 1fr !important; }
  .blog-featured-img { min-height: 200px; }
  .blog-featured-body { padding: 20px; gap: 10px; }
  .blog-featured-title { font-size: clamp(18px, 4.5vw, 22px); }
  .blog-featured-excerpt { display: none; }

  /* Blog grid: 1 column on all mobile */
  .blog-grid { grid-template-columns: 1fr !important; gap: 16px; margin-top: 24px; }
  .blog-card-body { padding: 16px; }
  .blog-card-title a { font-size: 15px; }
  .blog-card-img { height: 160px; }

  /* Sidebar CTA compact */
  .sidebar-cta { padding: 20px; }
  .sidebar-cta-title { font-size: 16px; }
  .sidebar-cta-text { font-size: 13px; }

  /* Breadcrumb compact */
  .breadcrumb { padding-top: 20px; margin-bottom: 20px; font-size: 12px; }

  /* Article section heading & subtext */
  .blog-page-heading { font-size: clamp(26px, 6vw, 40px); }
  .article-heading { font-size: clamp(24px, 6vw, 36px); }
}

/* ── Industry pages — mobile text-align centre ── */
@media (max-width: 1023px) {
  .industry-hero-inner { text-align: center; }
  .industry-hero-tag { text-align: center; }
  .industry-hero-heading { text-align: center; }
  .industry-hero-sub { text-align: center; }
  .industry-hero-actions { justify-content: center; }
  .industry-stats-bar { text-align: center; }
  .industry-stat { text-align: center; }
  .industry-stat-num { text-align: center; }
  .industry-stat-lbl { text-align: center; }
  .industry-challenge-card { text-align: center; align-items: center; }
  .industry-challenge-icon { margin-inline: auto; }
  .industry-challenge-title { text-align: center; }
  .industry-challenge-desc { text-align: center; }
  .industry-product-card { text-align: center; align-items: center; }
  .industry-product-card-icon { margin-inline: auto; }
  .industry-product-card-title { text-align: center; }
  .industry-product-card-desc { text-align: center; }
  .industry-product-card-link { justify-content: center; }
  .industry-product-card-badge { margin-inline: auto; }
}
