/* =========================================================================
   VexOps Design System
   ========================================================================= */

:root {
  /* Colors */
  --color-primary-dark: #1A3A52;
  --color-primary-dark-hover: #14304A;
  --color-primary-light: #4A90E2;
  --color-primary-light-hover: #3A7BC8;
  --color-accent-green: #27AE60;
  --color-accent-green-hover: #1F8B4D;
  --color-accent-orange: #E67E22;
  --color-accent-orange-hover: #C26A1B;

  --color-text-dark: #2C3E50;
  --color-text-light: #7F8C8D;
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F5F7FA;
  --color-border: #E0E6ED;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --section-pad-y: 80px;
  --section-pad-y-mobile: 60px;
  --section-gap: 120px;
  --section-gap-mobile: 60px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(26, 58, 82, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 58, 82, 0.12);
  --shadow-lg: 0 12px 32px rgba(26, 58, 82, 0.16);
  --transition: 200ms ease;
}

/* =========================================================================
   Reset & Base
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-primary-light-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: 48px; line-height: 1.2; letter-spacing: -0.5px; }
h2 { font-size: 36px; line-height: 1.3; }
h3 { font-size: 24px; line-height: 1.4; }
h4 { font-size: 18px; line-height: 1.4; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

button { font-family: inherit; cursor: pointer; }

/* =========================================================================
   Layout primitives
   ========================================================================= */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.section--dark {
  background: var(--color-primary-dark);
  color: #fff;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section--gray { background: var(--color-bg-secondary); }

.section--orange {
  background: var(--color-accent-orange);
  color: #fff;
}
.section--orange h1, .section--orange h2 { color: #fff; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 12px;
}

.section__title {
  text-align: center;
  margin-bottom: 16px;
}

.section__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 720px;
  margin: 0 auto 56px;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary-light);
  color: #fff;
  border-color: var(--color-primary-light);
}
.btn--primary:hover {
  background: var(--color-primary-light-hover);
  border-color: var(--color-primary-light-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--green {
  background: var(--color-accent-green);
  color: #fff;
  border-color: var(--color-accent-green);
}
.btn--green:hover {
  background: var(--color-accent-green-hover);
  border-color: var(--color-accent-green-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}
.btn--outline:hover {
  background: var(--color-primary-light);
  color: #fff;
}

.section--dark .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.section--dark .btn--outline:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}

.btn--lg {
  font-size: 18px;
  padding: 20px 48px;
}

.btn--sm {
  font-size: 14px;
  padding: 10px 20px;
}

.btn--white {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}
.btn--white:hover {
  background: rgba(255,255,255,0.92);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* =========================================================================
   Header / Navigation
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo:hover { color: var(--color-primary-dark); }
.site-logo span { color: var(--color-primary-light); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}

.site-nav__list a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-dark);
}
.site-nav__list a:hover { color: var(--color-primary-light); }

.site-nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-dark);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav dropdown */
.has-dropdown { position: relative; }

.site-nav__dropdown-btn {
  background: none;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.site-nav__dropdown-btn:hover { color: var(--color-primary-light); }

.site-nav__dropdown-btn svg {
  width: 12px; height: 12px;
  transition: transform var(--transition);
}
.has-dropdown:hover .site-nav__dropdown-btn svg,
.site-nav__dropdown-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 240px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  z-index: 200;
}

.has-dropdown:hover .site-nav__dropdown,
.has-dropdown:focus-within .site-nav__dropdown,
.site-nav__dropdown-btn[aria-expanded="true"] + .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown li { margin: 0; }

.site-nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: background var(--transition), color var(--transition);
}
.site-nav__dropdown a:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary-light);
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  background: linear-gradient(135deg, #1A3A52 0%, #234A66 100%);
  color: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A90E2;
  background: rgba(74, 144, 226, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: #4A90E2;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* Hero visual — dashboard mockup */
.hero__visual {
  position: relative;
}

.dashboard-mock {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(74,144,226,0.2);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 400ms ease;
}
.dashboard-mock:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.dashboard-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #F5F7FA;
  border-bottom: 1px solid var(--color-border);
}
.dashboard-mock__bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E0E6ED;
}
.dashboard-mock__bar i:nth-child(1) { background: #FF5F57; }
.dashboard-mock__bar i:nth-child(2) { background: #FEBC2E; }
.dashboard-mock__bar i:nth-child(3) { background: #28C840; }

.dashboard-mock__body {
  padding: 20px;
  color: var(--color-text-dark);
}

.dashboard-mock__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dashboard-mock__stat {
  background: var(--color-bg-secondary);
  border-radius: var(--radius);
  padding: 12px;
}
.dashboard-mock__stat-label {
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.dashboard-mock__stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary-dark);
}
.dashboard-mock__stat-value--green { color: var(--color-accent-green); }

.dashboard-mock__list {
  list-style: none;
  margin: 0; padding: 0;
}
.dashboard-mock__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
}
.dashboard-mock__list li:last-child { border-bottom: 0; }
.dashboard-mock__list .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
  margin-right: 8px;
  vertical-align: middle;
}
.dashboard-mock__list .dot--green { background: var(--color-accent-green); }
.dashboard-mock__list .dot--orange { background: var(--color-accent-orange); }
.dashboard-mock__list strong { font-weight: 600; }
.dashboard-mock__list span { color: var(--color-text-light); }

