/* =============================================================================
   YURBI GLOBAL STYLES
   Single source of truth for design tokens, typography, components, layout.
   WCAG AA: 4.5:1 normal text, 3:1 large/bold text
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');


/* =============================================================================
   DESIGN TOKENS
   ============================================================================= */
:root {
  /* Brand */
  --blue:          #005FAC;
  --blue-dark:     #004F91;
  --blue-deeper:   #003E73;
  --blue-soft:     #E8F2FB;
  --blue-soft2:    #D0E6F7;

  --green:         #047A18;   /* 4.7:1 on white ✓ */
  --green-hover:   #036314;
  --green-soft:    #E6F5E9;
  --green-border:  #B3DFB9;

  --lime:          #5E7600;   /* 5.16:1 on white ✓ — was #6B8700 (4.13:1 FAIL) */

  /* Text on light backgrounds */
  --text:          #0C1A27;   /* 18:1 ✓ */
  --text-sec:      #2E4A60;   /* 8.5:1 ✓ */
  --text-muted:    #4A6478;   /* 5.1:1 ✓ */

  /* Text on dark backgrounds (navy = #0C1A27) */
  --on-dark:       #FFFFFF;
  --on-dark-sec:   #C8DCE9;   /* 4.8:1 on navy ✓ */
  --on-dark-link:  #D8E8F2;   /* 5.6:1 on navy ✓ */
  --on-dark-head:  #7899AE;   /* bold uppercase only, 3.1:1 ✓ */
  --on-dark-badge: #B8D460;   /* 4.5:1 on navy ✓ */
  --on-dark-cta:   #A8D8A0;   /* icon accent on blue CTA ✓ */

  /* Backgrounds */
  --bg:            #FFFFFF;
  --bg-subtle:     #F3F7FB;
  --bg-muted:      #E8EFF5;
  --bg-blue:       #EBF4FF;

  /* Borders */
  --border:        #C8DCE9;
  --border-sub:    #DDE9F3;

  /* Semantic */
  --error:         #C0392B;   /* 5.1:1 on white ✓ */
  --error-soft:    #FDEDEB;

  /* Surfaces */
  --navy:          #0C1A27;

  /* Fonts */
  --font:          'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:          'DM Mono', 'Consolas', 'Courier New', monospace;

  /* ==========================================================================
     TYPE SCALE — explicit values, no clamp() surprises
     All rem, root 16px.
     ========================================================================== */
  --t-label:   0.6875rem;   /* 11px  — eyebrow labels, caps badges  */
  --t-caption: 0.75rem;     /* 12px  — legal, fine print            */
  --t-sm:      0.875rem;    /* 14px  — nav, secondary UI            */
  --t-base:    1rem;        /* 16px  — min body copy                */
  --t-body:    1.0625rem;   /* 17px  — comfortable reading          */
  --t-lead:    1.125rem;    /* 18px  — lead paragraphs              */
  --t-card:    1.1875rem;   /* 19px  — card & panel headings        */
  --t-xl:      1.375rem;    /* 22px  — small section titles         */
  --t-2xl:     1.625rem;    /* 26px  — medium headings / h3         */
  --t-3xl:     2rem;        /* 32px  — section headings / h2 mobile */
  --t-4xl:     2.5rem;      /* 40px  — section headings / h2 desk   */
  --t-hero:    3rem;        /* 48px  — hero h1 desktop              */
  --t-hero-page: 3.25rem;  /* 52px  — interior page heroes (vs/, pricing/, solutions/) */

  /* Weights */
  --w-regular:   400;
  --w-medium:    500;
  --w-semibold:  600;
  --w-bold:      700;
  --w-xbold:     800;

  /* Line heights */
  --lh-tight:    1.12;   /* large headings */
  --lh-snug:     1.25;   /* subheadings, cards */
  --lh-normal:   1.5;    /* compact body */
  --lh-relaxed:  1.7;    /* reading body */

  /* Letter spacing */
  --ls-tight:   -0.025em;
  --ls-snug:    -0.015em;
  --ls-normal:   0em;
  --ls-wide:     0.04em;
  --ls-wider:    0.07em;
  --ls-widest:   0.12em;

  /* Radii */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:    0 1px 3px rgba(12,26,39,.07), 0 1px 2px rgba(12,26,39,.04);
  --sh-md:    0 4px 16px rgba(12,26,39,.09), 0 2px 6px rgba(12,26,39,.05);
  --sh-lg:    0 16px 48px rgba(12,26,39,.12), 0 6px 16px rgba(12,26,39,.06);
  --sh-xl:    0 24px 64px rgba(12,26,39,.14), 0 8px 24px rgba(12,26,39,.07);
  --sh-blue:  0 8px 28px rgba(0,95,172,.22);
  --sh-green: 0 8px 24px rgba(4,122,24,.22);

  /* Spacing */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-7:  28px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-14: 56px;
  --s-16: 64px;
  --s-20: 80px;

  /* Layout */
  --max-w:      1180px;
  --header-h:   68px;
  --section-v:  88px;    /* Vertical padding on sections */
}


/* =============================================================================
   RESET
   ============================================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--t-body);
  font-weight: var(--w-medium);
  line-height: var(--lh-relaxed);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html { overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: inherit; }

svg {
  /* Inline SVGs: size by context via font-size or explicit w/h */
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
  overflow: hidden;
  display: inline-block;
}


