/* Phase 3 — modern layout, mobile nav, responsive pricing */

:root {
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-card: 0 14px 40px #00000045;
  --shadow-glow: 0 0 0 1px #66deff33, 0 20px 50px #35ccff14;

  --section-band-light-bg:
    linear-gradient(180deg, rgba(15, 32, 50, 0.94), rgba(9, 20, 34, 0.8)),
    radial-gradient(circle at 16% 18%, rgba(53, 204, 255, 0.15), transparent 38%),
    linear-gradient(90deg, rgba(20, 48, 74, 0.22), transparent 48%);
  --section-band-light-border-top: #66deff22;
  --section-band-light-border-bottom: #66deff16;

  --section-band-dark-bg:
    linear-gradient(180deg, rgba(4, 10, 18, 0.98), rgba(2, 6, 12, 0.9)),
    radial-gradient(circle at 84% 24%, rgba(123, 201, 255, 0.06), transparent 26%),
    linear-gradient(90deg, transparent 52%, rgba(6, 18, 30, 0.18));
  --section-band-dark-border-top: #66deff14;
  --section-band-dark-border-bottom: #66deff0b;
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Section bands — assign section-band-light / section-band-dark per section in templates */
main > .section {
  position: relative;
  isolation: isolate;
}

main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  border-top: 1px solid #66deff12;
  border-bottom: 1px solid #66deff0d;
  box-shadow: inset 0 1px 0 #ffffff05, inset 0 -1px 0 #00000030;
}

main > .section.section-band-light::before {
  background: var(--section-band-light-bg);
  border-top-color: var(--section-band-light-border-top);
  border-bottom-color: var(--section-band-light-border-bottom);
}

main > .section.section-band-dark::before {
  background: var(--section-band-dark-bg);
  border-top-color: var(--section-band-dark-border-top);
  border-bottom-color: var(--section-band-dark-border-bottom);
}

.cta-band {
  box-shadow: 0 18px 36px #00000033, inset 0 1px 0 #ffffff08;
}

/* Refine section kickers so page headings feel less like small pills */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9fdff6;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), #66deff44);
  box-shadow: 0 0 18px #35ccff2a;
}

/* Keep labels inside cards tighter and more tag-like */
.card .eyebrow,
.offering-card .eyebrow {
  gap: 0.45rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid #66deff33;
  border-radius: 999px;
  background: #0c1b2d;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.card .eyebrow::before,
.offering-card .eyebrow::before {
  width: 0.5rem;
  background: var(--accent);
}

.service-hero .eyebrow,
.section-intro > .eyebrow,
.section.container > .eyebrow {
  margin-bottom: 0.35rem;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, #35ccff22, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, #9df0ff14, transparent 50%);
  pointer-events: none;
}

.hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.05);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

.offering-card,
.pricing-compare-card {
  box-shadow: var(--shadow-card);
}

.offering-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}

/* Service tier cards — roadmap colors, stacked layout (not .priority-stage grid) */
.offerings-grid .offering-tier-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  border-radius: 14px;
}

.offering-tier-starter {
  border-left: 4px solid #35ccff;
}

.offering-tier-monitor {
  border-left: 4px solid #7da2ff;
}

.offering-tier-secure360 {
  border-left: 4px solid #b8df68;
}

.offering-tier-head {
  width: 100%;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #ffffff14;
  box-sizing: border-box;
}

.offering-tier-starter .offering-tier-head {
  background: linear-gradient(90deg, #1a5f82, #35a8d8);
}

.offering-tier-monitor .offering-tier-head {
  background: linear-gradient(90deg, #2a4578, #5a82d4);
}

.offering-tier-secure360 .offering-tier-head {
  background: linear-gradient(90deg, #3f5a24, #6f9a3f);
}

.offering-tier-head-text {
  min-width: 0;
}

.offering-tier-eyebrow {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #eaf5ff;
  line-height: 1.2;
}

.offering-tier-head-text h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
}

.offering-tier-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  padding: 0.85rem 1rem 1rem;
}

.offering-tier-body > p:first-child {
  margin: 0;
}

.offering-tier-body .offering-highlights li::before {
  color: var(--accent2);
}

.status-badge {
  display: inline-flex;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #2a1f0a;
  border: 1px solid #fbbf24aa;
  color: #fde68a;
}

/* Pricing region menu (globe + dropdown) */
.pricing-region-menu {
  position: relative;
  flex-shrink: 0;
  z-index: 43;
}

.pricing-region-menu--mobile-menu {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.pricing-region-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.5rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--accent2);
  cursor: pointer;
  line-height: 0;
}