/* =========================================================================
   Problem section
   ========================================================================= */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-bottom: 3px solid var(--color-accent-green);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
}
.problem-card__icon svg { width: 28px; height: 28px; }

.problem-card__title {
  font-size: 18px;
  margin-bottom: 12px;
}

.problem-card__desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================================
   Solution section
   ========================================================================= */

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.feature-list li:last-child { border-bottom: 0; }

.feature-list__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 2px;
}
.feature-list__check svg { width: 14px; height: 14px; }

.feature-list__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text-dark);
  display: block;
  margin-bottom: 4px;
}

.feature-list__desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Solution visual — stacked mockups */
.solution-visual {
  position: relative;
  min-height: 480px;
}

.mock-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  padding: 18px;
  position: absolute;
  width: 280px;
}

.mock-card--1 { top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
.mock-card--2 { top: 80px; right: 0; transform: rotate(2deg); z-index: 2; }
.mock-card--3 { top: 240px; left: 40px; transform: rotate(-1deg); z-index: 3; }

.mock-card__label {
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
  margin-bottom: 10px;
}

.mock-card__big {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.mock-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}
.mock-card__row:last-child { border-bottom: 0; }
.mock-card__row span:last-child { color: var(--color-text-light); }

.mock-card__bar {
  height: 8px;
  background: var(--color-bg-secondary);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.mock-card__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent-green));
}

