/* ==========================================================================
   BPS Compliance Landing Page - Industrial Energy Minimalism Design System
   Teal (#009998) accent variant
   ========================================================================== */

/* Design Tokens */
:root {
  /* Colors — Teal palette */
  --ses-navy: #0c1927;
  --ses-accent: #009998;
  --ses-accent-light: #9bd6d6;
  --ses-accent-hover: #007a79;
  --ses-accent-bg: rgba(0, 153, 152, 0.1);
  --ses-accent-ring: rgba(0, 153, 152, 0.2);
  --ses-white: #ffffff;
  --ses-gray-dark: #333333;
  --ses-gray: #666666;
  --ses-gray-light: #fafafa;
  --ses-gray-tertiary: #f0f0f0;
  --ses-border: #dddddd;
  --ses-border-light: #cccccc;

  /* Typography */
  --font-extended:
    "aktiv-grotesk-extended", "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-tight: "Inter Tight", system-ui, sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  /* Spacing */
  --space-unit: 8px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radii */
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 50px;

  /* Callout Colors */
  --ses-teal-light-bg: #f0fafa;
  --ses-teal-light-border: #b8e4e4;
  --ses-blue-light: #f0f7ff;
  --ses-blue-border: #d0e3ff;

  /* Shadows */
  --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-medium: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --shadow-deep: 12px 12px 50px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 600ms ease;

  /* Container */
  --container-wide: 1200px;
  --container-content: 800px;

  /* Layout */
  --header-height: 94px;
  --subnav-height: 48px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
√ html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--subnav-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ses-gray-dark);
  background-color: var(--ses-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--ses-accent-hover);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--ses-accent);
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--ses-accent);
  outline-offset: 2px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-extended);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ses-gray-dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
}

.caption {
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ses-accent-hover);
}

/* Layout */
.container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-content);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--navy {
  background-color: var(--ses-navy);
  color: var(--ses-white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--ses-white);
}

.section--navy a {
  color: var(--ses-accent-light);
}

.section--navy a:hover {
  color: var(--ses-white);
}

.section--gray {
  background-color: var(--ses-gray-light);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  min-height: 44px;
  gap: var(--space-xs);
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Primary Button — solid teal */
.btn--primary {
  background: var(--ses-accent);
  color: var(--ses-white);
  border: 1px solid var(--ses-accent);
}

.btn--primary:hover {
  background: var(--ses-accent-hover);
  border-color: var(--ses-accent-hover);
  color: var(--ses-white);
}

/* Outlined Button — for dark backgrounds */
.btn--outline {
  background: transparent;
  color: var(--ses-white);
  border: 2px solid var(--ses-accent-light);
}

.btn--outline:hover {
  background: rgba(155, 214, 214, 0.15);
  color: var(--ses-white);
}

/* Secondary solid */
.btn--secondary {
  background: var(--ses-white);
  color: var(--ses-accent);
  border: 2px solid var(--ses-accent);
}

.btn--secondary:hover {
  background: var(--ses-accent);
  color: var(--ses-white);
}

/* Large Button */
.btn--lg {
  padding: 12px 32px;
  font-size: 1rem;
  min-height: 48px;
}

/* Cards */
.card {
  background: var(--ses-white);
  border: 1px solid var(--ses-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.card:hover {
  border-color: var(--ses-accent-light);
  box-shadow: var(--shadow-subtle);
}

/* Check List */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--ses-gray-dark);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ses-accent);
  font-weight: bold;
}