.pricing-region-trigger:hover,
.pricing-region-menu.is-open .pricing-region-trigger {
  color: #ffffff;
  background: #0c1b2d88;
}

.pricing-region-trigger:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

.pricing-region-globe {
  display: block;
}

.pricing-region-chevron {
  display: block;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.pricing-region-menu.is-open .pricing-region-chevron {
  transform: rotate(180deg);
}

.pricing-region-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 13.5rem;
  padding: 0.35rem 0;
  border-radius: 12px;
  border: 1px solid #d8e3ed;
  background: #f8fafc;
  box-shadow: 0 12px 32px #00000055;
  color: #0f172a;
}

.pricing-region-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-region-options li + li {
  border-top: 1px solid #e2e8f0;
}

.pricing-region-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.pricing-region-option:hover {
  background: #eef6ff;
}

.pricing-region-option.is-selected,
.pricing-region-option[aria-selected="true"] {
  color: #0369a1;
}

.pricing-region-flag {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.pricing-region-option-label {
  flex: 1;
}

/* Mobile navigation */
.nav-backdrop {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent2);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.nav-cta-mobile {
  display: none;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  body:has(.section-no-reveal) header,
  body:has(.section-no-reveal) header .nav,
  body:has(.section-no-reveal) header .brand img {
    transition: none;
  }

  body:has(.section-no-reveal) header {
    background: #152232;
    border-bottom: 1px solid #66deff77;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 14px 34px #00000066;
  }

  header,
  header.is-compact {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  header.is-compact {
    background: #152232;
  }

  body:has(.section-no-reveal) header .nav {
    padding: 0.55rem 0;
  }

  body:has(.section-no-reveal) header .brand img {
    height: 38px;
  }

  .site-header-wrap {
    z-index: 40;
  }

  header {
    background: #152232;
    border-bottom: 1px solid #66deff77;
    box-shadow: 0 14px 34px #00000066;
  }

  header .nav {
    padding: 0.55rem 0;
  }

  header .brand img {
    height: 38px;
  }

  header,
  header .nav,
  header .brand img {
    transition: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 42;
  }

  .nav-cta {
    display: none;
  }

  .pricing-region-menu--desktop {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .nav-actions {
    margin-left: auto;
  }

  .pricing-region-menu--mobile-menu {
    display: block;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid #22354b;
  }

  .pricing-region-menu--mobile-menu .pricing-region-trigger {
    width: 100%;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--muted);
  }

  .pricing-region-menu--mobile-menu .pricing-region-trigger:hover,
  .pricing-region-menu--mobile-menu.is-open .pricing-region-trigger {
    color: var(--accent2);
    background: transparent;
  }

  .pricing-region-menu--mobile-menu .pricing-region-dropdown {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
    border-color: #66deff44;
    background: #06111e;
    color: var(--text);
  }

  .pricing-region-menu--mobile-menu .pricing-region-option {
    color: var(--text);
  }

  .pricing-region-menu--mobile-menu .pricing-region-option:hover {
    background: #0c1b2d;
  }

  .pricing-region-menu--mobile-menu .pricing-region-option.is-selected,
  .pricing-region-menu--mobile-menu .pricing-region-option[aria-selected="true"] {
    color: var(--accent2);
  }

  .pricing-region-menu--desktop .pricing-region-dropdown {
    right: 0;
    left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.25rem 1.5rem;
    background: #0b1626f5;
    border-left: 1px solid #66deff44;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 41;
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-links a:not(.btn) {
    padding: 0.85rem 0;
    border-bottom: 1px solid #22354b;
    font-size: 1.05rem;
  }

  .nav-cta-mobile {
    display: inline-block;
    margin-top: 0.75rem;
    border-bottom: none;
    color: #052635;
    pointer-events: auto;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 39;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: default;
    background: #00000088;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-backdrop[hidden] {
    display: none;
  }

  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent, #05070bf0 24%);
    justify-content: center;
  }

  .sticky-mobile-cta .btn {
    width: min(100%, 420px);
    text-align: center;
  }

  body:has(.sticky-mobile-cta) main {
    padding-bottom: 4.5rem;
  }
}

/* Responsive pricing tables → stacked cards */
@media (max-width: 640px) {
  .pricing-table.responsive thead {
    display: none;
  }

  .pricing-table.responsive tbody tr {
    display: block;
    margin-bottom: 0.75rem;
    border: 1px solid #66deff33;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #091423;
  }

  .pricing-table.responsive tbody td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #203247;
  }

  .pricing-table.responsive tbody td:last-child {
    border-bottom: none;
  }

  .pricing-table.responsive tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
  }

  .pricing-compare-card {
    margin-bottom: 1rem;
  }

  .hero .actions .btn {
    width: 100%;
    text-align: center;
  }

  #exposure-chat-shell.gpt-shell {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  #exposure-chat-thread.gpt-thread {
    flex: none !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    touch-action: auto !important;
  }

  .section-no-reveal.reveal,
  .section-no-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (min-width: 901px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem 1.5rem;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    gap: 0.65rem 1rem;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-shrink: 0;
  }

  .nav-toggle,
  .pricing-region-menu--mobile-menu,
  .nav-cta-mobile {
    display: none !important;
  }

  .pricing-region-menu--desktop,
  .nav-cta {
    display: inline-flex;
  }
}