/* =============================================================================
   TYPOGRAPHY
   Key rule: global heading tags set sensible DEFAULTS.
   Components override with specific values as needed (e.g. .card h3).
   Never fight specificity — always override at the component level.
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: var(--w-xbold);
  color: var(--text);
  margin: 0;
}

/* Hero / page title */
h1 {
  font-size: var(--t-hero);    /* 48px */
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

/* Section headings */
h2 {
  font-size: var(--t-4xl);     /* 40px */
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

/* Panel / subsection headings */
h3 {
  font-size: var(--t-2xl);     /* 26px */
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
}

/* Card headings — components should use h4 for card titles */
h4 {
  font-size: var(--t-card);    /* 19px */
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-normal);
}

h5 {
  font-size: var(--t-base);    /* 16px */
  font-weight: var(--w-bold);
  line-height: var(--lh-snug);
}

p {
  font-size: var(--t-body);
  line-height: var(--lh-relaxed);
  color: var(--text-sec);
  margin: 0;
}

/* Mobile type scale */
@media (max-width: 768px) {
  h1 { font-size: var(--t-4xl); }   /* 48 → 40 */
  h2 { font-size: var(--t-3xl); }   /* 40 → 32 */
  h3 { font-size: var(--t-xl);  }   /* 26 → 22 */
}
@media (max-width: 480px) {
  h1 { font-size: var(--t-3xl); }   /* 40 → 32 */
  h2 { font-size: var(--t-2xl); }   /* 32 → 26 */
}


/* =============================================================================
   LAYOUT
   ============================================================================= */
.inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s-6);
}

.section {
  padding-block: var(--section-v);
}

/* Section header — label + title + subtitle block */
.sh-block {
  margin-bottom: var(--s-14);  /* 56px gap to content below */
}
.sh-block.center          { text-align: center; }
.sh-block.center .sh-sub  { margin-inline: auto; }

/* Eyebrow label */
.sh-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-label);       /* 11px */
  font-weight: var(--w-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s-3);       /* 12px below label */
}
.sh-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

/* Section heading */
.sh-title {
  font-size: var(--t-4xl);         /* 40px */
  font-weight: var(--w-xbold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text);
  margin-bottom: var(--s-4);       /* 16px below heading */
}

/* Section subtitle */
.sh-sub {
  font-size: var(--t-lead);        /* 18px */
  font-weight: var(--w-regular);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  max-width: 580px;
  margin: 0;
}

@media (max-width: 768px) {
  .sh-title     { font-size: var(--t-3xl); }
  .sh-block     { margin-bottom: var(--s-10); }
}


/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font);
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  line-height: 1.2;
  padding: 11px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;          /* WCAG 2.5.5 touch target */
  transition: background-color .18s, border-color .18s, transform .15s, box-shadow .18s, color .18s;
}
.btn-lg  { font-size: var(--t-body); padding: 14px 28px; min-height: 50px; border-radius: var(--r-lg); }
.btn-sm  { font-size: var(--t-sm);   padding: 8px 16px;  min-height: 36px; border-radius: var(--r-sm); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-sm svg { width: 14px; height: 14px; }

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--sh-blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,79,145,.3);
}
.btn-blue:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--sh-green);
}
.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(4,122,24,.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-soft); }

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

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  font-weight: var(--w-xbold);
}
.btn-white:hover {
  background: var(--bg-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.65);
}


/* =============================================================================
   ACCESSIBILITY
   ============================================================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-2);
  background: var(--blue);
  color: #fff;
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-sm);
  text-decoration: none;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: var(--s-2); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (forced-colors: active) {
  .btn-primary, .btn-blue { border: 2px solid ButtonText; }
}


/* =============================================================================
   ANNOUNCE BAR
   ============================================================================= */
.announce-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 10px var(--s-6);
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  line-height: 1.4;
}
.announce-bar a {
  color: #CAEFCA;              /* 5.17:1 on blue ✓ — was #A8D8A0 (4.02:1 FAIL) */
  font-weight: var(--w-bold);
  text-decoration: underline;
  margin-left: var(--s-1);
}
.announce-bar a:hover { color: #fff; }


/* =============================================================================
   HEADER
   ============================================================================= */
.header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border-sub);
  z-index: 900;
}
@supports (backdrop-filter: blur(14px)) {
  .header {
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}
.header.scrolled { box-shadow: var(--sh-sm); }

.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 1.25rem;
  font-weight: var(--w-xbold);
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: var(--ls-snug);
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 18px; height: 18px; color: #fff; }
.logo-wordmark span { color: var(--blue); }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: var(--s-2) 13px;
  color: var(--text);
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: all .15s;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: var(--text); background: var(--bg-muted); }
.nav-link.active,
.nav-link[aria-current="page"] { color: var(--blue); background: var(--bg-muted); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}
.btn-nav-secondary {
  color: var(--blue);
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  padding: 8px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--blue);
  transition: all .18s;
  min-height: 44px;
  display: flex; align-items: center;
}
.btn-nav-secondary:hover { background: var(--blue-soft); }

.btn-nav-primary {
  background: var(--green);
  color: #fff;
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  padding: 8px 18px;
  border-radius: var(--r-md);
  transition: all .18s;
  min-height: 44px;
  display: flex; align-items: center;
}
.btn-nav-primary:hover { background: var(--green-hover); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}


/* =============================================================================
   TRUST BAR
   ============================================================================= */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border-sub);
  padding: var(--s-5) var(--s-6);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: var(--text-sec);
  white-space: nowrap;
}
.trust-item svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }
.trust-item strong { color: var(--text); font-weight: var(--w-bold); }
.trust-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }


/* =============================================================================
   CARDS — shared base styles
   ============================================================================= */