/* =========================================================================
   Comparison Table
   ========================================================================= */

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.compare-table thead th {
  background: var(--color-bg-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-table .col-vex {
  background: rgba(74, 144, 226, 0.06);
  color: var(--color-primary-dark);
  font-weight: 600;
  position: relative;
}

.compare-table thead .col-vex {
  background: var(--color-primary-light);
  color: #fff;
}

.compare-table .check {
  color: var(--color-accent-green);
  font-weight: 700;
}

.compare-table .first {
  font-weight: 600;
  color: var(--color-text-dark);
}

/* =========================================================================
   Pricing
   ========================================================================= */

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  color: var(--color-text-dark);
  text-align: center;
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-light);
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}
.pricing-card__price small {
  font-size: 18px;
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-card__tagline {
  color: var(--color-text-light);
  font-size: 15px;
  margin: 12px 0 28px;
}

.pricing-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}
.pricing-list li:last-child { border-bottom: 0; }
.pricing-list__check {
  width: 22px; height: 22px;
  background: var(--color-accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.pricing-list__check svg { width: 12px; height: 12px; }

.pricing-card__note {
  display: block;
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* =========================================================================
   FAQ
   ========================================================================= */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__btn:hover { color: var(--color-primary-light); }

.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  transition: transform var(--transition), background var(--transition);
}
.faq__btn[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--color-primary-light);
  color: #fff;
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq__panel-inner {
  padding-bottom: 24px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================================
   CTA banner
   ========================================================================= */

.cta-banner {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-banner__title {
  font-size: 40px;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 16px;
}

.cta-banner__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 32px;
}

.cta-banner__note {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* =========================================================================
   Waitlist form
   ========================================================================= */

.waitlist-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  color: var(--color-text-dark);
  max-width: 520px;
  margin: 0 auto;
}

.waitlist-form__title {
  font-size: 22px;
  margin-bottom: 8px;
  text-align: center;
}

.waitlist-form__sub {
  text-align: center;
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.form-row textarea { resize: vertical; min-height: 80px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success svg {
  width: 56px; height: 56px;
  color: var(--color-accent-green);
  margin: 0 auto 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--color-text-light); margin: 0; }

.waitlist-form.is-submitted .form-fields { display: none; }
.waitlist-form.is-submitted .form-success { display: block; }

/* =========================================================================
   Formidable Forms — adapter
   Applies VexOps form design to Formidable output, scoped to .waitlist-form
   so it never bleeds into other Formidable forms on the site.
   ========================================================================= */

/* Strip Formidable's structural padding/borders/backgrounds — the wrapper
   .waitlist-form already provides the card chrome. */
.waitlist-form .frm_forms,
.waitlist-form .frm_form_fields,
.waitlist-form .frm_fields_container,
.waitlist-form .frm_form_fields > fieldset {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.waitlist-form .frm_form_fields > fieldset > legend,
.waitlist-form .frm_screen_reader { display: none; }

/* Each field block matches our .form-row spacing. */
.waitlist-form .frm_form_field {
  margin: 0 0 16px;
  padding: 0;
  clear: both;
}

/* Labels match our .form-row label. */
.waitlist-form .frm_primary_label,
.waitlist-form .frm_form_field > label:not(.frm_checkbox label):not(.frm_radio label) {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-dark);
  margin: 0 0 6px;
  padding: 0;
}

.waitlist-form .frm_required {
  color: var(--color-accent-orange);
  font-weight: 700;
  margin-left: 2px;
}

/* Inputs / selects / textareas match our .form-row input. */
.waitlist-form .frm_form_field input[type="text"],
.waitlist-form .frm_form_field input[type="email"],
.waitlist-form .frm_form_field input[type="tel"],
.waitlist-form .frm_form_field input[type="url"],
.waitlist-form .frm_form_field input[type="number"],
.waitlist-form .frm_form_field input[type="password"],
.waitlist-form .frm_form_field input[type="search"],
.waitlist-form .frm_form_field select,
.waitlist-form .frm_form_field textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text-dark);
  background: #fff;
  box-shadow: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.waitlist-form .frm_form_field input:focus,
.waitlist-form .frm_form_field select:focus,
.waitlist-form .frm_form_field textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.waitlist-form .frm_form_field textarea {
  resize: vertical;
  min-height: 96px;
}

.waitlist-form .frm_form_field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237F8C8D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Description / hint text under fields. */
.waitlist-form .frm_description {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 6px;
  line-height: 1.5;
}

/* Validation error states. */
.waitlist-form .frm_blank_field input,
.waitlist-form .frm_blank_field select,
.waitlist-form .frm_blank_field textarea,
.waitlist-form .frm_error_style input,
.waitlist-form .frm_error_style select,
.waitlist-form .frm_error_style textarea {
  border-color: #E74C3C;
  background-color: #FDF3F2;
}

.waitlist-form .frm_error {
  display: block;
  color: #C0392B;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}

.waitlist-form .frm_error_style {
  background: #FDF3F2;
  border: 1px solid #E74C3C;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #C0392B;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Submit button matches .btn.btn--green.btn--lg, full-width like form-submit. */
.waitlist-form .frm_submit {
  margin: 8px 0 0;
  padding: 0;
  text-align: left;
}

.waitlist-form .frm_submit .frm_button_submit,
.waitlist-form .frm_submit button[type="submit"],
.waitlist-form .frm_submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 20px 48px;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent-green);
  background: var(--color-accent-green);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.waitlist-form .frm_submit .frm_button_submit:hover,
.waitlist-form .frm_submit button[type="submit"]:hover,
.waitlist-form .frm_submit input[type="submit"]:hover {
  background: var(--color-accent-green-hover);
  border-color: var(--color-accent-green-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.waitlist-form .frm_submit .frm_button_submit:disabled,
.waitlist-form .frm_submit button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Side-by-side fields. Apply CSS class "frm_half" to a field in Formidable
   admin → Field options → CSS Layout Classes → "1/2 First" or "1/2".
   This rule turns the container into a 2-col grid when those classes are
   present, so First Name + Email sit on the same row like the preview. */
.waitlist-form .frm_fields_container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.waitlist-form .frm_form_field { flex: 1 1 100%; }
.waitlist-form .frm_form_field.frm_half,
.waitlist-form .frm_form_field.frm_first.frm_half,
.waitlist-form .frm_form_field.frm_last.frm_half {
  flex: 1 1 calc(50% - 8px);
}

/* Confirmation message (Formidable's post-submit success state). */
.waitlist-form .frm_message {
  text-align: center;
  padding: 32px 16px;
  font-size: 15px;
  color: var(--color-text-light);
}
.waitlist-form .frm_message > p:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

/* Honeypot anti-spam field — visually hidden but accessible. */
.waitlist-form .frm_verify,
.waitlist-form .frm_other_input.frm_pos_none {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Checkboxes & radios (in case the user adds a "I agree to..." or "Send me
   product updates" option). */
.waitlist-form .frm_checkbox,
.waitlist-form .frm_radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-dark);
  margin: 0 0 8px;
}

.waitlist-form .frm_checkbox input[type="checkbox"],
.waitlist-form .frm_radio input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-primary-light);
}

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  font-size: 14px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer__brand .site-logo {
  color: #fff;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 12px;
}
.site-footer__brand p {
  max-width: 280px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.site-footer__col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a {
  color: rgba(255,255,255,0.7);
}
.site-footer__list a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.site-footer__bottom p { margin: 0; }

/* =========================================================================
   Long-form prose (privacy, terms, single posts)
   ========================================================================= */

.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-dark);
}
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
}
.prose h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.prose p { margin: 0 0 1.25em; }
.prose ul, .prose ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em;
}
.prose li { margin-bottom: 0.5em; }
.prose a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose strong {
  font-weight: 700;
  color: var(--color-text-dark);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 48px 0;
}
.prose__meta {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  display: block;
}
.prose__callout {
  background: rgba(74, 144, 226, 0.06);
  border-left: 3px solid var(--color-primary-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 15px;
}
.prose__callout p:last-child { margin-bottom: 0; }

/* =========================================================================
   Blog index — post grid
   ========================================================================= */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1A3A52 0%, #4A90E2 100%);
  position: relative;
  overflow: hidden;
}
.post-card__image--green { background: linear-gradient(135deg, #27AE60 0%, #4A90E2 100%); }
.post-card__image--orange { background: linear-gradient(135deg, #E67E22 0%, #4A90E2 100%); }
.post-card__image--mixed { background: linear-gradient(135deg, #1A3A52 0%, #E67E22 100%); }
.post-card__image img,
.post-card__image svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.post-card__image img { object-fit: cover; }
.post-card__image svg { background: var(--color-primary-dark); }

.post-card__topic {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}

.post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.post-card__title {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.post-card__title a { color: var(--color-text-dark); }
.post-card__title a:hover { color: var(--color-primary-light); }

.post-card__excerpt {
  font-size: 15px;
  color: var(--color-text-light);
  flex: 1;
  margin: 0 0 16px;
  line-height: 1.6;
}

.post-card__more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-card__more svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.post-card:hover .post-card__more svg { transform: translateX(2px); }

/* Featured post (first post stretched full-width with side-by-side layout) */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-featured .post-card__image {
  aspect-ratio: auto;
  min-height: 360px;
}
.post-featured .post-card__body {
  padding: 48px;
  justify-content: center;
}
.post-featured .post-card__title {
  font-size: 30px;
  line-height: 1.25;
}
.post-featured .post-card__featured-badge {
  display: inline-block;
  background: var(--color-accent-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-dark);
  background: #fff;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.pagination a:hover {
  background: var(--color-primary-light);
  color: #fff;
  border-color: var(--color-primary-light);
}
.pagination .current {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

/* Post illustration (single-post hero banner — featured image or SVG fallback) */
.post-illustration {
  max-width: 880px;
  margin: 0 auto 48px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  position: relative;
}
.post-illustration > img,
.post-illustration > svg,
.post-illustration > .wp-post-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .post-illustration { margin-bottom: 32px; border-radius: var(--radius); }
}

/* Back link */
.back-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.back-link:hover { color: var(--color-primary-light); }
.back-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.back-link:hover svg { transform: translateX(-2px); }

/* =========================================================================
   Contact page
   ========================================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-grid .waitlist-form {
  margin: 0;
  max-width: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary-light);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-card--green { border-left-color: var(--color-accent-green); }
.contact-card--orange { border-left-color: var(--color-accent-orange); }

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 15px;
  color: var(--color-text-light);
  margin: 0 0 12px;
  line-height: 1.6;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  word-break: break-word;
}

/* Page hero (lighter than the homepage hero — used for blog index, privacy, etc.) */
.page-hero {
  background: var(--color-bg-secondary);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
}
.page-hero .hero__actions { justify-content: center; }

/* =========================================================================
   Vertical page extras (lawyers, etc.)
   ========================================================================= */

.vert-hero__title em {
  background: linear-gradient(120deg, transparent 0%, transparent 60%, rgba(231, 126, 34, 0.25) 60%, rgba(231, 126, 34, 0.25) 100%);
  font-style: normal;
}

.problem-grid--lawyers .problem-card {
  text-align: left;
}
.problem-grid--lawyers .problem-card__icon {
  margin-left: 0;
}

/* =========================================================================
   Responsive — Tablet
   ========================================================================= */

@media (max-width: 1199px) {
  .container { padding: 0 32px; }

  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero__title { font-size: 44px; }
  .hero__grid { gap: 40px; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { gap: 40px; }
}

/* =========================================================================
   Responsive — Mobile
   ========================================================================= */

@media (max-width: 767px) {
  :root {
    --section-pad-y: var(--section-pad-y-mobile);
    --section-gap: var(--section-gap-mobile);
  }

  .container { padding: 0 20px; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  /* Header */
  .site-header__inner { height: 64px; }
  /* backdrop-filter makes the header the containing block for position:fixed
     descendants, which collapses the .is-open menu to the header's box. Drop it
     on mobile so the fixed menu anchors to the viewport and covers the page. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }
  .site-nav__list,
  .site-nav__cta { display: none; }
  .nav-toggle { display: block; }

  .site-nav.is-open {
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    padding: 32px 20px;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open .site-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .site-nav.is-open .site-nav__list li {
    border-bottom: 1px solid var(--color-border);
  }
  .site-nav.is-open .site-nav__list a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
  }
  .site-nav.is-open .site-nav__cta {
    display: block;
    margin-top: 24px;
  }
  .site-nav.is-open .site-nav__cta .btn { width: 100%; }

  /* Mobile dropdown: expand inline */
  .site-nav.is-open .site-nav__dropdown-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 17px;
  }
  .site-nav.is-open .site-nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: var(--color-bg-secondary);
    border: 0;
    box-shadow: none;
    padding: 4px 8px;
    margin: 0 0 12px;
    min-width: 0;
    display: none;
  }
  .site-nav.is-open .site-nav__dropdown-btn[aria-expanded="true"] + .site-nav__dropdown {
    display: block;
  }
  .site-nav.is-open .site-nav__dropdown a {
    padding: 12px 8px;
    font-size: 16px;
  }
  .site-nav.is-open .has-dropdown {
    border-bottom: 1px solid var(--color-border);
  }

  /* Hero */
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__title { font-size: 36px; line-height: 1.15; }
  .hero__sub { font-size: 17px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }

  .dashboard-mock { transform: none; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Solution */
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-visual { min-height: 0; display: flex; flex-direction: column; gap: 16px; }
  .mock-card { position: relative; transform: none !important; width: 100%; top: auto !important; left: auto !important; right: auto !important; }

  /* Pricing */
  .pricing-card { padding: 36px 24px; }
  .pricing-card__price { font-size: 52px; }

  /* CTA */
  .cta-banner__title { font-size: 28px; }

  /* Footer */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Forms */
  .form-grid-2 { grid-template-columns: 1fr; }
  .waitlist-form { padding: 24px; }

  /* Formidable: collapse two-column rows on mobile */
  .waitlist-form .frm_fields_container { gap: 0; }
  .waitlist-form .frm_form_field.frm_half,
  .waitlist-form .frm_form_field.frm_first.frm_half,
  .waitlist-form .frm_form_field.frm_last.frm_half {
    flex: 1 1 100%;
  }

  /* Blog + prose */
  .post-grid { grid-template-columns: 1fr; gap: 24px; }
  .post-featured { grid-template-columns: 1fr; margin-bottom: 32px; }
  .post-featured .post-card__image { min-height: 200px; }
  .post-featured .post-card__body { padding: 24px; }
  .post-featured .post-card__title { font-size: 22px; }
  .page-hero { padding: 48px 0 32px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }
  .prose { font-size: 16px; }
  .prose h2 { font-size: 24px; margin-top: 32px; }
  .prose h3 { font-size: 18px; margin-top: 24px; }
}

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

/* =========================================================================
   Breadcrumbs (pillar + nested vertical pages)
   ========================================================================= */

.breadcrumb {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-light);
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--color-border);
}
.breadcrumb a {
  color: var(--color-text-light);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-primary-light); }
.breadcrumb [aria-current="page"] {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* =========================================================================
   Vertical (cluster) card grid — used on the /solutions/ pillar page
   ========================================================================= */

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vertical-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vertical-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
  color: var(--color-text-dark);
}

.vertical-card__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary-dark);
}
.vertical-card__name svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--color-primary-light);
  transition: transform var(--transition);
}
.vertical-card:hover .vertical-card__name svg { transform: translateX(3px); }

.vertical-card__desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
}

@media (max-width: 991px) {
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .vertical-grid { grid-template-columns: 1fr; gap: 16px; }
  .breadcrumb ol { font-size: 12px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 32px; }
}
