/*
 * Fast Close AI — Brand Design System
 * Aesthetic: Remitian-exact — Alegreya serif headings, Inter body,
 *   Elephant navy (#0D2E48) text, Jungle Mist seafoam (#EFF5F6) backgrounds,
 *   dark navy nav (#030D15), green CTAs only.
 * Source: remitian.com primitives extracted directly from their CSS.
 */

/* ================================================================
   DESIGN TOKENS  (Remitian primitive values — exact)
================================================================ */
:root {
  /* ── Elephant (dark navy) ── */
  --ink:          #0D2E48;   /* elephant           — primary text */
  --ink-80:       #0A2439;   /* elephant-dark       */
  --ink-60:       #556C7E;   /* elephant-light      — secondary text */
  --ink-40:       #556C7E;   /* same shade for body text */
  --ink-20:       #CED5DA;   /* elephant-lighter    — placeholder */
  --nav-bg:       #030D15;   /* elephant-darkest    — nav + dark sections */
  --dark:         #030D15;   /* alias for dark strips */

  /* ── Jungle Mist (seafoam / teal) ── */
  --bg:           #EFF5F6;   /* jungle-mist-lighter — main page bg */
  --bg-2:         #F7FAFA;   /* jungle-mist-lightest — card surface */
  --white:        #FFFFFF;

  /* Keep --mist alias so existing classes don't break */
  --mist:         #EFF5F6;
  --mist-2:       #F7FAFA;

  /* ── Borders ── */
  --border:       #C7DDE2;   /* jungle-mist-light   — teal-tinted border */

  /* ── Brand green (CTA only) ── */
  --green:        #2563EB;   /* blue-600 — primary accent */
  --green-dark:   #1D4ED8;   /* blue-700 — hover state   */
  --green-light:  #DBEAFE;   /* blue-100 — tint surface  */

  /* ── Typography ── */
  --font-display: 'Alegreya', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Radius ── */
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-pill:  100px;

  /* ── Shadows (teal-tinted) ── */
  --shadow-xs:    0 1px 3px rgba(13,46,72,0.06);
  --shadow-sm:    0 2px 8px rgba(13,46,72,0.09);
  --shadow-md:    0 8px 24px rgba(13,46,72,0.12);

  --transition:   180ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   OVERRIDE LAYER — neutralise custom.css's competing tokens
   (brand.css loads after custom.css, so these win cascade)
================================================================ */
:root {
  /* Redirect custom.css green variables → brand blue */
  --accent:            #2563EB;
  --accent-hover:      #1D4ED8;
  --zen-forest:        #2563EB;
  --zen-terracotta:    #1D4ED8;
  --zen-sage:          #60A5FA;
  --authority-green:   #2563EB;
  --zen-accent-green:  #2563EB;
  --zen-gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --zen-gradient-secondary: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);

  /* Redirect custom.css background/text → brand tokens */
  --background:        #EFF5F6;  /* seafoam — not white */
  --text-primary:      #0D2E48;  /* elephant */
  --text-secondary:    #556C7E;  /* elephant-light */
  --zen-ivory:         #F7FAFA;
  --zen-bg-primary:    #EFF5F6;
  --zen-bg-light:      #F7FAFA;
  --zen-border-light:  #C7DDE2;

  /* Typography — Inter only (Alegreya applied via heading selectors below) */
  --zen-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --zen-font-accent:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================================================================
   GLOBAL RESET LAYER
================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body.brand-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);   /* Remitian seafoam page background */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Alegreya for all headings — Remitian's exact typography choice.
   !important required to beat custom.css's competing h1-h6 rule. */
body.brand-body h1,
body.brand-body h2,
body.brand-body h3,
body.brand-body h4,
body.brand-body h5,
body.brand-body h6 {
  font-family: var(--font-display) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

body.brand-body p,
body.brand-body li,
body.brand-body span:not(.badge):not(.nav-pill) {
  color: var(--ink-40) !important;
}

/* ================================================================
   NAVIGATION
================================================================ */
/* ── Remitian-style: dark elephant-darkest nav ── */
.brand-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);        /* #030D15 — Remitian's elephant-darkest */
  border-bottom: 1px solid rgba(199,221,226,0.12);
  padding: 0;
}