.card {
  background: var(--bg);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-5);
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon-blue  { background: var(--blue-soft);  color: var(--blue); }
.card-icon-green { background: var(--green-soft); color: var(--green); }
.card-icon-lime  { background: rgba(107,135,0,.1); color: var(--lime); }
.card-icon-white { background: rgba(255,255,255,.15); color: #fff; }

/* Card heading — overrides global h3/h4 within card context */
.card h3,
.card h4 {
  font-size: var(--t-card);    /* 19px */
  font-weight: var(--w-xbold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-normal);
  color: var(--text);
  margin-bottom: var(--s-2);
}

.card p {
  font-size: var(--t-base);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.tag-list {
  display: flex;
  gap: var(--s-1);
  flex-wrap: wrap;
  margin-top: var(--s-4);
}
.tag {
  font-size: var(--t-caption);
  font-weight: var(--w-bold);
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--bg-muted);
  color: var(--text-muted);
  letter-spacing: var(--ls-wide);
}


/* =============================================================================
   BROWSER CHROME MOCKUP
   ============================================================================= */
.browser-chrome {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.browser-bar {
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
  padding: 10px var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  max-width: 320px;
  margin-inline: auto;
  display: flex; align-items: center; gap: 5px;
}
.browser-url svg { width: 10px; height: 10px; opacity: .6; }


/* =============================================================================
   FINAL CTA
   ============================================================================= */
.final-cta-section {
  background: linear-gradient(140deg, var(--blue-deeper) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding-block: var(--section-v);
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.final-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255,255,255,.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 70% at 100% 50%, rgba(4,122,24,.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Split layout container */
.cta-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-split-left { }
.cta-split-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
  min-width: 270px;
}

/* Legacy .cta-card kept as a no-op wrapper for pages still using it */
.cta-card { position: relative; z-index: 1; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: var(--t-label);
  font-weight: var(--w-bold);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-5);
  border: 1px solid rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}
.cta-eyebrow svg { width: 12px; height: 12px; }

.cta-split-left h2,
.cta-card h2 {
  font-size: var(--t-4xl);        /* 40px */
  font-weight: var(--w-xbold);
  color: #fff;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--s-4);
}

.cta-body {
  font-size: var(--t-lead);       /* 18px */
  color: var(--on-dark-sec);      /* 4.8:1 ✓ */
  max-width: 520px;
  margin-bottom: var(--s-8);
  line-height: var(--lh-relaxed);
}

/* Legacy centered buttons (kept for backward compat) */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.cta-link-text {
  color: rgba(255,255,255,.82);   /* 4.90:1 on --blue ✓ */
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  padding: 6px 0;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .15s;
}
.cta-link-text:hover { color: #fff; }

.cta-note {
  font-size: var(--t-caption);
  color: rgba(255,255,255,.82);   /* 4.90:1 on --blue ✓ — was .65 (FAIL) */
  line-height: var(--lh-normal);
}

.cta-values {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-5);
  margin-top: var(--s-6);
  flex-wrap: wrap;
}
.cta-value {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,.78);
}
.cta-value svg { width: 14px; height: 14px; color: var(--on-dark-cta); flex-shrink: 0; }


/* =============================================================================
   FOOTER
   WCAG AA: all text on --navy (#0C1A27) verified below
   --footer-text:    #E2EAF0  — 10.8:1 ✓  body text
   --footer-muted:   #94ADBF  — 4.6:1  ✓  secondary / muted
   --footer-link:    #EFF5FA  — 12.1:1 ✓  links default
   --footer-head:    #A8C0D0  — 6.2:1  ✓  column headings (not caps)
   ============================================================================= */
.footer {
  background: var(--navy);
  padding: var(--s-16) var(--s-6) var(--s-10);
  /* Improve text rendering on dark bg */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-inner { max-width: var(--max-w); margin-inline: auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--s-12);
  margin-bottom: var(--s-14);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: #fff; }
.footer-logo-name {
  font-size: 1.125rem;
  font-weight: var(--w-xbold);
  color: #fff;                   /* 21:1 ✓ */
  letter-spacing: var(--ls-snug);
}

.footer-brand-desc {
  font-size: var(--t-base);      /* 16px */
  font-weight: var(--w-medium);  /* slightly heavier for dark bg readability */
  color: #C8DCE9;                /* 4.8:1 ✓ */
  line-height: var(--lh-relaxed);
  max-width: 280px;
  margin-bottom: var(--s-5);
}

.footer-cta-row {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  background: rgba(184,212,96,.12);
  border: 1px solid rgba(184,212,96,.25);
  color: #B8D460;                /* 4.5:1 ✓ bold */
  font-size: var(--t-caption);
  font-weight: var(--w-bold);
  padding: 5px 12px;
  border-radius: var(--r-full);
  letter-spacing: var(--ls-wide);
}
.footer-badge svg { width: 11px; height: 11px; }

/* Column headings — clear visual anchors */
.footer-col h4 {
  font-size: var(--t-base);      /* 16px — up from 14px for better anchor weight */
  font-weight: var(--w-bold);
  color: #fff;                   /* 21:1 ✓ — white for max contrast as section anchors */
  margin-bottom: var(--s-5);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.footer-h4-spaced { margin-top: var(--s-8) !important; }

/* Links — semibold, more breathing room between items */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 2px; }
.footer-links a {
  font-size: var(--t-sm);        /* 14px — down from 16px; lets h4 anchors own the visual weight */
  font-weight: var(--w-semibold);
  color: #C8DCE9;                /* 4.8:1 ✓ — slightly muted vs h4 white for hierarchy */
  transition: color .15s;
  line-height: var(--lh-normal);
  display: inline-block;
  padding-block: 5px;            /* more breathing room between links */
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

/* Social icons */
.footer-social {
  display: flex;
  gap: var(--s-4);
  align-items: center;
}
.footer-col .footer-social { margin-top: var(--s-5); }
.footer-col .logo { margin-bottom: var(--s-5); }
.footer-social a {
  color: #94ADBF;                /* 4.6:1 ✓ */
  transition: color .15s;
  display: flex;
}
.footer-social a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  row-gap: var(--s-3);
}
.footer-copy {
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: #94ADBF;                /* 4.6:1 ✓ */
}
.footer-legal { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.footer-legal a {
  font-size: var(--t-caption);
  font-weight: var(--w-medium);
  color: #94ADBF;                /* 4.6:1 ✓ */
  transition: color .15s;
}
.footer-legal a:hover { color: #fff; text-decoration: underline; }


/* =============================================================================
   RESPONSIVE — Global
   ============================================================================= */
@media (max-width: 1024px) {
  :root { --section-v: 72px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; --header-h: 60px; }
  .trust-bar-inner { gap: var(--s-4) var(--s-5); }
  .trust-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-split { grid-template-columns: 1fr; gap: var(--s-10); }
  .cta-split-right { min-width: unset; }
  .cta-split { gap: var(--s-8); }
  .cta-split-left h2, .cta-card h2 { font-size: var(--t-3xl); }
  .cta-values { gap: var(--s-4); }
  .header-actions .btn-nav-trial { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .inner { padding-inline: var(--s-4); }
}

@media print {
  .header, .announce-bar, .footer { display: none; }
  body { font-size: 12pt; color: #000; }
}



/* =============================================================================
   NAV DROPDOWNS
   ============================================================================= */
.nav-item-drop { position: relative; }

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-chev {
  width: 14px !important;
  height: 14px !important;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-drop-btn[aria-expanded="true"] .nav-chev { transform: rotate(180deg); }

.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  z-index: 800;
  min-width: 240px;
  animation: dropIn .15s ease;
}
.nav-drop.is-open { display: block; }

.nav-drop-wide { min-width: 840px; }

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-drop-inner {
  display: flex;
  gap: 0;
  padding: 20px;
}

.nav-drop-col {
  flex: 1;
  min-width: 180px;
  padding: 0 14px;
  border-right: 1px solid var(--border-sub);
}
.nav-drop-col:first-child { padding-left: 0; }
.nav-drop-col:last-child  { border-right: none; padding-right: 0; }
.nav-drop-col-links { flex: 0 0 210px; min-width: 210px; }

.nav-drop-label {
  font-size: var(--t-label);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-sub);
}

.nav-drop-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 6px;
  border-radius: var(--r-sm);
  transition: background .12s;
  margin-bottom: 1px;
  text-decoration: none;
}
.nav-drop-link:hover { background: var(--bg-subtle); }
.nav-drop-link svg {
  width: 18px !important;
  height: 18px !important;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.nav-drop-link strong {
  display: block;
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  color: var(--text);
  line-height: 1.3;
}
.nav-drop-link span {
  display: block;
  font-size: var(--t-caption);
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 1px;
}

.nav-drop-link-featured {
  background: var(--blue-soft);
  border: 1px solid var(--blue-soft2);
  margin-bottom: 8px;
}
.nav-drop-link-featured:hover { background: var(--blue-soft2); }
.nav-drop-link-featured strong { color: var(--blue); }

.nav-drop-plain {
  display: block;
  font-size: var(--t-sm);
  color: var(--blue);
  font-weight: var(--w-semibold);
  padding: 5px 6px;
  border-radius: var(--r-sm);
  transition: background .12s;
  text-decoration: none;
  margin-bottom: 2px;
}
.nav-drop-plain:hover { background: var(--bg-subtle); color: var(--blue-dark); box-shadow: inset 2px 0 0 var(--blue); }

.nav-drop-callout {
  margin-top: 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.nav-drop-callout strong {
  display: block;
  font-size: var(--t-sm);
  color: var(--text);
  font-weight: var(--w-bold);
  margin-bottom: 3px;
}
.nav-drop-callout span {
  display: block;
  font-size: var(--t-caption);
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.4;
}
.nav-drop-callout a {
  font-size: var(--t-caption);
  color: var(--blue);
  font-weight: var(--w-semibold);
  text-decoration: underline;
}


/* =============================================================================
   MOBILE NAV
   ============================================================================= */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border-sub);
  padding: 12px 24px 20px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--border-sub); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-size: var(--t-base);
  font-weight: var(--w-semibold);
  color: var(--text-sec);
  text-decoration: none;
  transition: color .12s;
}
.mobile-nav a:hover { color: var(--blue); }

@media (min-width: 1025px) {
  .mobile-nav { display: none !important; }
  .nav-toggle  { display: none !important; }
}
@media (max-width: 1024px) {
  .nav          { display: none !important; }
  .header-actions { display: none !important; }
  .nav-toggle   { display: flex !important; }
  /* Wide dropdown doesn't apply on mobile */
  .nav-drop-wide { min-width: unset; }
}

/* =============================================================================
   GLOBAL.CSS ADDITIONS — append these blocks to the end of global.css
   New reusable components added during homepage + pricing rebuild.
   ============================================================================= */


/* =============================================================================
   SECTION ALT
   ============================================================================= */
.section-alt {
  background: var(--bg-subtle);
}


/* =============================================================================
   CARD GRID — responsive multi-column card layouts
   Usage: <div class="card-grid card-grid-3"> ... </div>
   ============================================================================= */
.card-grid {
  display: grid;
  gap: var(--s-6);
}

.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); }

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

@media (max-width: 640px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }
}


/* =============================================================================
   FAQ ACCORDION
   Reusable on pricing, features, comparison, solution pages.
   ============================================================================= */
.faq-grid {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  text-align: left;
  font-size: var(--t-body);
  font-weight: var(--w-bold);
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  line-height: var(--lh-snug);
  min-height: 44px;
  transition: color .15s, background .15s;
}
.faq-question:hover { color: var(--blue); background: var(--bg-subtle); }
.faq-question[aria-expanded="true"] {
  color: var(--blue);
  border-bottom: 1px solid var(--border-sub);
}

.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  padding: var(--s-5) var(--s-6) var(--s-6);
}
.faq-answer p {
  font-size: var(--t-body);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  margin: 0;
}
.faq-answer p + p { margin-top: var(--s-3); }
.faq-answer strong { color: var(--text); font-weight: var(--w-semibold); }
.faq-answer a { color: var(--blue); font-weight: var(--w-semibold); }
.faq-answer a:hover { text-decoration: underline; }


