/* ============================================
   VALIDENT — Theme Stylesheet
   Migrated from docs/mockups/mockup-styles.css
   with WordPress-specific adaptations.
   ============================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

/* WordPress / ACF block wrapper resets */
[class*="wp-block-acf-"] {
  margin: 0;
  padding: 0;
  max-width: none;
}
.site-main > .wp-block-acf-hero:first-child { margin-top: 0; }
.entry-content > * + * { margin-top: 0; }

/* ============================================
   TOKENS
   ============================================ */
:root {
  --navy:        #001846;
  --navy-light:  #0a2a5e;
  --navy-dark:   #000f2e;
  --blue:        #37b0d7;
  --blue-light:  #5bc4e6;
  --blue-pale:   #e8f6fb;
  --blue-dark:   #2a8faf;
  --blue-btn:    #0e7490; /* WCAG AA — 4.97:1 contrast with white */
  --blue-btn-hover: #0c6580;
  --orange:      #ffb547;
  --orange-light:#ffd48a;
  --orange-dark: #e69a2b;
  --white:       #ffffff;
  --grey-50:     #f8f9fb;
  --grey-100:    #f0f2f5;
  --grey-200:    #e2e6eb;
  --grey-300:    #ccd1d9;
  --grey-400:    #9ba3b0;
  --grey-500:    #6b7685;
  --grey-600:    #4a5568;
  --grey-700:    #2d3748;
  --grey-800:    #1a202c;
  --success:     #22c55e;
  --error:       #ef4444;

  --font:        'Lexend', sans-serif;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 2px rgba(0,24,70,0.05);
  --shadow-md:   0 4px 12px rgba(0,24,70,0.08);
  --shadow-lg:   0 8px 24px rgba(0,24,70,0.10);
  --shadow-xl:   0 16px 48px rgba(0,24,70,0.12);

  --ease:        250ms ease;
  --ease-fast:   150ms ease;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-700);
  background: var(--white);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip link — hidden off-screen, visible on focus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* Focus-visible outlines for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Scroll offset for sticky nav */
[id] {
  scroll-margin-top: 88px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.container--text   { max-width: 640px; }
.text-center       { text-align: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* WP admin bar offset */
.admin-bar .site-nav {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-nav {
    top: 46px;
  }
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-nav__logo svg {
  width: 130px;
  height: auto;
  display: block;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* wp_nav_menu outputs <ul><li><a> — style both direct <a> and nested <li> > <a> */
.site-nav__links a,
.site-nav__links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease-fast);
  position: relative;
  list-style: none;
}
.site-nav__links li {
  list-style: none;
}
.site-nav__links a:hover,
.site-nav__links a.active,
.site-nav__links .current-menu-item > a,
.site-nav__links .current_page_item > a {
  color: var(--white);
}
.site-nav__links .current-menu-item > a::after,
.site-nav__links .current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.site-nav__cta {
  margin-left: 16px;
  color: var(--white);
}
.site-nav__cta:hover {
  color: var(--white);
}

/* Dropdown menu (one level deep) */
.site-nav__links .menu-item-has-children {
  position: relative;
}
.site-nav__links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: 1px;
}
.site-nav__links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 100;
  min-width: 220px;
}
.site-nav__links .sub-menu::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.site-nav__links .sub-menu li {
  position: relative;
}
.site-nav__links .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  transition: background var(--ease-fast), color var(--ease-fast);
}
.site-nav__links .sub-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}
.site-nav__links .sub-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}
.site-nav__links .sub-menu li a:hover {
  background: var(--grey);
  color: var(--blue-btn);
}
.site-nav__links .menu-item-has-children:hover > .sub-menu,
.site-nav__links .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