.pricing-compare-card h3 a {
  color: var(--accent2);
}

.pricing-compare-card h3 a:hover {
  text-decoration: underline;
}

/* Services maturity / priority roadmap */
.priority-roadmap {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.priority-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid #66deff26;
  background:
    linear-gradient(180deg, rgba(15, 29, 46, 0.94), rgba(9, 18, 30, 0.9)),
    radial-gradient(circle at 10% 20%, rgba(53, 204, 255, 0.08), transparent 30%);
  box-shadow: var(--shadow-card), inset 0 1px 0 #ffffff07;
}

.priority-stage-starter {
  border-left: 4px solid #35ccff;
}

.priority-stage-monitor {
  border-left: 4px solid #7da2ff;
}

.priority-stage-secure360 {
  border-left: 4px solid #b8df68;
}

.priority-stage-main {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.priority-stage-meta {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.priority-stage-number {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #8cbad3;
}

.priority-stage-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #f4fbff;
  border: 1px solid #66deff33;
  background: linear-gradient(180deg, #16314d, #0a1727);
  box-shadow: inset 0 1px 0 #ffffff0b;
}

.priority-stage-icon-svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(53, 204, 255, 0.12));
}

.priority-stage h3 {
  margin: 0 0 0.35rem;
}

.priority-stage-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.tier-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #22354b;
  background: #0a1421;
  color: #7f93a8;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.tier-chip.is-active {
  color: #f5fbff;
}