/* =============================================================================
   STARTUP NUDGE
   Inline callout used near pricing or CTA sections to catch price-sensitive
   buyers before they leave. Signals a softer entry point without advertising it.
   Usage: .startup-nudge (inline element, no wrapping section needed)
   ============================================================================= */
.startup-nudge {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-6);
  background: var(--bg-blue);
  border: 1px solid var(--blue-soft2);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
}
.startup-nudge svg {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.startup-nudge strong { color: var(--text); font-weight: var(--w-bold); }
.startup-nudge a { color: var(--blue); font-weight: var(--w-semibold); }
.startup-nudge a:hover { text-decoration: underline; }

/* =============================================================================
   GLOBAL.CSS ADDITIONS — append to end of global.css
   Added during izenda page build. Reusable across all vs/ and solution pages.
   ============================================================================= */


/* =============================================================================
   BREADCRUMB
   Used on all comparison and solution pages.
   Usage: <nav class="breadcrumb"> <a href="/vs/">Compare</a> › <span>Current</span> </nav>
   ============================================================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}
.breadcrumb a {
  color: var(--blue);
  font-weight: var(--w-semibold);
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.breadcrumb span { color: var(--text-muted); }


/* =============================================================================
   TAG VARIANTS
   Extends the existing .tag component with semantic color variants.
   Usage: <span class="tag tag-danger">Legacy</span>
          <span class="tag tag-success">Active</span>
          <span class="tag tag-warn">Acquired</span>
   ============================================================================= */
.tag-danger {
  background: rgba(229,62,62,.1);
  color: #C53030;
  border: 1px solid rgba(229,62,62,.2);
}
.tag-success {
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--green-border);
}
.tag-warn {
  background: rgba(221,107,32,.1);
  color: #C05621;
  border: 1px solid rgba(221,107,32,.2);
}
.tag-blue {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid var(--blue-soft2);
}