/* Hamburger toggle */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}
.site-nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.site-nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  line-height: 1.4;
}
.btn--primary {
  background: var(--blue-btn);
  color: var(--white);
  border-color: var(--blue-btn);
}
.btn--primary:hover {
  background: var(--blue-btn-hover);
  border-color: var(--blue-btn-hover);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--grey-300);
}
.btn--secondary:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn--accent {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}
.btn--accent:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.btn--sm  { padding: 8px 18px; font-size: 0.8125rem; }
.btn--lg  { padding: 16px 36px; font-size: 1rem; }
.btn--block { width: 100%; text-align: center; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
  padding: 12px 0;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: '/';
  margin: 0 8px;
  color: var(--grey-400);
}
.breadcrumbs__item a {
  color: var(--grey-500);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.breadcrumbs__item a:hover {
  color: var(--navy);
}
.breadcrumbs__item span[aria-current] {
  color: var(--navy);
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d3472 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,176,215,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.hero__eyebrow a {
  color: inherit;
  text-decoration: none;
}
.hero__eyebrow a:hover {
  text-decoration: underline;
}
.hero__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
}

/* Hero compact (inner pages) */
.hero--compact { padding: 60px 0 48px; }
.hero--compact .hero__heading { font-size: 2.5rem; }
.hero--compact .hero__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero--compact .hero__text { margin: 0 auto; }
.hero--compact .hero__actions {
  justify-content: center;
  margin-top: 32px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 24px 0;
}
.trust-bar__items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--grey-500);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue-btn);
  flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}
.section--white { background: var(--white); }
.section--grey  { background: var(--grey-50); }
.section--navy  {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section__heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}
.section--navy .section__heading { color: var(--white); }
.section__subheading {
  font-size: 1rem;
  color: var(--grey-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section--navy .section__subheading { color: rgba(255,255,255,0.6); }

/* Section body text (text-section block) */
.section__text {
  font-size: 1rem;
  color: var(--grey-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section__text p {
  margin-bottom: 16px;
}
.section__text p:last-child {
  margin-bottom: 0;
}

/* Left-aligned section headers */
.section__eyebrow--left,
.section__heading--left,
.section__subheading--left { text-align: left; }
.section__subheading--left { margin-left: 0; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.contact-form__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form__subtext {
  font-size: 0.9375rem;
  color: var(--grey-500);
  margin-bottom: 32px;
}
.contact-form__note {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-top: 16px;
}
.contact-details {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-details__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--grey-600);
}
.contact-details__item svg {
  flex-shrink: 0;
  color: var(--blue-btn);
  margin-top: 2px;
}
.contact-details__item a {
  color: var(--blue-btn);
  text-decoration: none;
}
.contact-details__item a:hover {
  text-decoration: underline;
}
.contact-details__company {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  line-height: 1.8;
}
.contact-details__privacy {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-top: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon--blue   { background: var(--blue-pale); color: var(--blue-dark); }
.card__icon--navy   { background: rgba(0,24,70,0.08); color: var(--navy); }
.card__icon--orange { background: rgba(255,181,71,0.15); color: var(--orange-dark); }
.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.card__text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.7;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-btn);
  margin-top: 16px;
  transition: gap var(--ease);
}
.card__link:hover { gap: 10px; }

/* Feature card (larger, for solutions hub) */
.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  transition: box-shadow var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-lg); }
.feature-card__badge {
  display: inline-flex;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--blue-pale);
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.feature-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card__text {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-card__visual {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 0.875rem;
}

/* ============================================
   SPLIT SECTION (text + visual side by side)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__visual {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 0.875rem;
}

/* Animation components fill their visual container naturally */
.split__visual:has(.component-frame) {
  background: transparent;
  border: none;
  aspect-ratio: auto;
  overflow: visible;
}
.split__visual .component-frame {
  width: 100%;
}
.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.split__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.split__heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.split__text {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.split__text p {
  margin-bottom: 16px;
}
.split__text p:last-child {
  margin-bottom: 0;
}
.split__cta {
  margin-top: 24px;
}

/* Bullet list for split sections */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.check-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--grey-700);
  line-height: 1.6;
}
.check-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blue-btn);
  margin-top: 2px;
}

/* ============================================
   STATS / PROOF PANEL
   ============================================ */