.brand-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-nav .nav-logo {
  font-family: var(--font-display);  /* Alegreya for logo — matches Remitian serif branding */
  font-weight: 700;
  font-size: 1.0625rem;
  color: #ffffff !important;
  text-decoration: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-nav .nav-logo .nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.brand-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-nav .nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.brand-nav .nav-links a:hover {
  color: #ffffff !important;
  background: rgba(199,221,226,0.08);
}

.brand-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-nav .nav-sign-in {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.brand-nav .nav-sign-in:hover {
  color: #ffffff !important;
}

.brand-nav .nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: white !important;
  background: var(--green);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
}

.brand-nav .nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22,163,74,0.25);
}

/* Mobile nav */
.brand-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
  .brand-nav .nav-links { display: none; }
  .brand-nav .nav-sign-in { display: none; }
  .brand-nav .nav-toggle { display: flex; }
  .brand-nav .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(199,221,226,0.12);
    padding: 16px 24px 20px;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(3,13,21,0.4);
  }
  .brand-nav .nav-mobile-open .nav-links a {
    padding: 10px 12px;
  }
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: white !important;
  background: var(--green);
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary-brand:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,0.25);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink) !important;
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-outline-brand:hover {
  border-color: var(--ink-60);
  background: var(--mist);
  transform: translateY(-1px);
}

/* ================================================================
   HERO SECTION
================================================================ */
.brand-hero {
  /* No background — inherits body's seafoam (--bg), Remitian-style */
  padding: 96px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.brand-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.brand-hero .hero-eyebrow::before,
.brand-hero .hero-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--green);
  opacity: 0.5;
}

.brand-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.5rem, 5.5vw, 4rem) !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  max-width: 800px;
  margin: 0 auto 24px;
}

.brand-hero .hero-sub {
  font-size: 1.125rem;
  color: var(--ink-40) !important;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.brand-hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.brand-hero .hero-credential {
  font-size: 0.8125rem;
  color: var(--ink-20) !important;
  letter-spacing: 0.03em;
}

.brand-hero .hero-credential strong {
  color: var(--ink-60) !important;
}

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip {
  background: var(--ink);
  padding: 56px 0;
}

.stats-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stats-strip .stat-item {
  background: var(--ink);
  padding: 40px 36px;
  text-align: center;
  position: relative;
}

.stats-strip .stat-number {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  color: white !important;
  line-height: 1 !important;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.02em !important;
}

.stats-strip .stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .stats-strip .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   SECTION SHARED STYLES
================================================================ */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display) !important;   /* Alegreya serif */
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 16px !important;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--ink-40) !important;
  max-width: 560px;
  line-height: 1.7;
}

/* ================================================================
   WHO THIS IS FOR — 4 PROFILE CARDS
================================================================ */
.profiles-section {
  background: var(--white);
  padding: 96px 0;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.profile-card {
  background: var(--white);
  padding: 40px;
  transition: background var(--transition);
}

.profile-card:hover {
  background: var(--mist);
}

.profile-card .profile-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-card .profile-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  stroke: var(--green);
}

.profile-card h3 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.01em !important;
}

.profile-card .profile-desc {
  font-size: 0.9375rem;
  color: var(--ink-40) !important;
  line-height: 1.65;
  margin-bottom: 16px;
}

.profile-card .profile-range {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green) !important;
}

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

/* ================================================================
   WHAT MAKES THIS DIFFERENT
================================================================ */
.diff-section {
  background: var(--mist);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.diff-card {
  display: flex;
  gap: 20px;
}

.diff-card .diff-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: white !important;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 2px;
}

.diff-card h3 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
}

.diff-card p {
  font-size: 0.9375rem;
  color: var(--ink-40) !important;
  line-height: 1.65;
  margin: 0;
}

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

/* ================================================================
   CORE SERVICES
================================================================ */
.services-section {
  background: var(--white);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.service-item:hover {
  background: var(--mist);
}

.service-item:nth-child(even) {
  border-right: none;
}

.service-item:nth-last-child(-n+2) {
  border-bottom: none;
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .service-item:last-child { border-bottom: none; }
  .service-item:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}

.service-item .svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px;
}