/* =============================================================================
   CALLOUT PATTERNS
   Inline contextual callouts — info boxes, warnings, alerts.
   Used in comparison pages, pricing, and solution pages.

   Usage:
     <div class="callout callout-warn">
       <svg ...></svg>
       <div class="callout-text"><strong>Label:</strong> Body copy here.</div>
     </div>

   Variants: callout-warn (red), callout-info (blue), callout-ok (green),
             callout-neutral (grey)
   ============================================================================= */
.callout {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  font-size: var(--t-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-6);
}
.callout svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.callout-text {
  color: var(--text-sec);
}
.callout-text strong {
  color: var(--text);
  font-weight: var(--w-bold);
}
.callout-text a {
  color: var(--blue);
  font-weight: var(--w-semibold);
}
.callout-text a:hover { text-decoration: underline; }

/* Warning — red left border, used for critical notices */
.callout-warn {
  background: rgba(229,62,62,.06);
  border: 1px solid rgba(229,62,62,.2);
  border-left: 3px solid #E53E3E;
}
.callout-warn svg { color: #C53030; }

/* Danger — same red palette as warn but stronger background, for terminal/EOL notices */
.callout-danger {
  background: rgba(229,62,62,.10);
  border: 1px solid rgba(229,62,62,.3);
  border-left: 4px solid #C53030;
}
.callout-danger svg { color: #C53030; }

/* Info — blue, used for neutral informational callouts */
.callout-info {
  background: var(--blue-soft);
  border: 1px solid var(--blue-soft2);
  border-left: 3px solid var(--blue);
}
.callout-info svg { color: var(--blue); }

/* OK — green, used for positive confirmations */
.callout-ok {
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-left: 3px solid var(--green);
}
.callout-ok svg { color: var(--green); }

/* Neutral — grey, used for general notes */
.callout-neutral {
  background: var(--bg-subtle);
  border: 1px solid var(--border-sub);
  border-left: 3px solid var(--border);
}
.callout-neutral svg { color: var(--text-muted); }

/* =============================================================================
   VS COMPARISON LAYOUT — shared across all vs/ pages
   Two-column Competitor vs Yurbi comparison grid.
   Usage:
     <div class="vs-compare-grid">
       <div class="vs-compare-col vs-compare-col-neutral"> ... </div>
       <div class="vs-compare-col vs-compare-col-yurbi"> ... </div>
     </div>
   ============================================================================= */
.vs-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.vs-compare-col {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid;
}
.vs-compare-col-neutral { border-color: var(--border-sub); }
.vs-compare-col-yurbi   { border-color: var(--blue); box-shadow: var(--sh-blue); }

.vs-compare-head {
  padding: var(--s-5) var(--s-7);
  border-bottom: 1px solid var(--border-sub);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.vs-compare-col-neutral .vs-compare-head { background: var(--bg-subtle); }
.vs-compare-col-yurbi   .vs-compare-head { background: var(--blue-soft); }

.vs-compare-head h3 {
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: var(--text);
  flex: 1;
}
.vs-compare-head svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.vs-compare-col-neutral .vs-compare-head svg { color: var(--text-muted); }
.vs-compare-col-yurbi   .vs-compare-head svg { color: var(--blue); }

.vs-compare-list {
  list-style: none;
  background: var(--bg);
  padding: var(--s-5) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vs-compare-list li {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border-sub);
}
.vs-compare-list li:last-child { border-bottom: none; }

/* Row label */
.vs-dim {
  font-size: var(--t-caption);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--text-muted);
}

/* Value cells */
.vs-val-bad  { font-size: var(--t-base); font-weight: var(--w-semibold); color: #C53030; }
.vs-val-warn { font-size: var(--t-base); font-weight: var(--w-semibold); color: #C05621; }
.vs-val-ok   { font-size: var(--t-base); font-weight: var(--w-semibold); color: var(--text-sec); }
.vs-val-good { font-size: var(--t-base); font-weight: var(--w-semibold); color: var(--green); }

/* Responsive — collapses to single column on tablet */
@media (max-width: 1024px) {
  .vs-compare-grid { grid-template-columns: 1fr; }
}


/* =============================================================================
   GLOBAL.CSS ADDITIONS — append to end of global.css
   Added during trial page build. Form components are reusable across
   /trial/, /demo/, and any other page with a contact or download form.
   ============================================================================= */


/* =============================================================================
   FORM COMPONENTS
   Covers all form interaction elements: groups, labels, inputs, selects,
   status feedback, and the honeypot spam-trap pattern.

   Usage:
     <div class="form-group">
       <label class="form-label" for="field_id">Label <span class="form-required" aria-hidden="true">*</span></label>
       <input class="form-input" type="text" id="field_id" required>
     </div>

     <div class="form-status form-status-error" role="alert" aria-live="polite">Error message</div>
   ============================================================================= */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

/* Label — base */
.form-label {
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  color: var(--text);
  line-height: var(--lh-snug);
  display: flex;
  align-items: center;
  gap: var(--s-1);
  flex-wrap: wrap;
}

/* Required asterisk */
.form-required {
  color: var(--error);
  font-weight: var(--w-bold);
  line-height: 1;
}

/* Optional label modifier */
.form-label-opt {
  font-size: var(--t-caption);
  font-weight: var(--w-regular);
  color: var(--text-muted);
  padding: 2px 7px;
  background: var(--bg-muted);
  border-radius: var(--r-full);
}

/* Text / email inputs */
.form-input {
  width: 100%;
  font-family: var(--font);
  font-size: var(--t-base);
  font-weight: var(--w-medium);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px var(--s-4);
  min-height: 44px;            /* WCAG 2.5.5 touch target */
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  font-weight: var(--w-regular);
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,95,172,.12);
  outline: none;
}

/* Select — custom chevron, consistent with inputs */
.form-select {
  width: 100%;
  font-family: var(--font);
  font-size: var(--t-base);
  font-weight: var(--w-medium);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px var(--s-10) 10px var(--s-4);
  min-height: 44px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A6478' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,95,172,.12);
  outline: none;
}

/* Unselected / placeholder state */
.form-select option[value=""] {
  color: var(--text-muted);
}

/* Status feedback — shown on validation error or submission result */
.form-status {
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  margin-bottom: var(--s-4);
  line-height: var(--lh-normal);
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.form-status-error {
  background: var(--error-soft);
  color: var(--error);
  border: 1px solid rgba(192,57,43,.2);
}

.form-status-success {
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--green-border);
}

/* Honeypot — visually hidden, accessible to bots only
   Usage: wrap the input in this div; JS checks for non-empty value on submit */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* =============================================================================
   GLOBAL.CSS ADDITION — append to end of global.css
   Added during footer update. footer-company is reusable if footer is
   ever rebuilt or extended.
   ============================================================================= */


/* =============================================================================
   FOOTER COMPANY BLOCK
   5000fish corporate attribution in the footer-bottom bar.
   Usage: <a href="..." class="footer-company"><img>...<span>...</span></a>
   ============================================================================= */
.footer-company {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  transition: opacity .15s;
}

.footer-company:hover { opacity: .8; }

.footer-company img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-company span {
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: #94ADBF;                /* 4.6:1 on navy ✓ */
  white-space: nowrap;
}

.footer-company strong {
  color: #C8DCE9;                /* 4.8:1 on navy ✓ */
  font-weight: var(--w-bold);
}

/* footer-bottom layout is defined above in the FOOTER section */

@media (max-width: 768px) {
  .footer-company {
    width: 100%;
    justify-content: center;
  }
}

/* Compare dropdown — two-column, narrower than Product wide */
.nav-drop-compare {
  min-width: 560px;
}

/* =============================================================================
   GLOBAL.CSS ADDITION — Timeline component
   Append to end of global.css.
   Used on the About page. Reusable for any chronological narrative section
   (changelog page, product history, etc.).

   Usage:
     <div class="timeline" role="list">
       <div class="timeline-item" role="listitem">
         <div class="timeline-marker" aria-hidden="true">
           <span class="timeline-year">1999</span>
         </div>
         <div class="timeline-content">
           <h3>Heading</h3>
           <p>Body copy</p>
           <div class="timeline-note">Optional inline note</div>
         </div>
       </div>
     </div>

   Variants:
     .timeline-item-warn  — amber left border (acquisition/warning events)
     .timeline-item-now   — blue left border (current state)
     .timeline-note-good  — green icon/text for positive notes
   ============================================================================= */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical connecting line */
.timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: var(--s-8);
  bottom: var(--s-8);
  width: 2px;
  background: linear-gradient(180deg, var(--blue-soft2) 0%, var(--border-sub) 100%);
  z-index: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: var(--s-8);
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--border-sub);
  position: relative;
}

.timeline-item:last-child { border-bottom: none; }

/* Left border accent variants */
.timeline-item-warn .timeline-content {
  border-left: 3px solid #D97706;
  padding-left: var(--s-6);
  margin-left: calc(-1 * var(--s-6));
}

.timeline-item-now .timeline-content {
  border-left: 3px solid var(--blue);
  padding-left: var(--s-6);
  margin-left: calc(-1 * var(--s-6));
}

/* Year marker — sits on the vertical line */
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--s-1);
  position: relative;
  z-index: 1;
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: var(--t-caption);
  font-weight: var(--w-xbold);
  letter-spacing: var(--ls-wide);
  padding: 4px var(--s-2);
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 0 0 4px var(--bg);
}