.stats-panel {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 24px;
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-btn);
  margin-bottom: 8px;
}
.stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.stat__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Stats panel fills its visual container */
.split__visual:has(.stats-panel) {
  background: var(--navy);
  border-color: var(--navy);
  padding: 0;
  overflow: hidden;
  aspect-ratio: auto;
}
.split__visual .stats-panel {
  width: 100%;
  height: 100%;
  border-radius: 0;
  justify-content: center;
}

/* ============================================
   BOTTOM CTA (conversion zone)
   ============================================ */
.bottom-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.bottom-cta__heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.bottom-cta__text {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.bottom-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}
.badge--blue   { background: var(--blue-pale); color: var(--blue-dark); }
.badge--navy   { background: rgba(0,24,70,0.08); color: var(--navy); }
.badge--orange { background: rgba(255,181,71,0.15); color: var(--orange-dark); }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--blue-btn);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}
.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--grey-500);
  margin-bottom: 24px;
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-500);
}
.pricing-card__period {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-bottom: 32px;
}
.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  color: var(--blue-btn);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card__setup {
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin-bottom: 20px;
  padding-top: 4px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item__question:hover { color: var(--blue-btn); }
.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--grey-400);
}
.faq-item__answer {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-item__answer { display: block; }
.faq-item.open .faq-item__question svg { transform: rotate(180deg); }

/* FAQ Accordion (details/summary) */
.faq-accordion {
  max-width: 800px;
}
.faq-accordion__item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-accordion__item:first-child {
  border-top: 1px solid var(--grey-200);
}
.faq-accordion__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--ease-fast);
}
.faq-accordion__question:hover {
  color: var(--blue-btn);
}
/* Remove default marker */
.faq-accordion__question::-webkit-details-marker,
.faq-accordion__question::marker {
  display: none;
  content: '';
}
/* Chevron indicator */
.faq-accordion__question::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--grey-400);
  border-bottom: 2px solid var(--grey-400);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-accordion__item[open] > .faq-accordion__question::after {
  transform: rotate(-135deg);
}
.faq-accordion__answer {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.7;
}
.faq-accordion__answer p {
  margin-bottom: 12px;
}
.faq-accordion__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-btn);
  transition: gap var(--ease);
}
.faq-accordion__link:hover {
  gap: 8px;
  text-decoration: underline;
}
.faq-accordion__footer {
  text-align: center;
  margin-top: 32px;
}

/* Single FAQ content */
.faq-single__content {
  font-size: 1.0625rem;
  color: var(--grey-700);
  line-height: 1.8;
}
.faq-single__content p {
  margin-bottom: 16px;
}
.faq-single__content h2,
.faq-single__content h3 {
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.faq-single__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.faq-single__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.faq-single__content ul,
.faq-single__content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}
.faq-single__content ol {
  list-style: decimal;
}
.faq-single__content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.faq-single__content a {
  color: var(--blue-btn);
  text-decoration: underline;
}
.faq-single__content a:hover {
  color: var(--blue-dark);
}
.faq-single__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}
.faq-single__footer .related-topics {
  margin-top: 24px;
}
.faq-single__footer .related-topics__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-single__footer .related-topics__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================
   FORM
   ============================================ */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--grey-700);
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-md);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--blue-btn);
  box-shadow: 0 0 0 3px rgba(55,176,215,0.15);
}
.form-input::placeholder { color: var(--grey-400); }
.form-hint {
  font-size: 0.75rem;
  color: var(--grey-500);
  margin-top: 4px;
}
textarea.form-input { min-height: 120px; resize: vertical; }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7685' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   GRAVITY FORMS OVERRIDES
   ============================================ */
.gform_wrapper.gravity-theme {
  font-family: var(--font);
}
.gform_wrapper.gravity-theme .gfield_label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="search"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--grey-700);
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  width: 100% !important;
  max-width: 100% !important;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