.tier-chip.starter.is-active {
  background: linear-gradient(180deg, #12314a, #0e2335);
  border-color: #35ccff66;
  box-shadow: 0 0 0 1px #35ccff1f;
}

.tier-chip.monitor.is-active {
  background: linear-gradient(180deg, #1a2749, #101a35);
  border-color: #7da2ff66;
  box-shadow: 0 0 0 1px #7da2ff1f;
}

.tier-chip.secure360.is-active {
  background: linear-gradient(180deg, #26361a, #182411);
  border-color: #b8df6866;
  box-shadow: 0 0 0 1px #b8df681f;
}

@media (max-width: 900px) {
  .priority-stage {
    grid-template-columns: 1fr;
  }

  .priority-stage-tiers {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .priority-stage {
    padding: 1rem;
  }

  .priority-stage-main {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .priority-stage-meta {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
  }

  .priority-stage-tiers {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tier-chip {
    justify-content: flex-start;
  }
}

/* Homepage approach — same tone as services priority boxes */
.priority-tone-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid #66deff26;
  background:
    linear-gradient(180deg, rgba(15, 29, 46, 0.94), rgba(9, 18, 30, 0.9)),
    radial-gradient(circle at 10% 20%, rgba(53, 204, 255, 0.08), transparent 30%);
  box-shadow: var(--shadow-card), inset 0 1px 0 #ffffff07;
}

.approach-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.35rem 0 2rem;
}

.approach-value-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  text-align: left;
  padding: 1.05rem 1.15rem;
}

.approach-value-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.approach-value-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.28;
  color: var(--accent2);
}

.approach-value-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.approach-value-card .priority-stage-icon {
  margin: 0;
  flex-shrink: 0;
}

.approach-roadmap-intro {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  text-align: left;
  margin: 0 0 1rem;
}

.approach-roadmap-intro h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  color: #8deaff;
}

.approach-roadmap-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.approach-maturity-card {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.approach-maturity-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.78rem 0.85rem;
  border-bottom: 1px solid #ffffff14;
}

.priority-stage-starter.approach-maturity-card .approach-maturity-head {
  background: linear-gradient(90deg, #1a5f82, #35a8d8);
}

.priority-stage-monitor.approach-maturity-card .approach-maturity-head {
  background: linear-gradient(90deg, #2a4578, #5a82d4);
}

.priority-stage-secure360.approach-maturity-card .approach-maturity-head {
  background: linear-gradient(90deg, #3f5a24, #6f9a3f);
}

.approach-maturity-head-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.45rem;
  align-items: center;
}

.approach-maturity-step {
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: #0a2036;
  color: #fff;
  border: 2px solid #ffffff55;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

.approach-maturity-head .priority-stage-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(8, 18, 32, 0.55);
  border-color: #ffffff33;
  color: #f4fbff;
}

.approach-maturity-head-text h3 {
  margin: 0 0 0.12rem;
  font-size: 1.08rem;
  line-height: 1.18;
  color: #ffffff;
}

.approach-maturity-head-text p {
  margin: 0;
  color: #eaf5ff;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.35;
}

.approach-maturity-body {
  padding: 0.75rem 0.85rem 0.85rem;
}

.approach-stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.approach-stage-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.approach-stage-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent2);
}

.approach-stage-outcome {
  margin-top: 0.65rem;
  border: 1px solid #66deff33;
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.72rem;
  background: linear-gradient(180deg, #0c1a2b, #091523);
}

.approach-stage-outcome-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #8cbad3;
  font-weight: 800;
}

.approach-stage-outcome p {
  margin: 0.22rem 0 0;
  color: #d8e7f6;
  font-size: 0.9rem;
  line-height: 1.4;
}

#approach {
  padding: 4.25rem 0;
}

#approach .approach-intro-center {
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}

#approach .approach-roadmap-intro {
  margin-bottom: 1.85rem;
}

#approach .approach-roadmap-cols {
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

#approach .approach-footer-line {
  margin: 0 0 1.1rem;
}

#approach .approach-slogan-bottom {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .approach-roadmap-cols {
    grid-template-columns: 1fr;
  }
}

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

/* About page — enterprise-to-SME theme */
.about-hero .lead {
  max-width: 72ch;
  margin-bottom: 1.5rem;
}

.about-statement {
  max-width: 72ch;
  padding-left: 1rem;
  border-left: 2px solid #66deff55;
}

.about-statement + .about-statement {
  margin-top: 1.5rem;
}

.about-statement .eyebrow {
  margin-bottom: 0.55rem;
}

.about-statement p {
  margin: 0;
  color: #d8e7f6;
  font-size: 1.05rem;
  line-height: 1.55;
}

.about-dark-stack {
  padding-top: 2.5rem;
}

.about-why-contivis .section-intro {
  margin-top: 0;
}

@media (max-width: 640px) {
  .about-dark-stack {
    padding-top: 2rem;
  }
}
