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

:root {
  --navy: #00003D;
  --navy-dark: #000055;
  --blue: #00003D;
  --blue-light: #000055;
  --red: #e63946;
  --red-hover: #d62839;
  --white: #ffffff;
  --bg: #C8DDE5;
  --baby-blue: #7eb8e8;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf1;
  --gray-400: #94a3b8;
  --gray-text: #666;
  --gray-border: #e0e0e0;
  --support-green: #4a9b5c;
  --shadow: 0 8px 32px rgba(0, 0, 61, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Header ── */

.header {
  position: relative;
  z-index: 100;
  padding: 0 2rem;
  background: var(--bg);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 2;
  grid-column: 1;
}

.logo {
  flex-shrink: 0;
  color: var(--navy);
  display: flex;
  align-items: center;
  transform: translateY(-4px) translateX(-10px);
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: -0.25rem;
}

.logo-speak {
  color: #9fd4e8;
}

.logo-sandiego {
  color: var(--navy);
}

.logo-icon {
  width: 64px;
  height: 46px;
  display: block;
  background-color: var(--navy);
  transform: scaleX(-1) rotate(25deg);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-mask: url('/speaksandiegologo2.png') no-repeat center / contain;
  mask: url('/speaksandiegologo2.png') no-repeat center / contain;
}

.nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  z-index: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1.5px solid rgba(0, 0, 61, 0.25);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin: 0.13rem 0;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.home .nav-toggle {
  border-color: rgba(255, 255, 255, 0.75);
}

.home .nav-toggle-bar {
  background: var(--white);
}

.header--nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.header--nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header--nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.8;
}

.nav-active {
  font-weight: 600;
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  justify-self: end;
  position: relative;
  z-index: 2;
}

.header-actions > * {
  flex-shrink: 0;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-schedule {
  border-radius: 0 9999px 9999px 9999px;
  padding-left: 1.25rem;
  padding-right: 1.5rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-text:hover {
  opacity: 0.65;
}

.btn-lg {
  padding: 0.65rem 1.15rem;
  font-size: 0.95rem;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

/* ── Hero Video ── */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  overflow: visible;
  width: 100%;
  max-width: 640px;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  overflow: visible;
}

.hero-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.hero-tagline {
  width: 100%;
  max-width: min(95vw, 900px);
  margin: 0;
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  color: var(--navy);
  white-space: nowrap;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  text-align: center;
  color: var(--navy);
}

/* ── Landing Hero (Burlington-style) ── */

.home .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.home .logo-icon {
  width: 56px;
  height: 40px;
  background-color: var(--white);
}

.home .logo-speak {
  color: var(--bg);
}

.home .logo-sandiego {
  color: var(--white);
}

.home .nav-brand:hover {
  opacity: 0.85;
}

.home .nav a {
  color: var(--white);
}

.home .nav a:hover {
  opacity: 0.85;
}

.home .btn-schedule {
  background: var(--baby-blue);
  color: var(--navy);
}

.home .btn-schedule:hover {
  background: #6aa8d8;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-login {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  isolation: isolate;
}

.btn-login-bg {
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.btn-login-bg--blue {
  left: 0;
  width: 0%;
  background: var(--bg);
  animation: login-blue-fill 3s ease-in-out infinite;
  z-index: 0;
}

.btn-login-label {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.btn-login-text {
  color: var(--white);
}

.btn-login-dark-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  overflow: hidden;
  animation: login-blue-fill 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-login-dark-mask .btn-login-text {
  color: var(--navy);
}

@keyframes login-blue-fill {
  0%, 8% {
    width: 0%;
  }

  40%, 45% {
    width: 100%;
  }

  70%, 75% {
    width: 0%;
  }

  75%, 100% {
    width: 0%;
  }
}

.btn-login:hover {
  background-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .btn-login-bg--blue,
  .btn-login-dark-mask {
    animation: none;
    width: 0%;
  }
}

.btn-red {
  background: var(--bg);
  color: var(--navy);
}

.btn-red:hover {
  background: #b8d4de;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero--landing {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 640px;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
}

.hero--landing .hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
  z-index: 0;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 45, 0.72);
}

.hero-inner.hero-inner--split {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 6rem 2rem;
  min-height: 100%;
  height: 100%;
  flex: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-headline {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-collage-panel {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 700px;
  overflow: visible;
}

.hero-collage {
  position: relative;
  width: min(100%, 620px);
  height: 540px;
  overflow: visible;
}

.hero-collage::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 0;
  width: 78%;
  height: 68%;
  background: var(--white);
  border-radius: 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.hero-collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 61, 0.18);
  will-change: transform;
}

.hero-collage-card--main {
  top: 28%;
  left: 6%;
  width: 52%;
  height: 48%;
  z-index: 3;
}

.hero-collage-card--top {
  top: -2%;
  left: 4%;
  width: 36%;
  height: 24%;
  z-index: 4;
}

.hero-collage-card--right-top {
  top: 8%;
  right: 8%;
  width: 32%;
  height: 26%;
  z-index: 5;
}

.hero-collage-card--right-bottom {
  top: 42%;
  right: 2%;
  width: 38%;
  height: 32%;
  z-index: 6;
}

.hero-collage-card--bottom {
  bottom: 2%;
  left: -24%;
  width: 40%;
  height: 26%;
  z-index: 4;
}

/* ── Page ── */

.page-hero {
  background: var(--bg);
  padding: 4rem 2rem 3rem;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy);
}

.page-section {
  background: var(--navy);
  padding: 4rem 2rem 5rem;
}

.page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Features ── */

.features {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 5rem 2rem;
}

.features--save {
  --save-edge-space: 5rem;
  padding: var(--save-edge-space) 2rem;
}

.features--save .features-inner--stack {
  justify-content: flex-start;
  gap: 2rem;
}

.features--save .savings-calculator {
  margin-bottom: 0;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-inner--stack {
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 920px;
}

.features .hero-tagline {
  color: var(--white);
}

.features .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  line-height: 1.6;
  text-align: center;
}

/* ── Promo split section ── */

.promo-section {
  position: relative;
  z-index: 1;
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 3rem 4.5rem 0;
}

.promo-section-inner {
  display: contents;
}

.promo-section-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.promo-section-content {
  padding-right: 0.5rem;
}

.promo-section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.promo-section-text {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
}

.promo-section-content .btn {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-cta:hover {
  background: var(--red-hover);
}

/* ── Why section ── */

.why-section {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 4.5rem 2rem 5rem;
  color: var(--white);
}

.why-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section-title {
  margin: 0 0 3rem;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.why-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.why-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.why-tabs-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.why-tabs-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.why-tabs-arrow:hover:not(:disabled) {
  color: var(--white);
}

.why-tabs-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.why-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: 100%;
}

.why-tab {
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: color 0.2s;
}

.why-tab:hover {
  color: rgba(255, 255, 255, 0.75);
}

.why-tab.is-active {
  color: var(--white);
  font-weight: 600;
}

.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-monitor {
  position: relative;
  width: min(100%, 420px);
}

.why-monitor-screen {
  position: relative;
  aspect-ratio: 1.05 / 1;
  background: var(--white);
  border-radius: 28px;
  padding: 1.35rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.why-monitor-block {
  position: absolute;
  background: #eceff3;
  border-radius: 8px;
}

.why-monitor-block--wide {
  top: 1.35rem;
  left: 1.35rem;
  width: 42%;
  height: 18%;
}

.why-monitor-block--tall {
  top: 1.35rem;
  right: 1.35rem;
  width: 28%;
  height: 52%;
}

.why-monitor-block--small {
  bottom: 1.35rem;
  right: 1.35rem;
  width: 28%;
  height: 16%;
}

.why-monitor-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 61, 0.12);
}

.why-monitor-photo--support {
  top: 18%;
  left: 8%;
  width: 34%;
  height: 28%;
  z-index: 2;
}

.why-monitor-photo--team {
  top: 24%;
  left: 34%;
  width: 58%;
  height: 52%;
  z-index: 3;
}

.why-support-card {
  position: absolute;
  left: -4%;
  bottom: 8%;
  width: 34%;
  aspect-ratio: 1.15 / 1;
  padding: 0.85rem;
  background: var(--red);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.why-support-card svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--white);
}

.why-support-card span {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.why-support-card span:last-child {
  width: 72%;
  background: rgba(255, 255, 255, 0.55);
}

.why-panel-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.why-panel-text {
  margin: 0 0 1.75rem;
  max-width: 24rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Site info / contact block ── */

.site-info {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.site-info-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.site-info-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2.5rem 1.75rem;
  background: var(--navy);
}

.site-info-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  transition: opacity 0.2s;
}

.site-info-nav a:hover {
  opacity: 0.8;
}

.site-info-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 1.25rem 2rem 1rem;
  background: #f3f6f8;
}

.site-info-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
  gap: 2rem;
}