/* Current item marker */
.timeline-item-now .timeline-year {
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--blue-soft2);
}

/* Warning item marker */
.timeline-item-warn .timeline-year {
  background: #D97706;
}

/* Content area */
.timeline-content {
  padding-top: var(--s-1);
}

.timeline-content h3 {
  font-size: var(--t-xl);
  font-weight: var(--w-xbold);
  color: var(--text);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
  margin-bottom: var(--s-3);
}

.timeline-content p {
  font-size: var(--t-body);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-3);
}

.timeline-content p:last-child { margin-bottom: 0; }

/* Inline note — callout within a timeline item */
.timeline-note {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: var(--bg-muted);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  color: var(--text-muted);
  line-height: var(--lh-normal);
}

.timeline-note svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Good/positive note variant */
.timeline-note-good {
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--green-border);
}
.timeline-note-good svg { color: var(--green); }

/* Responsive — collapse to single column, hide the vertical line */
@media (max-width: 768px) {
  .timeline::before { display: none; }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    padding: var(--s-8) 0;
  }

  .timeline-marker {
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline-item-warn .timeline-content,
  .timeline-item-now .timeline-content {
    padding-left: var(--s-4);
    margin-left: 0;
  }

  .timeline-content h3 { font-size: var(--t-card); }
}