.service-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-60) !important;
  line-height: 1.5;
}

/* ================================================================
   CLIENT SNAPSHOT
================================================================ */
.snapshot-section {
  background: var(--ink);
  padding: 80px 0;
}

.snapshot-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.snapshot-section .snap-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.snapshot-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: white !important;
  line-height: 1.5;
  margin: 0 0 28px;
  font-style: italic;
}

.snapshot-section .snap-attribution {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5) !important;
}

/* ================================================================
   PROOF / TESTIMONIALS
================================================================ */
.proof-section {
  background: var(--mist);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-item blockquote {
  font-size: 1rem;
  color: var(--ink-60) !important;
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}

.testimonial-item .t-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink) !important;
}

.testimonial-item .t-author span {
  font-size: 0.8125rem;
  color: var(--ink-20) !important;
}

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

/* ================================================================
   FIT SECTION
================================================================ */
.fit-section-brand {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.fit-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.fit-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.fit-col.fit-yes { border-color: #BBF7D0; background: #F0FDF4; }
.fit-col.fit-no  { border-color: #FECACA; background: #FFF5F5; }

.fit-col .fit-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.fit-col .fit-col-head svg {
  width: 20px; height: 20px;
}

.fit-col.fit-yes .fit-col-head svg { stroke: var(--green); }
.fit-col.fit-no  .fit-col-head svg { stroke: #DC2626; }

.fit-col .fit-col-head h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.fit-col.fit-yes .fit-col-head h3 { color: var(--green) !important; }
.fit-col.fit-no  .fit-col-head h3 { color: #DC2626 !important; }

.fit-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-col ul li {
  font-size: 0.9375rem;
  color: var(--ink-60) !important;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.fit-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fit-col.fit-yes ul li::before { background: var(--green); }
.fit-col.fit-no  ul li::before { background: #DC2626; }

@media (max-width: 640px) {
  .fit-cols { grid-template-columns: 1fr; }
}

/* ================================================================
   FINAL CTA SECTION
================================================================ */
.final-cta-section {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.final-cta-section h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.02em !important;
}

.final-cta-section p {
  font-size: 1.0625rem;
  color: var(--ink-40) !important;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta-section .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta-section .cta-footnote {
  font-size: 0.8125rem;
  color: var(--ink-20) !important;
}

/* ================================================================
   FOOTER
================================================================ */
.brand-footer {
  background: var(--nav-bg);   /* elephant-darkest — same as nav for cohesion */
  padding: 64px 0 0;
  border-top: 1px solid rgba(199,221,226,0.1);
}

.brand-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.brand-footer .footer-brand .f-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: white !important;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}

.brand-footer .footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 16px;
}

.brand-footer .footer-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-footer .footer-cred-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35) !important;
}

.brand-footer .footer-cred-item svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.brand-footer .footer-col h5 {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.4) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px !important;
}

.brand-footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-footer .footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  transition: color var(--transition);
}

.brand-footer .footer-col ul li a:hover {
  color: white !important;
}

.brand-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-footer .footer-bottom p,
.brand-footer .footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3) !important;
  text-decoration: none;
  margin: 0;
}

.brand-footer .footer-bottom a:hover {
  color: rgba(255,255,255,0.6) !important;
}

.brand-footer .footer-bottom .footer-legal-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .brand-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .brand-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-hero {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.about-hero .about-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
}

.about-bio {
  padding: 80px 0;
  background: var(--white);
}

.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-bio .bio-content p {
  font-size: 1.0625rem;
  color: var(--ink-60) !important;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-bio .bio-quote {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--ink) !important;
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 24px;
  margin: 32px 0;
}

.about-bio .bio-side {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-bio .bio-side-header {
  background: var(--mist);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.about-bio .bio-side-header h3 {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 !important;
}

.about-bio .bio-side-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-bio .bio-side-list li {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--ink-60) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-bio .bio-side-list li:last-child {
  border-bottom: none;
}

.about-bio .bio-side-list .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-bio-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   PRICING PAGE
================================================================ */
.pricing-hero {
  background: var(--white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-tiers {
  background: var(--white);
  padding: 80px 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tier-card .tier-includes {
  flex: 1;
}

.tier-card .tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green) !important;
  margin-bottom: 12px;
}

.tier-card h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-bottom: 8px !important;
}

.tier-card .tier-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--ink) !important;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.tier-card .tier-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-40) !important;
  font-weight: 400;
}