/* Override GF foundation theme inline-size and width sizing */
.gform_wrapper .gfield input.small,
.gform_wrapper .gfield input.medium,
.gform_wrapper .gfield input.large,
.gform_wrapper .gfield select.small,
.gform_wrapper .gfield select.medium,
.gform_wrapper .gfield select.large,
.gform_wrapper .gfield textarea.small,
.gform_wrapper .gfield textarea.medium,
.gform_wrapper .gfield textarea.large,
.gform_wrapper .gfield .ginput_container input,
.gform_wrapper .gfield .ginput_container select,
.gform_wrapper .gfield .ginput_container textarea {
  width: 100% !important;
  inline-size: 100% !important;
  max-width: 100% !important;
}
/* Full-width fields span both columns */
.gform_wrapper.gravity-theme .gfield--size-large {
  grid-column: span 2;
}
.gform_wrapper.gravity-theme input:focus,
.gform_wrapper.gravity-theme select:focus,
.gform_wrapper.gravity-theme textarea:focus {
  outline: none;
  border-color: var(--blue-btn);
  box-shadow: 0 0 0 3px rgba(55,176,215,0.15);
}
.gform_wrapper.gravity-theme .gform_button {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 28px;
  background: var(--blue-btn);
  color: var(--white);
  border: 2px solid var(--blue-btn);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--ease);
}
.gform_wrapper.gravity-theme .gform_button:hover {
  background: var(--blue-btn-hover);
  border-color: var(--blue-btn-hover);
  box-shadow: var(--shadow-md);
}
/* Legend / fieldset labels */
.gform_wrapper.gravity-theme legend.gfield_label,
.gform_wrapper.gravity-theme .gfield_label_before_complex {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
/* Checkbox & radio labels */
.gform_wrapper.gravity-theme .gform-field-label--type-inline {
  font-size: 0.875rem;
  color: var(--grey-700);
}
/* Select All / Deselect All toggle */
.gform_wrapper.gravity-theme .gfield_choice_all_toggle {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--blue-btn);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 16px;
  cursor: pointer;
  transition: background var(--ease-fast);
}
.gform_wrapper.gravity-theme .gfield_choice_all_toggle:hover {
  background: var(--blue-btn-hover);
}
/* File upload drop area */
.gform_wrapper.gravity-theme .gform_drop_area {
  border: 2px dashed var(--grey-300);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--grey-500);
  font-size: 0.875rem;
  transition: border-color var(--ease-fast);
}
.gform_wrapper.gravity-theme .gform_drop_area:hover {
  border-color: var(--blue-btn);
}
.gform_wrapper.gravity-theme .gform_drop_area .button {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--grey-100);
  color: var(--navy);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  cursor: pointer;
}
/* Required text */
.gform_wrapper.gravity-theme .gfield_required_text {
  color: var(--error);
  font-size: 0.75rem;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.site-nav__search {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color var(--ease-fast);
}
.site-nav__search:hover {
  color: var(--white);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-dark);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}
.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 12px;
  transition: border-color 0.2s ease;
}
.search-overlay__form:focus-within {
  border-color: var(--blue);
}
.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  padding: 8px 0;
  box-shadow: none;
}
.search-overlay__input:focus-visible {
  outline: none;
  box-shadow: none;
}
.search-overlay__input::placeholder {
  color: rgba(255,255,255,0.35);
}
.search-overlay__submit {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  transition: color var(--ease-fast);
}
.search-overlay__submit:hover {
  color: var(--white);
}
.search-overlay__close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 201;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 8px;
  transition: color var(--ease-fast);
}
.search-overlay__close:hover {
  color: var(--white);
}
.search-overlay__hint {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */
.search-results-header {
  padding: 24px 0 0;
}
.search-results-header__query {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-500);
  margin-bottom: 8px;
}
.search-results-header__query strong {
  color: var(--navy);
  font-weight: 600;
}
.search-results-header__count {
  font-size: 0.875rem;
  color: var(--grey-400);
}