/* =============================================================================
   GLOBAL.CSS ADDITIONS — Header nav updates
   Append to end of global.css after the existing .nav-drop-compare block.
   ============================================================================= */

/* Solutions dropdown — two-column, narrower than Product wide */
.nav-drop-solutions {
  min-width: 520px;
}

/* Mobile nav section divider */
.mobile-nav .mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--s-2) var(--s-4);
  list-style: none;
  padding: 0;
}

/* =============================================================================
   GLOBAL.CSS ADDITIONS — Solutions pages shared components
   Append these blocks to global.css
   ============================================================================= */


/* =============================================================================
   SOLUTION PAGE HERO LAYOUT
   Used by all /solutions/* pages
   ============================================================================= */
.sol-hero-section { padding-top: var(--s-10); }
.sol-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.sol-hero-copy { display: flex; flex-direction: column; gap: var(--s-6); }
.sol-hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-self: start;
  padding-top: var(--s-4);
}
.sol-proof-card {
  padding: var(--s-5);
  background: var(--bg);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.sol-proof-num {
  font-size: var(--t-3xl);
  font-weight: var(--w-xbold);
  color: var(--blue);
  line-height: 1;
  letter-spacing: var(--ls-snug);
}
.sol-proof-label {
  font-size: var(--t-sm);
  color: var(--text-sec);
  line-height: var(--lh-normal);
}
.sol-proof-card-cta {
  background: var(--bg-blue);
  border-color: var(--blue-soft2);
}
.sol-proof-card-cta .sol-proof-label {
  font-weight: var(--w-semibold);
  color: var(--text);
}


/* =============================================================================
   WHO THIS IS FOR — grid of pain/situation items
   ============================================================================= */
.sol-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.sol-who-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  background: var(--bg);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
}
.sol-who-item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.sol-who-item p {
  font-size: var(--t-base);
  color: var(--text-sec);
  line-height: var(--lh-relaxed);
  margin: 0;
}


/* =============================================================================
   SOLUTION FEATURE GRID — 3-col with highlight variant
   ============================================================================= */
.sol-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.sol-feat-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color .18s, box-shadow .18s;
}
.sol-feat-item:hover { border-color: var(--blue-soft2); box-shadow: var(--sh-sm); }
.sol-feat-highlight { border-color: var(--green-border); background: var(--green-soft); }
.sol-feat-highlight:hover { border-color: var(--green); }
.sol-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-soft); border: 1px solid var(--blue-soft2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.sol-feat-icon svg { width: 18px; height: 18px; color: var(--blue); }
.sol-feat-highlight .sol-feat-icon { background: var(--green-soft); border-color: var(--green-border); }
.sol-feat-highlight .sol-feat-icon svg { color: var(--green); }
.sol-feat-item h3 { font-size: var(--t-base); font-weight: var(--w-bold); color: var(--text); margin: 0 0 var(--s-2); }
.sol-feat-item p  { font-size: var(--t-base); color: var(--text-sec); line-height: var(--lh-relaxed); margin: 0; }


/* =============================================================================
   SOLUTION STEPS — horizontal 3-step layout
   Shared with How It Works but simpler (no giant step numbers)
   ============================================================================= */
.sol-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: var(--s-6);
}
.sol-step {
  padding: var(--s-7);
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--r-xl);
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}
.sol-step-num {
  font-size: 2.5rem;
  font-weight: var(--w-xbold);
  color: var(--border-sub);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  user-select: none;
  padding-top: 2px;
}
.sol-step-body { flex: 1; }
.sol-step-body h3 { font-size: var(--t-card); font-weight: var(--w-bold); color: var(--text); margin: 0 0 var(--s-3); }
.sol-step-body p  { font-size: var(--t-base); color: var(--text-sec); line-height: var(--lh-relaxed); margin: 0 0 var(--s-4); }
.sol-step-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.sol-step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--s-3); padding-top: var(--s-10);
  color: var(--blue-soft2); flex-shrink: 0;
}
.sol-step-arrow svg { width: 24px; height: 24px; }