.site-info-heading {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #6eb4d2;
}

.site-info-column p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--navy);
}

.site-info-column strong {
  font-weight: 600;
  color: var(--navy);
}

.site-info-column a {
  color: #2f7ea1;
  text-decoration: none;
}

.site-info-column a:hover {
  text-decoration: underline;
}

.site-info-utilities {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 61, 0.08);
}

.site-info-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.site-info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.site-info-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.site-info-link--accent {
  color: var(--red);
}

.site-info-link--accent:hover {
  color: var(--red-hover);
}

.site-info-login-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.device-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  width: 100%;
}

.device-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.device-frame--phone {
  width: 120px;
  height: 220px;
  border-radius: 18px;
}

.device-frame--tablet {
  width: 180px;
  height: 240px;
  border-radius: 16px;
}

.device-frame--laptop {
  width: 280px;
  height: 180px;
  border-radius: 10px 10px 4px 4px;
}

.device-placeholder {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.app-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.app-placeholder {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Savings Calculator ── */

.savings-calculator {
  width: 100%;
  max-width: 920px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.savings-calculator-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
}

.savings-calculator-options .savings-field {
  text-align: center;
}

.savings-calculator-options .savings-field-label,
.savings-calculator-summary .savings-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.savings-license-price,
.savings-team-size {
  box-sizing: border-box;
  width: 72px;
  padding: 0.35rem 0.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  text-align: center;
}

.savings-license-price {
  display: inline-block;
}

.savings-team-size {
  width: 88px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.savings-team-size::-webkit-inner-spin-button,
.savings-team-size::-webkit-outer-spin-button {
  opacity: 1;
}

.savings-calculator-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: 1.75rem 2.5rem;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.savings-calculator-summary .savings-result {
  text-align: center;
}

.savings-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.savings-amount {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.savings-chart {
  padding: 1.75rem 2.5rem 2rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.savings-chart-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
}

.savings-line-track {
  position: relative;
  width: 100%;
  height: 32px;
}

.savings-line-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-200);
  border-radius: 999px;
  transform: translateY(-50%);
}

.savings-line-fill {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  height: 4px;
  width: 0;
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.savings-line-point {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.25s ease;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Footer ── */

.footer {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .header {
    padding: 0 1.25rem;
  }

  .header-inner {
    gap: 0.65rem;
  }

  .nav {
    gap: clamp(0.45rem, 1.2vw, 1rem);
  }

  .nav a {
    font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  }

  .nav-brand {
    font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  }

  .logo-icon {
    width: clamp(36px, 7vw, 48px);
    height: clamp(26px, 5vw, 34px);
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-actions .btn {
    padding: 0.42rem 0.65rem;
    font-size: clamp(0.68rem, 1.6vw, 0.78rem);
  }

  .header-actions .btn-schedule {
    padding-left: 0.75rem;
    padding-right: 0.9rem;
  }

  .site-info-layout {
    grid-template-columns: 1fr;
  }

  .site-info-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    padding: 1.5rem;
  }

  .site-info-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    row-gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem 0 0.25rem;
    border-top: 1px solid rgba(0, 0, 61, 0.12);
  }

  .header--nav-open .nav {
    display: flex;
    background: var(--navy);
    border-top: none;
    padding: 0.85rem 1rem 1rem;
    margin-top: 0.35rem;
    border-radius: 8px;
  }

  .header--nav-open .nav a {
    color: var(--white);
  }

  .header--nav-open .nav a:hover {
    opacity: 0.85;
  }

  .header--nav-open .header-inner {
    row-gap: 0.35rem;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 0.45rem 0;
    text-align: center;
  }

  .header-brand {
    max-width: calc(100vw - 11rem);
  }

  .logo {
    transform: translateY(-2px) translateX(-6px);
  }
}

@media (max-width: 900px) {
  .header {
    padding: 0 1rem;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .header-actions .btn {
    padding: 0.38rem 0.55rem;
    font-size: 0.68rem;
  }

  .header-actions .btn-schedule {
    padding-left: 0.65rem;
    padding-right: 0.75rem;
  }

  .logo-icon {
    width: 40px;
    height: 28px;
  }

  .nav-brand {
    font-size: 0.95rem;
  }

  .hero-inner.hero-inner--split {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6.75rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-collage-panel {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 0 0.5rem;
  }

  .hero-collage {
    height: 460px;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .hero-collage::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-collage-card--right-top {
    right: 2%;
  }

  .hero-collage-card--right-bottom {
    right: -2%;
  }

  .hero-collage-card--top {
    left: 10%;
  }

  .hero-collage-card--bottom {
    left: 2%;
  }

  .hero-inner:not(.hero-inner--split) {
    padding: 5rem 2rem 3rem;
  }

  .hero-visual,
  .hero-video-wrap {
    max-width: 480px;
  }

  .hero-tagline {
    white-space: normal;
    max-width: 95vw;
  }

  .features-inner {
    max-width: 480px;
  }

  .features-inner--stack {
    max-width: 100%;
  }

  .savings-calculator-options {
    padding: 1.5rem;
  }

  .savings-calculator-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .savings-chart {
    padding: 1.5rem;
  }

  .promo-section {
    display: block;
    padding: 3rem 1.5rem;
  }

  .promo-section-inner {
    display: block;
  }

  .promo-section-content {
    padding-right: 0;
  }

  .why-section-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .why-tabs-arrow--up,
  .why-tabs-arrow--down {
    display: none;
  }

  .why-tabs-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .why-tab {
    font-size: 0.95rem;
  }

  .site-info-main {
    padding: 1rem 1.25rem 0.85rem;
  }

  .site-info-columns {
    grid-template-columns: 1fr;
  }

  .site-info-utilities {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-section-inner {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

}

@media (max-width: 480px) {
  .header {
    padding: 0 0.65rem;
  }

  .header-inner {
    gap: 0.35rem;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .header-actions .btn {
    padding: 0.32rem 0.45rem;
    font-size: 0.62rem;
  }

  .header-actions .btn-schedule {
    padding-left: 0.5rem;
    padding-right: 0.6rem;
  }

  .logo-icon {
    width: 34px;
    height: 24px;
  }

  .nav-brand {
    display: none;
  }

  .header-brand {
    max-width: none;
  }

  .hero-inner.hero-inner--split {
    padding: 6.25rem 1rem 3rem;
  }

  .hero-inner {
    padding: 4rem 1rem 3rem;
  }

  .hero-visual,
  .hero-video-wrap {
    max-width: 360px;
  }
}

/* ── Contact / support form ── */

.contact-page {
  background: var(--gray-100);
}

.show-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) 3rem;
}

.show-support-intro {
  color: var(--navy);
}

.show-support-heading {
  margin-bottom: 0.85rem;
  color: var(--support-green);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.show-support-lead {
  max-width: 24rem;
  margin-bottom: 2rem;
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.55;
}

.show-support-lead a {
  color: var(--support-green);
  font-weight: 600;
  text-decoration: none;
}

.show-support-lead + .show-support-lead {
  margin-top: -1rem;
}

.show-support-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid var(--gray-border);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.show-support-field,
.show-support-field-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.show-support-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.show-support-field > span,
.show-support-field-row .show-support-field > span {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.show-support-optional {
  color: var(--gray-text);
  font-weight: 400;
}

.show-support-control {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-border);
  border-radius: 0.15rem;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
}

.show-support-control:focus {
  outline: none;
  border-color: var(--support-green);
  box-shadow: 0 0 0 2px rgba(74, 155, 92, 0.15);
}

.show-support-control--textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.show-support-file {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

.show-support-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--gray-border);
  border-radius: 0.15rem;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.show-support-file-btn svg {
  width: 1rem;
  height: 1rem;
}

.show-support-file-btn:hover,
.show-support-file-btn:focus,
.show-support-file-btn:active,
.show-support-file-btn:focus-visible {
  border-color: var(--gray-border);
  outline: none;
}

.show-support-file-name {
  color: var(--gray-text);
  font-size: 0.88rem;
}

.show-support-form-status {
  margin: 0;
  color: var(--support-green);
  font-size: 0.88rem;
  font-weight: 600;
}

.show-support-form-status.is-error {
  color: #b00020;
}

.show-support-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 0.15rem;
  background: var(--support-green);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.show-support-submit:hover {
  filter: brightness(0.92);
}

.show-support-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .show-support-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .show-support-lead {
    margin-bottom: 0.85rem;
  }

  .show-support-lead:last-child {
    margin-bottom: 0;
  }
}