/* Post type filter tabs */
.search-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 40px;
}
.search-filters__btn {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-600);
  cursor: pointer;
  transition: all var(--ease-fast);
}
.search-filters__btn:hover {
  background: var(--grey-200);
  color: var(--navy);
}
.search-filters__btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Search results card grid */
.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 64px;
}
.search-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.search-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.search-card__type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  width: fit-content;
}
.search-card__type--page {
  background: var(--blue-pale);
  color: var(--blue-btn);
}
.search-card__type--faq {
  background: #fef3c7;
  color: #92400e;
}
.search-card__type--post {
  background: #ede9fe;
  color: #5b21b6;
}
.search-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}
.search-card__title a {
  color: inherit;
  transition: color var(--ease-fast);
}
.search-card__title a:hover {
  color: var(--blue-btn);
}
.search-card__excerpt {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.search-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-btn);
  transition: color var(--ease-fast);
}
.search-card__link:hover {
  color: var(--blue-btn-hover);
}

/* No results */
.search-no-results {
  text-align: center;
  padding: 80px 0;
}
.search-no-results__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.search-no-results__text {
  font-size: 1rem;
  color: var(--grey-500);
  max-width: 480px;
  margin: 0 auto 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: 1fr;
  }
  .search-overlay__input {
    font-size: 1.125rem;
  }
  .search-overlay__close {
    top: -48px;
    right: 16px;
  }
  .site-nav__search {
    order: 0;
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 24, 70, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy-light);
  box-shadow: 0 4px 12px rgba(0, 24, 70, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand svg {
  width: 120px;
  height: auto;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--ease-fast);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.footer-powered {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
}
.footer-powered svg {
  vertical-align: middle;
  opacity: 0.5;
  transition: opacity var(--ease-fast);
}
.footer-powered:hover svg {
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .split__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .feature-card { grid-template-columns: 1fr; }
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 48px; }
  .hero__heading { font-size: 2.25rem; }
  .section { padding: 56px 0; }
  .section__heading { font-size: 1.75rem; }
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .bottom-cta { padding: 56px 0; }
  .trust-bar__items { gap: 24px; }
  .faq-accordion__question { padding: 14px 0; font-size: 0.9375rem; }
  .faq-accordion__answer { padding: 0 0 14px; font-size: 0.875rem; }
  .contact-form__heading { font-size: 1.25rem; }
  .gform_wrapper.gravity-theme .gfield--size-large { grid-column: span 1; }
  .gform_wrapper.gravity-theme .gf_left_half,
  .gform_wrapper.gravity-theme .gf_right_half,
  .gform_wrapper.gravity-theme .gfield--width-half {
    grid-column: span 1;
    width: 100% !important;
    float: none !important;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Split visual — contained on mobile, overflow protection */
  .split__visual { max-width: 100%; overflow: hidden; border-radius: var(--radius-lg); }

  /* Component frames scale down to fit the viewport */
  .component-frame { max-width: 100%; }

  /* Mobile navigation */
  .site-nav__toggle {
    display: flex;
  }

  /* Backdrop overlay */
  .site-nav::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 24, 70, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
    z-index: -1;
  }
  .site-nav.nav-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }

  .site-nav__links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 250ms ease, transform 250ms ease;
    box-shadow: 0 16px 48px rgba(0, 24, 70, 0.25);
  }
  .site-nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__menu {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .site-nav__links li {
    width: 100%;
  }
  .site-nav__links li a,
  .site-nav__links a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 150ms ease, color 150ms ease;
  }
  .site-nav__links li a:hover,
  .site-nav__links a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }
  .site-nav__links .current-menu-item > a,
  .site-nav__links .current-page-ancestor > a {
    background-color: rgba(55, 176, 215, 0.12);
    color: var(--white);
  }

  /* CTA button — full width, prominent */
  .site-nav__cta {
    margin-left: 0;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 8px;
  }

  .site-nav__inner {
    position: relative;
  }
  /* Mobile dropdown — flush, no absolute positioning */
  .site-nav__links .menu-item-has-children > a::after {
    transform: rotate(45deg);
  }
  .site-nav__links .sub-menu {
    position: static;
    transform: none;
    display: block;
    padding-top: 0;
    min-width: 0;
  }
  .site-nav__links .sub-menu::before {
    display: none;
  }
  .site-nav__links .sub-menu li a {
    color: rgba(255,255,255,0.55);
    padding: 6px 0 6px 16px;
    font-size: 0.9rem;
  }
  .site-nav__links .sub-menu li a:hover {
    background: none;
    color: var(--white);
  }
  .site-nav__links .sub-menu li:first-child a,
  .site-nav__links .sub-menu li:last-child a {
    border-radius: 0;
  }
}