.tier-card .tier-desc {
  font-size: 0.9rem;
  color: var(--ink-40) !important;
  margin-bottom: 28px;
  line-height: 1.6;
}

.tier-card .tier-includes {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-card .tier-includes li {
  font-size: 0.9rem;
  color: var(--ink-60) !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tier-card .tier-includes li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}

@media (max-width: 960px) {
  .tier-grid { grid-template-columns: 1fr !important; }
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-hero-brand {
  background: var(--white);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.contact-body {
  background: var(--white);
  padding: 72px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-60) !important;
  margin-bottom: 6px;
}

.contact-form-card .brand-input,
.contact-form-card .brand-select {
  width: 100%;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--ink) !important;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}

.contact-form-card .brand-input:focus,
.contact-form-card .brand-select:focus {
  border-color: var(--green);
  background: var(--white);
}

.contact-info-side .ci-block {
  margin-bottom: 36px;
}

.contact-info-side .ci-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green) !important;
  margin-bottom: 10px;
}

.contact-info-side .ci-value {
  font-size: 1.0625rem;
  color: var(--ink-60) !important;
  font-weight: 500;
}

.contact-info-side .ci-value a {
  color: var(--ink-60) !important;
  text-decoration: none;
}

.contact-info-side .ci-value a:hover {
  color: var(--green) !important;
}

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

/* ================================================================
   PAGE HEADER (generic)
================================================================ */
.page-hero-brand {
  background: var(--white);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-hero-brand .ph-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green) !important;
  margin-bottom: 14px;
}

.page-hero-brand h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem) !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.18 !important;
  margin-bottom: 16px !important;
}

.page-hero-brand .ph-sub {
  font-size: 1.0625rem;
  color: var(--ink-40) !important;
  max-width: 520px;
  line-height: 1.7;
}

/* ================================================================
   FORM ROW
================================================================ */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

@media (max-width: 500px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ================================================================
   UTILITY CLASSES
================================================================ */
.text-green { color: var(--green) !important; }
.text-ink   { color: var(--ink) !important; }
.text-ink-40 { color: var(--ink-40) !important; }

.container-brand {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider-brand {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ================================================================
   DARK HERO
================================================================ */
.brand-hero-dark {
  background: var(--dark);
  padding: 100px 0 88px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-eyebrow-dark {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 28px;
}

.hero-headline-dark {
  font-family: var(--font-display) !important;
  font-size: clamp(2.75rem, 6vw, 4.5rem) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.02em;
}

.hero-headline-dark em {
  font-style: italic;
  color: rgba(255,255,255,0.55) !important;
}

.hero-sub-dark {
  font-size: 1.1rem !important;
  color: rgba(255,255,255,0.45) !important;
  max-width: 560px;
  margin: 0 auto 40px !important;
  line-height: 1.75 !important;
}

.hero-actions-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #ffffff !important;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}

.btn-hero-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8) !important;
}

/* ================================================================
   POSITIONING STRIP
================================================================ */
.positioning-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.pos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.pos-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 32px;
}

.pos-phrase {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink) !important;
}

.pos-desc {
  font-size: 0.8rem;
  color: var(--ink-40) !important;
  line-height: 1.5;
}

.pos-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pos-grid { flex-direction: column; gap: 24px; }
  .pos-divider { width: 40px; height: 1px; }
}

/* ================================================================
   COMPARISON TABLE
================================================================ */
.compare-section {
  background: var(--mist);
  padding: 80px 0;
}

.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-top: 48px;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  background: var(--dark);
  padding: 14px 24px;
  gap: 0;
}

.compare-header .compare-us {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  text-align: center;
}

.compare-header .compare-them {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 0;
  transition: background 0.15s;
}

.compare-row:hover {
  background: var(--mist);
}

.compare-row-last {
  border-bottom: none;
}