/* =============================================================================
   CALCULATOR CTA BLOCK — reusable on solutions + vs pages
   ============================================================================= */
.calc-cta-block {
  display: flex;
  gap: var(--s-8);
  align-items: flex-start;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  -webkit-font-smoothing: antialiased;
}
.calc-cta-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.calc-cta-icon svg { width: 26px; height: 26px; color: var(--on-dark); }
.calc-cta-body { flex: 1; }
.calc-cta-title {
  font-size: var(--t-2xl);
  font-weight: var(--w-xbold);
  color: var(--on-dark);
  line-height: var(--lh-tight);
  margin: 0 0 var(--s-4);
}
.calc-cta-desc {
  font-size: var(--t-body);
  color: var(--on-dark-sec);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--s-6);
  max-width: 580px;
}
.calc-cta-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }


/* =============================================================================
   DASHBOARDFOX CALLOUT — embedded-analytics-for-saas page
   ============================================================================= */
.dfox-callout {
  display: flex;
  gap: var(--s-8);
  align-items: flex-start;
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--r-xl);
  padding: var(--s-8);
}
.dfox-callout-logo {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--blue-soft); border: 1px solid var(--blue-soft2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.dfox-callout-logo svg { width: 24px; height: 24px; color: var(--blue); }
.dfox-callout-body { flex: 1; }
.dfox-callout-body h3 { font-size: var(--t-xl); font-weight: var(--w-bold); color: var(--text); margin: 0 0 var(--s-3); line-height: var(--lh-snug); }
.dfox-callout-body > p { font-size: var(--t-base); color: var(--text-sec); line-height: var(--lh-relaxed); margin: 0 0 var(--s-6); }
.dfox-callout-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.dfox-col {
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  background: var(--bg-subtle);
}
.dfox-col-yurbi { border-color: var(--blue-soft2); background: var(--bg-blue); }
.dfox-col-label {
  font-size: var(--t-sm); font-weight: var(--w-xbold); color: var(--text);
  text-transform: uppercase; letter-spacing: var(--ls-wide);
  margin-bottom: var(--s-3);
}
.dfox-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); padding: 0; margin: 0; }
.dfox-col li { font-size: var(--t-sm); color: var(--text-sec); line-height: var(--lh-normal); }
.dfox-col li::before { content: '· '; color: var(--blue); font-weight: bold; }


/* =============================================================================
   SOCIAL PROOF PLACEHOLDER
   ============================================================================= */
.sol-social-placeholder {
  text-align: center;
  padding: var(--s-10);
  border: 1.5px dashed var(--border-sub);
  border-radius: var(--r-xl);
  background: var(--bg-subtle);
}
.sol-social-placeholder .sh-label { justify-content: center; }
.sol-social-placeholder-text {
  font-size: var(--t-base);
  color: var(--text-muted);
  margin: var(--s-3) 0 0;
  line-height: var(--lh-relaxed);
}
.sol-social-placeholder-text a { color: var(--blue); font-weight: var(--w-semibold); }


/* =============================================================================
   FINAL CTA SECTION — used on solution pages (no final-cta.njk include needed)
   Uses the same full-bleed gradient from global .final-cta-section.
   ============================================================================= */
.final-cta-block { text-align: center; padding-block: var(--s-16); position: relative; z-index: 1; }
.final-cta-block h2 {
  font-size: var(--t-3xl); font-weight: var(--w-xbold); color: var(--on-dark);
  line-height: var(--lh-tight); letter-spacing: var(--ls-snug); margin: 0 0 var(--s-4);
}
.final-cta-block p { font-size: var(--t-body); color: var(--on-dark-sec); margin: 0 0 var(--s-8); max-width: 480px; margin-inline: auto; margin-bottom: var(--s-8); }
.final-cta-actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }


/* =============================================================================
   RESPONSIVE — solutions pages
   ============================================================================= */
@media (max-width: 1024px) {
  .sol-hero-grid   { grid-template-columns: 1fr; gap: var(--s-10); }
  .sol-hero-proof  { grid-template-columns: 1fr 1fr; }
  .sol-who-grid    { grid-template-columns: 1fr 1fr; }
  .sol-feat-grid   { grid-template-columns: 1fr 1fr; }
  .sol-steps       { grid-template-columns: 1fr; gap: var(--s-5); }
  .sol-step-arrow  { display: none; }
  .sol-step-num    { font-size: 1.75rem; }
  .dfox-callout-compare { grid-template-columns: 1fr 1fr; }
  .calc-cta-block  { flex-direction: column; }
  .calc-cta-icon   { display: none; }
}

@media (max-width: 768px) {
  .sol-hero-proof  { grid-template-columns: 1fr; }
  .sol-who-grid    { grid-template-columns: 1fr; }
  .sol-feat-grid   { grid-template-columns: 1fr; }
  .dfox-callout    { flex-direction: column; }
  .dfox-callout-compare { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .calc-cta-actions { flex-direction: column; align-items: flex-start; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}