/* ============================================
   BLOG GRID (Archive)
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid__empty {
  text-align: center;
  font-size: 1.125rem;
  color: var(--grey-500);
  padding: 64px 0;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.blog-card__image-link {
  display: block;
}
.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}
.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.blog-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  background: var(--blue-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  transition: background var(--ease-fast), color var(--ease-fast);
}
.blog-card__category:hover {
  background: var(--blue);
  color: var(--white);
}
.blog-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card__title a {
  color: inherit;
  transition: color var(--ease-fast);
}
.blog-card__title a:hover {
  color: var(--blue-btn);
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-btn);
  transition: gap var(--ease);
}
.blog-card__link:hover {
  gap: 8px;
}

/* WP Pagination */
.navigation.pagination {
  margin-top: 48px;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: all var(--ease-fast);
}
.navigation.pagination .page-numbers:hover {
  border-color: var(--blue-btn);
  color: var(--blue-btn);
}
.navigation.pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue-btn);
  color: var(--white);
  font-weight: 600;
}
.navigation.pagination .page-numbers.dots {
  border: none;
  padding: 0 4px;
  min-width: auto;
}
.navigation.pagination .prev,
.navigation.pagination .next {
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   SINGLE POST
   ============================================ */
/* Hero meta line */
.hero__meta {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.hero__meta time {
  color: rgba(255,255,255,0.65);
}
.hero__meta-sep {
  margin: 0 8px;
}

/* Article container (legal pages, standalone content) */
.container--article {
  max-width: 860px;
}
.container--article p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.container--article h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.container--article h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.container--article ul,
.container--article ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}
.container--article ol {
  list-style: decimal;
}
.container--article li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.container--article a {
  color: var(--blue-btn);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease-fast);
}
.container--article a:hover {
  color: var(--blue-btn-hover);
}
.container--article strong {
  font-weight: 600;
  color: var(--grey-800);
}

/* Featured image */
.single-post__featured-image {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.single-post__featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* Article prose styles */
.single-post__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--grey-700);
}
.single-post__content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.single-post__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.single-post__content h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 8px;
}
.single-post__content p {
  margin-bottom: 20px;
}
.single-post__content ul,
.single-post__content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}
.single-post__content ol {
  list-style: decimal;
}
.single-post__content li {
  margin-bottom: 8px;
}
.single-post__content a {
  color: var(--blue-btn);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease-fast);
}
.single-post__content a:hover {
  color: var(--blue-dark);
}
.single-post__content blockquote {
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--grey-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--grey-600);
}
.single-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.single-post__content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.single-post__content pre {
  background: var(--grey-800);
  color: var(--grey-100);
  padding: 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 24px 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.single-post__content code {
  font-size: 0.875em;
  background: var(--grey-100);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--navy);
}
.single-post__content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Tags */
.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}
.single-post__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-600);
  background: var(--grey-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: background var(--ease-fast), color var(--ease-fast);
}
.single-post__tag:hover {
  background: var(--navy);
  color: var(--white);
}

/* Post footer / meta */
.single-post__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  font-size: 0.875rem;
  color: var(--grey-500);
}
.single-post__published {
  margin-bottom: 4px;
}
.single-post__footer-cats a {
  color: var(--blue-btn);
  font-weight: 500;
  transition: color var(--ease-fast);
}
.single-post__footer-cats a:hover {
  color: var(--blue-dark);
}

/* ============================================
   BLOG GRID — Responsive
   ============================================ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero__meta {
    font-size: 0.8125rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 36px; }
  .hero__heading { font-size: 1.75rem; }
  .section { padding: 40px 0; }
  .section__heading { font-size: 1.5rem; }
  .bottom-cta { padding: 40px 0; }
  .bottom-cta__heading { font-size: 1.5rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.9375rem; }
  .bottom-cta__actions { flex-direction: column; align-items: center; gap: 12px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