.compare-feature {
  font-size: 0.9rem;
  color: var(--ink-60) !important;
  line-height: 1.4;
}

.compare-row .compare-us,
.compare-row .compare-them {
  text-align: center;
}

.cmp-yes {
  display: inline-block;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
}

.cmp-no {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--ink-20) !important;
  font-weight: 500;
}

.cmp-maybe {
  display: inline-block;
  font-size: 0.8rem;
  color: #f59e0b;
  font-weight: 500;
}

@media (max-width: 680px) {
  .compare-header,
  .compare-row {
    grid-template-columns: 1fr 90px 90px;
    padding: 14px 16px;
  }
  .compare-feature { font-size: 0.8rem; }
}

/* ================================================================
   CTA STRIP
================================================================ */
.cta-strip {
  background: var(--dark);
  padding: 60px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: #ffffff !important;
  margin-bottom: 8px;
}

.cta-strip-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4) !important;
  margin: 0;
}

.cta-strip-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btn { width: 100%; justify-content: center; }
}

/* ================================================================
   FLOATING MOBILE CTA BAR
================================================================ */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px 20px;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-book-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.mobile-book-btn:hover {
  background: var(--green-dark);
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .mobile-book-bar {
    display: block;
  }
}

/* ================================================================
   PAGE COMPONENT LIBRARY  (Remitian-matched, token-driven)
   All components use CSS variables — zero hardcoded hex values.
================================================================ */

/* ── Dark surface token ── */
:root {
  --dark:   #060D1A;   /* deep cold navy for dark sections */
  --ink-05: rgba(10,14,26,0.05);
}

/* ── Shared containers ── */
.xl-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 480px) { .xl-wrap { padding: 0 20px; } }

/* ── Section shells ── */
.pg-section         { padding: 80px 0; }
/* White panels on seafoam — key Remitian contrast pattern */
.pg-section-white   { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
/* Slightly different seafoam — subtle section separation */
.pg-section-gray    { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pg-section-dark    { background: var(--dark); padding: 64px 0; }

/* ── Page hero — inherits seafoam bg from body ── */
.pg-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--border);
}

/* ── Typography utilities ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green) !important;
  margin-bottom: 12px;
  display: block;
}

.pg-h1 {
  font-family: var(--font-display);  /* Alegreya — Remitian's exact display font */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink) !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.pg-h1 em { font-style: italic; color: var(--ink) !important; }

.pg-h2 {
  font-family: var(--font-display);  /* Alegreya */
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink) !important;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.pg-h2 em { font-style: italic; }

.pg-h3 {
  font-family: var(--font-display);  /* Alegreya */
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink) !important;
  margin-bottom: 8px;
}

.pg-lead {
  font-size: 1rem;
  color: var(--ink-40) !important;
  line-height: 1.75;
  margin-bottom: 0;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink) !important;
  text-decoration: none;
}
.learn-more-link::after {
  content: '.';
  color: var(--green);
  font-size: 1.3rem;
  line-height: 0;
  margin-left: -1px;
}
.learn-more-link:hover { color: var(--green) !important; }

/* ── FEATURE GRID (3-col horizontal boxes) ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  background: var(--white);
  margin-bottom: 40px;
}
.feat-card {
  border-right: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition);
}
.feat-card:last-child { border-right: none; }
.feat-card:hover { background: var(--mist); }
.feat-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink) !important; margin: 0; }
.feat-card p  { font-size: 0.875rem; color: var(--ink-40) !important; line-height: 1.65; margin: 0; flex: 1; }

@media (max-width: 720px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feat-card:last-child { border-bottom: none; }
}

/* ── WHO WE SERVE ROWS ── */
.serve-rows {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.serve-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.serve-row:last-child  { border-bottom: none; }
.serve-row:hover       { background: var(--mist); }

.serve-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.serve-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; }

.serve-body h3 { font-size: 0.9375rem; font-weight: 700; color: var(--ink) !important; margin-bottom: 4px; }
.serve-body p  { font-size: 0.85rem; color: var(--ink-40) !important; line-height: 1.6; margin: 0; }

.serve-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  min-width: 148px;
}
.serve-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-40) !important;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .serve-row { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; padding: 20px; gap: 12px; }
  .serve-action { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; }
}