.section--navy .check-list li {
  color: rgba(255, 255, 255, 0.85);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ses-navy);
  padding: var(--space-sm) 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.header__logo {
  height: 56px;
  width: auto;
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__tagline {
  font-family: var(--font-extended);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: lowercase;
}

.header__contact {
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ========== Sticky Sub-Navigation ========== */
.subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: var(--ses-white);
  border-bottom: 1px solid var(--ses-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.subnav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.subnav__inner::-webkit-scrollbar {
  display: none;
}

.subnav__link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ses-gray);
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.subnav__link:hover {
  color: var(--ses-gray-dark);
}

.subnav__link.is-active {
  color: var(--ses-accent);
  border-bottom-color: var(--ses-accent);
  font-weight: 600;
}

/* ========== Hero (Dark Variant) ========== */
.hero--dark {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--ses-navy) 0%,
    #162a42 60%,
    #1a3350 100%
  );
  color: var(--ses-white);
  padding: calc(var(--header-height) + var(--subnav-height) + var(--space-3xl))
    0 var(--space-3xl);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(0, 153, 152, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(0, 153, 152, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero--dark .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero__pill {
  display: inline-block;
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ses-white);
  background: var(--ses-accent);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.hero__tagline {
  font-family: var(--font-extended);
  font-size: 1.3rem;
  color: var(--ses-accent);
  text-transform: lowercase;
  margin-bottom: var(--space-sm);
  font-style: italic;
  font-weight: bold;
}

.hero__title {
  font-size: 2.75rem;
  color: var(--ses-white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero__lead {
  font-family: var(--font-extended);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ses-accent-light);
  margin-bottom: var(--space-md);
}

.hero__description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========== Stats Strip ========== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

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

.stats-strip__value {
  font-family: var(--font-extended);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ses-accent);
  display: block;
  margin-bottom: 4px;
}

.stats-strip__label {
  font-family: var(--font-tight);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ses-gray);
}

.stats-strip--inverted .stats-strip__label {
  margin-bottom: 4px;
}

.stats-strip--inverted .stats-strip__value {
  margin-bottom: 0;
}

/* ========== Callout Boxes ========== */
.callout {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.callout--teal {
  background: var(--ses-teal-light-bg);
  border-left: 5px solid var(--ses-accent);
}

.callout--teal .callout__label {
  color: var(--ses-accent-hover);
}

.callout--blue {
  background: var(--ses-blue-light);
  border: 1px solid var(--ses-blue-border);
}

.callout--warning {
  background: #fffbf0;
  border: 1px solid #f5deb3;
  border-left: 4px solid #e8a317;
}

.callout__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.callout__icon {
  color: var(--ses-accent);
  flex-shrink: 0;
}

.callout__label {
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ses-accent-hover);
}

.callout__text {
  font-size: 0.9375rem;
  color: var(--ses-gray-dark);
  line-height: 1.6;
  margin: 0;
}

.callout__text:last-child {
  margin-bottom: 0;
}

/* ========== Jurisdiction Cards ========== */
.jurisdiction-card {
  background: var(--ses-white);
  border: 1px solid var(--ses-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.jurisdiction-card:hover {
  border-color: var(--ses-accent-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.jurisdiction-card__city {
  font-family: var(--font-extended);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ses-gray-dark);
  margin-bottom: 4px;
}

.jurisdiction-card__law {
  font-family: var(--font-tight);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ses-accent-hover);
  margin-bottom: var(--space-sm);
}

.jurisdiction-card__details {
  font-size: 0.875rem;
  color: var(--ses-gray);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.jurisdiction-card__link {
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ses-accent-hover);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.jurisdiction-card__link:hover {
  color: var(--ses-accent);
}

.jurisdiction-card__link::after {
  content: "↗";
  font-size: 0.75rem;
}

/* ========== Carousel ========== */
.carousel {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  flex-wrap: wrap;
}

.carousel__track-container {
  overflow: hidden;
  flex: 1;
}

.carousel__track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.4s ease;
}

.carousel__track > .jurisdiction-card {
  flex: 0 0 calc(33.333% - var(--space-md) * 2 / 3);
  min-width: 0;
}

.carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ses-border);
  background: var(--ses-white);
  color: var(--ses-gray-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.carousel__arrow:hover:not([disabled]) {
  border-color: var(--ses-accent-hover);
  color: var(--ses-accent-hover);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.carousel__arrow:active:not([disabled]) {
  transform: scale(0.95);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-sm);
  flex-basis: 100%;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ses-border);
  cursor: pointer;
  padding: 0;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.carousel__dot.is-active {
  background: var(--ses-accent-hover);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .carousel__track > .jurisdiction-card {
    flex: 0 0 calc(50% - var(--space-md) / 2);
  }
  .carousel__arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .carousel__track > .jurisdiction-card {
    flex: 0 0 100%;
  }
  .carousel__arrow {
    display: none;
  }
  .carousel {
    flex-direction: column;
  }
}

/* ========== Resource Cards ========== */
.resource-card {
  background: var(--ses-white);
  border: 1px solid var(--ses-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--transition-fast);
}

.resource-card:hover {
  border-color: var(--ses-accent-light);
}

.resource-card__title {
  font-family: var(--font-extended);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ses-gray-dark);
  margin-bottom: var(--space-xs);
}

.resource-card__desc {
  font-size: 0.875rem;
  color: var(--ses-gray);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.resource-card__link {
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ses-accent-hover);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resource-card__link:hover {
  color: var(--ses-accent);
}

.resource-card__link::after {
  content: "→";
}

/* ========== Case Study ========== */
.case-study__property {
  font-size: 1.0625rem;
  color: var(--ses-gray);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.case-study__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.case-study__column h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.case-study__result {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.case-study__result strong {
  color: var(--ses-accent-hover);
}

/* ========== Executive Toggle ========== */
.exec-toggle__tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  background: var(--ses-gray-tertiary);
  border-radius: var(--radius-pill);
  padding: 4px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.exec-toggle__tab {
  flex: 1;
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--ses-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.exec-toggle__tab[aria-selected="true"] {
  background: var(--ses-accent);
  color: var(--ses-white);
  box-shadow: 0 2px 8px rgba(0, 153, 152, 0.3);
}

.exec-toggle__tab:hover:not([aria-selected="true"]) {
  color: var(--ses-gray-dark);
}

.exec-toggle__panel {
  display: none;
}

.exec-toggle__panel.is-active {
  display: block;
}

.exec-toggle__intro {
  font-size: 1rem;
  color: var(--ses-gray);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.exec-toggle__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.exec-point {
  background: var(--ses-white);
  border: 1px solid var(--ses-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.exec-point__title {
  font-family: var(--font-extended);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ses-gray-dark);
  margin-bottom: var(--space-xs);
}

.exec-point__text {
  font-size: 0.875rem;
  color: var(--ses-gray);
  line-height: 1.6;
  margin: 0;
}

.exec-toggle__bottom-line {
  background: var(--ses-teal-light-bg);
  border-left: 4px solid var(--ses-accent);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.exec-toggle__bottom-line p {
  font-size: 0.9375rem;
  color: var(--ses-gray-dark);
  margin: 0;
  font-weight: 500;
}

/* ========== FAQ Accordion ========== */
.faq__list {
  max-width: var(--container-content);
  margin: 0 auto;
}

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

.faq__item:first-child {
  border-top: 1px solid var(--ses-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: none;
  border: none;
  padding: var(--space-md) 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-extended);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ses-gray-dark);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--ses-accent-hover);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ses-accent);
  transition: transform var(--transition-normal);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq__answer-inner {
  padding: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--ses-gray);
  line-height: 1.7;
}

/* ========== Calculator ========== */
.calculator__form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--ses-white);
  border: 1px solid var(--ses-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ses-gray-dark);
  margin-bottom: 4px;
}

.form__helper {
  font-size: 0.75rem;
  color: var(--ses-gray);
  margin-top: 2px;
}

.form__input,
.form__select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ses-gray-dark);
  background: var(--ses-white);
  border: 1px solid var(--ses-border-light);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--ses-accent);
  box-shadow: 0 0 0 2px var(--ses-accent-ring);
}

.form__input::placeholder {
  color: var(--ses-gray);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.calculator__actions {
  text-align: center;
  margin-top: var(--space-lg);
}

.calculator__result {
  display: none;
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  background: var(--ses-teal-light-bg);
  border: 1px solid var(--ses-teal-light-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.calculator__result.is-visible {
  display: block;
}

.calculator__result-title {
  font-family: var(--font-extended);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ses-gray-dark);
  margin-bottom: var(--space-sm);
}

.calculator__result-range {
  font-family: var(--font-extended);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ses-accent-hover);
  margin-bottom: var(--space-sm);
}

.calculator__result-details {
  font-size: 0.9375rem;
  color: var(--ses-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.calculator__result-valuation {
  background: var(--ses-white);
  border: 1px solid var(--ses-teal-light-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}

.calculator__result-valuation p {
  font-size: 0.875rem;
  color: var(--ses-gray);
  margin: 0;
}

.calculator__result-valuation strong {
  color: var(--ses-gray-dark);
}

.calculator__disclaimer {
  background: #fffbf0;
  border: 1px solid #f5deb3;
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

.calculator__disclaimer p {
  font-size: 0.8125rem;
  color: var(--ses-gray);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* ========== Penalty Example Tables ========== */
.penalty-table {
  background: var(--ses-white);
  border: 1px solid var(--ses-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.penalty-table__title {
  font-family: var(--font-extended);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ses-gray-dark);
  padding: var(--space-sm) var(--space-md) 0;
  margin-bottom: 2px;
}

.penalty-table__subtitle {
  font-family: var(--font-tight);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ses-accent-hover);
  padding: 0 var(--space-md) var(--space-sm);
  margin: 0;
}

.penalty-table__scroll {
  overflow-x: auto;
}

.penalty-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-tight);
  font-size: 0.8125rem;
}

.penalty-table th {
  background: var(--ses-navy);
  color: var(--ses-white);
  font-family: var(--font-tight);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: var(--space-xs) var(--space-sm);
  text-align: left;
  white-space: nowrap;
}

.penalty-table td {
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 1px solid var(--ses-border);
  white-space: nowrap;
}

.penalty-table tr:nth-child(even) {
  background: var(--ses-gray-light);
}

.penalty-table .highlight {
  color: var(--ses-accent-hover);
  font-weight: 700;
}

/* ========== Contact CTA ========== */
.contact-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta__contact {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.contact-cta__contact a {
  color: var(--ses-accent-light);
  font-weight: 600;
}

.contact-cta__contact a:hover {
  color: var(--ses-white);
}

.contact-cta__deliverables {
  text-align: left;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.contact-cta__deliverables h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.contact-cta__deliverables ul {
  list-style: none;
  padding: 0;
}

.contact-cta__deliverables li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-cta__deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ses-accent);
  font-weight: bold;
}

.contact-cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========== Footer ========== */
.footer {
  background: var(--ses-navy);
  padding: var(--space-2xl) 0 var(--space-lg);
  color: var(--ses-white);
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  height: 50px;
  width: auto;
  margin: 0 auto var(--space-sm);
  opacity: 0.8;
}

.footer__slogan {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ========== Animations ========== */
@keyframes fadeBlurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeBlurIn 600ms ease forwards;
}

.animate-delay-1 {
  animation-delay: 100ms;
}

.animate-delay-2 {
  animation-delay: 200ms;
}

.animate-delay-3 {
  animation-delay: 300ms;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  h1,
  .hero__title {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .exec-toggle__points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --header-height: 94px;
  }

  h1,
  .hero__title {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .header__tagline,
  .header__contact {
    display: none;
  }

  .hero--dark {
    min-height: auto;
    padding-top: calc(
      var(--header-height) + var(--subnav-height) + var(--space-2xl)
    );
    padding-bottom: var(--space-2xl);
  }

  .hero__lead {
    font-size: 1.125rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stats-strip__value {
    font-size: 1.25rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .exec-toggle__tabs {
    max-width: 100%;
  }

  .exec-toggle__points {
    grid-template-columns: 1fr;
  }

  .contact-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .subnav__link {
    font-size: 0.75rem;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.625rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .calculator__form {
    padding: var(--space-md);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