/* ── RESULTS GRID (4-col) ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.result-card {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.result-card:hover { background: var(--mist); }

.result-num {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green) !important;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.result-quote {
  font-size: 0.85rem;
  color: var(--ink-40) !important;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.result-attr {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-20) !important;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .results-grid { grid-template-columns: 1fr; } }

/* ── COMPARE TABLE V2 ── */
.cmp2-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.cmp2-header {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  background: var(--ink);
  padding: 14px 28px;
}
.cmp2-us-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--green) !important; text-align: center;
}
.cmp2-them-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.3) !important; text-align: center;
}
.cmp2-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background var(--transition);
}
.cmp2-row:last-child { border-bottom: none; }
.cmp2-row:hover { background: var(--mist); }
.cmp2-feat { font-size: 0.9rem; color: var(--ink) !important; }
.cmp2-us, .cmp2-them { text-align: center; }
.cmp2-yes { color: var(--green) !important; font-weight: 700; font-size: 1.1rem; }
.cmp2-no  { font-size: 0.8rem; color: var(--ink-20) !important; font-weight: 500; }

@media (max-width: 720px) {
  .cmp2-header, .cmp2-row { grid-template-columns: 1fr 90px 90px; padding: 14px 16px; }
  .cmp2-feat { font-size: 0.78rem; }
}

/* ── COMPLEX CASES GRID (3 × 2) ── */
.cmplx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cmplx-item {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--transition);
}
.cmplx-item:hover { background: var(--mist); }
.cmplx-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cmplx-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; }
.cmplx-item h4 { font-size: 0.9375rem; font-weight: 700; color: var(--ink) !important; margin-bottom: 6px; }
.cmplx-item p  { font-size: 0.82rem; color: var(--ink-40) !important; line-height: 1.65; margin: 0; }

@media (max-width: 1024px) { .cmplx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cmplx-grid { grid-template-columns: 1fr; } }

/* ── DARK CTA STRIP ── */
.dark-strip { background: var(--dark); padding: 64px 0; }
.dark-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dark-strip h2 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.dark-strip .sub-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4) !important;
  margin: 0;
}
@media (max-width: 640px) {
  .dark-strip-inner { flex-direction: column; text-align: center; }
  .dark-strip .btn-primary-brand { width: 100%; justify-content: center; display: flex; }
}

/* ── HERO TAGLINE ── */
.hero-tagline {
  font-size: 0.78rem;
  color: var(--ink-20) !important;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── ABOUT PAGE: PILLAR LIST ── */
.pillar-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.pillar-item {
  display: flex;
  gap: 28px;
  padding: 32px;
  border-bottom: 1px solid var(--border);
}
.pillar-item:last-child { border-bottom: none; }
.pillar-num {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--green) !important;
  margin-top: 2px;
}
.pillar-item h3 { font-size: 1rem; font-weight: 700; color: var(--ink) !important; margin-bottom: 8px; }
.pillar-item p  { font-size: 0.9rem; color: var(--ink-40) !important; line-height: 1.75; margin: 0; }

/* ── ABOUT PAGE: COMPETITOR GRID ── */
.comp3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comp3-card { background: var(--mist); padding: 32px 28px; }
.comp3-card-us {
  background: var(--white);
  outline: 2px solid var(--green);
  outline-offset: -2px;
  position: relative;
}
.comp3-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}
.comp3-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-20) !important; margin-bottom: 12px; }
.comp3-label-us { color: var(--green) !important; margin-top: 8px; }
.comp3-title { font-size: 0.875rem; font-weight: 700; color: var(--ink) !important; margin-bottom: 8px; }
.comp3-body  { font-size: 0.85rem; color: var(--ink-40) !important; line-height: 1.65; margin: 0; }

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

/* ── ABOUT PAGE: CREDENTIALS PANEL ── */
.cred-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cred-panel-head {
  background: var(--ink);
  padding: 20px 24px;
}
.cred-panel-head p {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4) !important;
  margin: 0;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--mist);
}
.cred-item:last-child { border-bottom: none; }
.cred-item svg { width: 14px; height: 14px; stroke: var(--green); fill: none; flex-shrink: 0; margin-top: 3px; }
.cred-item .cred-title { font-size: 0.875rem; font-weight: 600; color: var(--ink) !important; margin: 0 0 2px; }
.cred-item .cred-desc  { font-size: 0.78rem; color: var(--ink-20) !important; margin: 0; }

/* ── ABOUT STATS QUAD ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-stat {
  background: var(--white);
  padding: 32px 28px;
}
.about-stat .astat-num {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink) !important;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.about-stat .astat-desc {
  font-size: 0.82rem;
  color: var(--ink-40) !important;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-stats { grid-template-columns: 1fr; } }

/* ── SIDE-BY-SIDE ABOUT LAYOUT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.about-quote-block {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  margin-top: 32px;
}
.about-quote-block blockquote {
  font-size: 1rem;
  color: var(--ink) !important;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.6;
}
.about-quote-block cite {
  font-size: 0.8rem;
  color: var(--ink-20) !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ── ABOUT BODY TEXT ── */
.about-body p {
  font-size: 0.9375rem;
  color: var(--ink-40) !important;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-lead {
  font-size: 1.05rem;
  color: var(--ink) !important;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ================================================================
   TESTIMONIALS SWIPER CAROUSEL
================================================================ */
.testimonial-swiper { overflow: visible; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green);
}
.testi-stars {
  font-size: 0.875rem;
  color: var(--green);
  letter-spacing: 2px;
}
.testi-body {
  font-size: 0.9375rem;
  color: var(--ink-60) !important;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.testi-attr {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-20) !important;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.swiper-pagination-bullet {
  background: var(--border) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--green) !important;
}

/* ================================================================
   BLOG LISTING PAGE
================================================================ */
.blog-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-placeholder svg {
  width: 40px; height: 40px;
  stroke: var(--border);
}
.blog-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-date {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-20) !important;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink) !important;
  line-height: 1.3;
  margin: 0;
  text-decoration: none;
}
.blog-card-title:hover { color: var(--green) !important; }
.blog-card-summary {
  font-size: 0.875rem;
  color: var(--ink-60) !important;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.blog-card-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green) !important;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.blog-card-read-more:hover { text-decoration: underline; }
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-20);
}
.blog-empty p { font-size: 1.05rem; margin-top: 12px; }

/* ================================================================
   BLOG POST PAGE
================================================================ */
.blog-post-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.blog-post-meta {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green) !important;
  margin-bottom: 16px;
}
.blog-post-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  max-width: 760px;
}
.blog-post-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 40px 0;
  border: 1px solid var(--border);
}
.blog-post-content {
  max-width: 720px;
  font-size: 1rem;
  color: var(--ink-60) !important;
  line-height: 1.85;
}
.blog-post-content h2,
.blog-post-content h3 {
  font-family: var(--font-display);
  color: var(--ink) !important;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.blog-post-content h2 { font-size: 1.5rem; }
.blog-post-content h3 { font-size: 1.2rem; }
.blog-post-content p { margin-bottom: 1.2rem; }
.blog-post-content ul, .blog-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content strong { color: var(--ink); }
.blog-post-content a { color: var(--green); }
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-40) !important;
  text-decoration: none;
  margin-bottom: 32px;
}
.blog-back:hover { color: var(--ink) !important; }

/* ================================================================
   ADMIN BLOG MANAGEMENT
================================================================ */
.admin-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-header h1 {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.admin-table th {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-40) !important;
  padding: 14px 20px;
  text-align: left;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg); }
.admin-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-badge-published {
  background: var(--green-light);
  color: var(--green) !important;
}
.admin-badge-draft {
  background: var(--bg);
  color: var(--ink-40) !important;
  border: 1px solid var(--border);
}
.admin-actions a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green) !important;
  text-decoration: none;
  margin-right: 12px;
}
.admin-actions a.danger { color: #DC2626 !important; }
.admin-actions a:hover { text-decoration: underline; }
.admin-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.admin-form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink) !important;
}
.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}
.admin-form-group input:focus,
.admin-form-group textarea:focus { border-color: var(--green); }
.admin-form-group textarea { resize: vertical; min-height: 300px; }
