﻿:root {
  --semantic-deep: #020a13;
  --semantic-navy: #07182b;
  --semantic-slate-dark: #10253a;
  --semantic-muted: #6e8794;
  --semantic-silver: #a9c0c7;
  --semantic-light: #effcfc;
  --semantic-primary: #309fa1;
  --semantic-primary-light: #69cecc;
  --semantic-primary-glow: rgba(48, 159, 161, 0.3);
  --semantic-glass: rgba(5, 20, 34, 0.54);
  --semantic-glass-border: rgba(105, 206, 204, 0.13);
  --semantic-glass-hover: rgba(12, 43, 57, 0.74);
  --space-section-y: clamp(3.5rem, 6vw, 6rem);
  --space-section-x: clamp(1.25rem, 3vw, 3rem);
  --space-header-mb: clamp(2rem, 4vw, 4rem);
  --text-hero: clamp(2.6rem, 6vw, 5.5rem);
  --text-h2: clamp(1.9rem, 3vw, 3rem);
  --text-h3: clamp(1.2rem, 2vw, 1.6rem);
  --text-body-lg: clamp(1rem, 1.4vw, 1.15rem);
  --text-body: clamp(0.95rem, 1.1vw, 1rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(48, 159, 161, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(21, 71, 100, 0.2), transparent 26%),
    var(--semantic-deep);
  color: var(--semantic-silver);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(1150px, calc(100% - 2 * var(--space-section-x)));
  margin: 0 auto;
}

.section {
  padding: var(--space-section-y) 0;
  position: relative;
}

.glass-card {
  background: var(--semantic-glass);
  border: 1px solid var(--semantic-glass-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
}

.button-primary {
  color: #080808;
  background: linear-gradient(90deg, var(--semantic-primary), var(--semantic-primary-light));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 24px rgba(48, 159, 161, 0.3);
}

.button-primary:hover {
  filter: brightness(1.08);
}

.button-ghost {
  color: var(--semantic-light);
  background: transparent;
  border: 1px solid var(--semantic-glass-border);
}

.button-ghost:hover {
  background: rgba(105, 206, 204, 0.08);
  border-color: var(--semantic-primary-light);
  box-shadow: 0 0 15px rgba(48, 159, 161, 0.15);
}


.button-inline {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(2, 10, 19, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.brand span span {
  background: linear-gradient(90deg, var(--semantic-primary), var(--semantic-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav,
.desktop-cta {
  display: none;
}

.desktop-nav {
  gap: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  color: rgba(250, 250, 250, 0.82);
}

.desktop-nav a:hover {
  color: var(--semantic-light);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  color: var(--semantic-light);
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(2, 10, 19, 0.97);
}

.mobile-menu-inner {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 0 1.25rem;
}

.mobile-menu-inner a:not(.button) {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  color: rgba(250, 250, 250, 0.88);
}

.hero {
  padding-top: clamp(4rem, 8vw, 8rem);
  min-height: calc(100vh - 4.6rem);
}

.hero-grid {
  position: relative;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px, 80px 80px, 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-glow-left {
  width: 18rem;
  height: 18rem;
  top: 6%;
  left: -6rem;
  background: rgba(48, 159, 161, 0.34);
}

.hero-glow-right {
  width: 20rem;
  height: 20rem;
  right: -7rem;
  bottom: 5%;
  background: rgba(18, 72, 101, 0.28);
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(48, 159, 161, 0.28);
  background: rgba(5, 20, 34, 0.58);
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--semantic-primary-light);
  box-shadow: 0 0 18px rgba(105, 206, 204, 0.72);
  animation: pulse 2s infinite ease-in-out;
}

.hero h1,
.section-heading h2,
.problem-card h3,
.system-card h3,
.timeline-card h3,
.solution-card h3,
.why-card h3,
.cta-panel h2,
.site-footer h4 {
  margin: 0;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
}

.hero h1 {
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--semantic-primary), var(--semantic-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 em {
  font-style: normal;
  color: rgba(250, 250, 250, 0.78);
}

.hero-copy p {
  margin: 1.35rem auto 0;
  max-width: 40rem;
  font-size: var(--text-body-lg);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-visual {
  position: relative;
  min-height: 24rem;
  width: min(100%, 36rem);
  margin: 0 auto;
}

.vineeltech-stage {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(128, 232, 226, 0.12);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(13, 38, 59, 0.5), transparent 60%),
    linear-gradient(145deg, rgba(4, 24, 39, 0.95), rgba(2, 14, 25, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -3rem 8rem rgba(0, 5, 12, 0.4),
    0 2rem 5rem rgba(0, 4, 10, 0.3);
  isolation: isolate;
}

.vineeltech-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.vineeltech-glow-1 {
  width: 40%;
  height: 40%;
  top: 15%;
  right: 10%;
  background: rgba(48, 159, 161, 0.25);
  animation: vineeltech-aura 8s ease-in-out infinite;
}

.vineeltech-glow-2 {
  width: 35%;
  height: 35%;
  bottom: 15%;
  left: 10%;
  background: rgba(21, 94, 125, 0.35);
  animation: vineeltech-aura 8s ease-in-out infinite;
  animation-delay: -4s;
}

/* Connection Lines */
.connection-line {
  stroke: rgba(105, 206, 204, 0.08);
  stroke-width: 1.5px;
  transition: stroke 0.4s ease, stroke-width 0.4s ease;
}

.connection-line.active {
  stroke: rgba(105, 206, 204, 0.35);
  stroke-width: 2.2px;
}

/* Particles */
.flow-particle {
  fill: #ffffff;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(105, 206, 204, 0.9));
}

/* Falling Dollars */
.falling-dollar {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  fill: #ffffff;
  text-anchor: middle;
  dominant-baseline: central;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(105, 206, 204, 0.9));
}

/* Center Node Text Details */
.center-title {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: var(--semantic-muted);
  pointer-events: none;
}

.center-status {
  font-family: "Poppins", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  pointer-events: none;
  transition: fill 0.4s ease, opacity 0.4s ease;
}

.center-status.status-overloaded {
  fill: #ff7a59; /* premium red-orange */
}

.center-status.status-optimized {
  fill: var(--semantic-primary-light); /* cyan */
}

/* Leaking Revenue label */
.leak-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  fill: #ff7a59;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Outer Nodes - Pills */
.outer-node-group {
  pointer-events: none;
}

.glass-pill {
  fill: url(#pill-glass-grad);
  stroke: rgba(105, 206, 204, 0.16);
  stroke-width: 1px;
  backdrop-filter: blur(8px);
}

.pill-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  fill: var(--semantic-light);
}

@keyframes vineeltech-aura {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

.ticker-strip {
  position: relative;
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 16, 29, 0.9);
}

.ticker-label,
.kicker {
  margin: 0;
  color: rgba(250, 250, 250, 0.56);
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-label {
  text-align: center;
  margin-bottom: 1rem;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-list {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-list span {
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  color: rgba(250, 250, 250, 0.82);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--space-header-mb);
}

.section-heading h2 {
  font-size: var(--text-h2);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-copy {
  max-width: 36rem;
  margin: 0;
  font-size: 1rem;
}

.section-heading-stack {
  align-items: start;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.problem-card,
.system-card,
.timeline-card,
.solution-card,
.why-card,
.stat,
.solution-footer {
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover,
.system-card:hover,
.timeline-card:hover,
.solution-card:hover,
.why-card:hover {
  transform: scale(1.02);
  border-color: rgba(105, 206, 204, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.problem-card,
.timeline-card,
.why-card,
.solution-card,
.stat {
  padding: 1.45rem;
}

.problem-card h3,
.system-card h3,
.timeline-card h3,
.solution-card h3,
.why-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: var(--text-h3);
}

.problem-card p,
.system-card p,
.timeline-card p,
.solution-card p,
.why-card p,
.solution-footer p,
.site-footer p {
  margin: 0;
}

.icon-badge,
.timeline-card span,
.system-tag,
.solution-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--semantic-light);
  background: rgba(48, 159, 161, 0.16);
  border: 1px solid rgba(48, 159, 161, 0.26);
}

.systems-grid {
  align-items: stretch;
}

.system-card {
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
}

.system-card ul {
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.system-card li {
  position: relative;
  padding-left: 1.15rem;
}

.system-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--semantic-primary), var(--semantic-primary-light));
  box-shadow: 0 0 12px rgba(48, 159, 161, 0.52);
}

.system-card a:not(.button),
.solution-card a:not(.button) {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.system-price-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.system-price {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--semantic-primary-light), var(--semantic-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.system-price-subtext {
  font-size: 0.85rem;
  color: var(--semantic-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.system-card-cta {
  width: 100%;
  margin-top: auto;
}

.system-card-featured {
  background:
    radial-gradient(circle at top right, rgba(105, 206, 204, 0.22), transparent 45%),
    rgba(5, 20, 34, 0.58);
  border-color: rgba(105, 206, 204, 0.35);
  box-shadow: 0 15px 45px rgba(48, 159, 161, 0.18);
  transform: scale(1.02);
  z-index: 2;
}

.system-card-featured:hover {
  transform: scale(1.04) translateY(-2px);
}

.timeline-grid,
.stats-row,
.solution-footer,
.footer-grid,
.footer-bottom-row {
  display: grid;
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}

.stat span {
  font-size: 0.92rem;
}

.solution-grid {
  grid-template-columns: 1fr;
}

.solution-footer {
  margin-top: 1rem;
  padding: 1.35rem;
  align-items: start;
}

.solution-footer strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.section-cta {
  padding-top: 1rem;
}

.cta-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(48, 159, 161, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(21, 71, 100, 0.24), transparent 32%),
    rgba(5, 20, 34, 0.62);
}

.cta-copy p + p {
  margin-top: 1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cta-footnote {
  color: rgba(250, 250, 250, 0.58);
}

.site-footer {
  padding-top: 2rem;
  background: rgba(2, 10, 19, 0.94);
}

.footer-line {
  width: min(50%, 22rem);
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--semantic-primary), transparent);
  opacity: 0.5;
}

.footer-grid {
  padding-bottom: 2rem;
}

.footer-grid > div {
  display: grid;
  gap: 0.8rem;
}

.brand-footer {
  margin-bottom: 0.25rem;
}

.site-footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a:not(.button) {
  color: rgba(250, 250, 250, 0.76);
}

.button-footer {
  justify-self: start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-row {
  padding: 1rem 0 1.6rem;
  text-align: center;
}

@media (min-width: 700px) {
  .hero-actions,
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .two-up,
  .timeline-grid,
  .stats-row,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 960px) {
  .desktop-nav,
  .desktop-cta {
    display: inline-flex;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy p {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: row;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .button-inline {
    display: inline-flex;
  }

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

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

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

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

  .solution-card:nth-child(4),
  .solution-card:nth-child(5) {
    grid-column: span 1;
  }

  .solution-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cta-panel {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: center;
  }

  .footer-bottom-row p:last-child {
    text-align: right;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 959px) {
  .hero-visual {
    min-height: 21rem;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    min-height: 19rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vineeltech-stage * {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* --- SEO & CRO Optimizations --- */

/* Hero Proof List Styling */
.hero-proof-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-proof-list {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 960px) {
  .hero-proof-list {
    justify-content: flex-start;
  }
}

.hero-proof-list li {
  font-size: 0.88rem;
  color: var(--semantic-silver);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Industry Card Styling */
.industry-card {
  padding: 1.65rem;
}

.industry-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: var(--text-h3);
}

.industry-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.industry-card p strong {
  color: var(--semantic-light);
}

/* Trust Row Styling */
.trust-strip {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(3, 16, 29, 0.4);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  justify-items: start;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: center;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(48, 159, 161, 0.15);
  color: var(--semantic-primary-light);
  font-weight: bold;
  font-size: 0.88rem;
}

.trust-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--semantic-light);
}

/* FAQ Accordion Styling */
.FAQ-section {
  padding-top: var(--space-section-y);
}

.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--semantic-glass-border);
  border-radius: 1rem;
  background: var(--semantic-glass);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item[open] {
  background: var(--semantic-glass-hover);
  border-color: rgba(105, 206, 204, 0.25);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--semantic-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--semantic-primary-light);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  content: "+";
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-content p {
  margin: 1rem 0 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--semantic-silver);
}

/* Process Section Spacing Tweaks */
.timeline-card {
  padding: 1.8rem 1.5rem;
}

.timeline-grid {
  gap: 1.5rem;
}

/* --- Motion System Utilities --- */

[data-reveal="true"] {
  /* Parent container can remain static or act as a trigger, children are staggered */
}

/* Reveal starting state */
[data-reveal-child="true"],
.reveal-target {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

/* Reveal active state */
.reveal-visible {
  animation: revealUp 800ms ease-out forwards;
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Content Sequencing */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-actions {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy .eyebrow {
  animation-delay: 100ms;
}

.hero-copy h1 {
  animation-delay: 200ms;
}

.hero-copy p {
  animation-delay: 350ms;
}

.hero-actions {
  animation-delay: 500ms;
}

.hero-proof-list {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 650ms;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger delay custom property applied via JS */
.reveal-stagger {
  animation-delay: var(--stagger-delay, 0ms);
}

/* ==========================================================================
   SUBPAGE & COMPONENT-SPECIFIC STYLES
   ========================================================================== */

/* Subpage Hero */
.subpage-hero {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  text-align: center;
  position: relative;
}

.subpage-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.subpage-hero p {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  font-size: var(--text-body-lg);
  color: var(--semantic-silver);
}

/* Business System Diagram */
.diagram-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--semantic-glass);
  border: 1px solid var(--semantic-glass-border);
  border-radius: 1.5rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .diagram-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.diagram-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.diagram-step-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(48, 159, 161, 0.15);
  border: 1px solid var(--semantic-primary-light);
  color: var(--semantic-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.diagram-step-box {
  width: 100%;
  padding: 1.25rem;
  background: rgba(7, 24, 43, 0.8);
  border: 1px solid rgba(105, 206, 204, 0.15);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.diagram-step-box:hover {
  transform: translateY(-4px);
  border-color: var(--semantic-primary-light);
}

.diagram-step-box h4 {
  margin: 0 0 0.5rem 0;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
}

.diagram-step-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--semantic-muted);
  line-height: 1.4;
}

.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--semantic-primary-light);
  font-size: 1.5rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .diagram-arrow {
    transform: rotate(0deg);
    padding: 0 0.5rem;
  }
}

@media (max-width: 767px) {
  .diagram-arrow {
    transform: rotate(90deg);
    margin: -0.5rem 0;
  }
}

/* Before vs After Block */
.before-after-grid {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-card {
  padding: 2rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.ba-card-before {
  background: rgba(255, 122, 89, 0.03);
  border: 1px solid rgba(255, 122, 89, 0.15);
}

.ba-card-after {
  background: rgba(48, 159, 161, 0.03);
  border: 1px solid rgba(48, 159, 161, 0.15);
}

.ba-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ba-card-before .ba-badge {
  background: rgba(255, 122, 89, 0.15);
  color: #ff7a59;
  border: 1px solid rgba(255, 122, 89, 0.25);
}

.ba-card-after .ba-badge {
  background: rgba(48, 159, 161, 0.15);
  color: var(--semantic-primary-light);
  border: 1px solid rgba(48, 159, 161, 0.25);
}

.ba-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.ba-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ba-card-before .ba-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ff7a59;
  font-weight: bold;
}

.ba-card-after .ba-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--semantic-primary-light);
  font-weight: bold;
}

/* Comparison Tables */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 1rem;
  border: 1px solid var(--semantic-glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--semantic-glass);
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  background: rgba(8, 25, 43, 0.85);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--semantic-light);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.comparison-table td {
  font-size: 0.92rem;
  color: var(--semantic-silver);
  line-height: 1.5;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(105, 206, 204, 0.03);
}

.comparison-table td strong {
  color: var(--semantic-light);
}

.comparison-table .highlight-col {
  color: var(--semantic-primary-light);
  font-weight: 600;
}

.comparison-table td .check-icon {
  color: var(--semantic-primary-light);
  font-weight: bold;
}

.comparison-table td .cross-icon {
  color: #ff7a59;
  font-weight: bold;
}

/* Solutions Grid & Blocks */
.solution-detail-block {
  margin-bottom: 5rem;
}

.solution-detail-block:last-child {
  margin-bottom: 0;
}

.solution-detail-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .solution-detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.solution-detail-info {
  display: grid;
  gap: 1.25rem;
}

.solution-detail-info h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--semantic-light);
  margin: 0;
}

.solution-detail-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-box {
  padding: 1.25rem;
  background: rgba(48, 159, 161, 0.03);
  border: 1px solid rgba(48, 159, 161, 0.15);
  border-radius: 1rem;
  text-align: center;
}

.metric-box strong {
  display: block;
  font-size: 1.6rem;
  color: var(--semantic-primary-light);
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.25rem;
}

.metric-box span {
  font-size: 0.8rem;
  color: var(--semantic-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Interactive Problem Finder */
.finder-wrapper {
  margin: 4rem 0;
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .finder-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.finder-options {
  display: grid;
  gap: 1rem;
}

.finder-card {
  padding: 1.25rem;
  cursor: pointer;
  background: var(--semantic-glass);
  border: 1px solid var(--semantic-glass-border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.finder-card:hover {
  border-color: rgba(105, 206, 204, 0.3);
  background: var(--semantic-glass-hover);
  transform: translateY(-2px);
}

.finder-card.selected {
  border-color: var(--semantic-primary-light);
  background: rgba(48, 159, 161, 0.08);
  box-shadow: 0 0 15px rgba(48, 159, 161, 0.15);
}

.finder-checkbox {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 2px solid var(--semantic-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.finder-card.selected .finder-checkbox {
  border-color: var(--semantic-primary-light);
  background: var(--semantic-primary-light);
}

.finder-checkbox::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.finder-card.selected .finder-checkbox::after {
  opacity: 1;
}

.finder-card-content h4 {
  margin: 0 0 0.25rem 0;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.finder-card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--semantic-muted);
}

.finder-diagnostic {
  padding: 2rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top right, rgba(48, 159, 161, 0.1), transparent 50%), var(--semantic-glass);
  border: 1px solid var(--semantic-glass-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 20rem;
}

.diagnostic-placeholder {
  text-align: center;
  color: var(--semantic-muted);
}

.diagnostic-placeholder svg {
  width: 3.5rem;
  height: 3.5rem;
  stroke: currentColor;
  margin-bottom: 1rem;
}

.diagnostic-result h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--semantic-light);
}

.diagnostic-leak-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff7a59;
  font-family: "Poppins", sans-serif;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.diagnostic-leak-amount span {
  font-size: 0.95rem;
  color: var(--semantic-muted);
  font-weight: 500;
}

.diagnostic-rec {
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.diagnostic-rec strong {
  color: var(--semantic-primary-light);
}

/* Process Timeline Visual */
.process-timeline-visual {
  position: relative;
  margin: 4rem 0;
  padding: 0 1rem;
}

@media (min-width: 960px) {
  .process-timeline-visual {
    padding: 0;
  }
}

.timeline-line-path {
  position: absolute;
  top: 1.25rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--semantic-primary), var(--semantic-primary-light), var(--semantic-muted));
  opacity: 0.15;
  display: none;
  z-index: 1;
}

@media (min-width: 960px) {
  .timeline-line-path {
    display: block;
  }
}

.timeline-visual-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 700px) {
  .timeline-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .timeline-visual-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.timeline-visual-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-node-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--semantic-navy);
  border: 2px solid var(--semantic-glass-border);
  color: var(--semantic-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.timeline-visual-node:hover .timeline-node-circle {
  border-color: var(--semantic-primary-light);
  color: var(--semantic-primary-light);
  box-shadow: 0 0 15px var(--semantic-primary-glow);
  transform: scale(1.1);
}

.timeline-node-info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.timeline-node-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--semantic-muted);
  line-height: 1.4;
}

/* Ideal Client Profiles */
.profile-grid {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.profile-card {
  padding: 2rem;
}

.profile-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--semantic-light);
}

.profile-meta {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--semantic-primary-light);
  margin-bottom: 1.25rem;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.profile-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
}

.profile-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--semantic-primary-light);
  font-weight: bold;
}

/* ==========================================================================
   CONTACT PAGE & AUDIT BOOKING FUNNEL STYLES
   ========================================================================== */

.contact-page-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 120px 0;
  max-width: 1280px;
  width: min(1280px, calc(100% - 2 * var(--space-section-x)));
  margin: 0 auto;
}

@media (min-width: 960px) {
  .contact-page-container {
    flex-direction: row;
    gap: 80px;
    align-items: start;
  }
}

.contact-left {
  width: 100%;
}

@media (min-width: 960px) {
  .contact-left {
    width: clamp(480px, 40%, 520px);
    flex-shrink: 0;
  }
}

.contact-right {
  width: 100%;
}

@media (min-width: 960px) {
  .contact-right {
    width: clamp(600px, 60%, 620px);
    flex-shrink: 0;
  }
}

.contact-glass-card {
  background: var(--semantic-glass);
  border: 1px solid var(--semantic-glass-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(48, 159, 161, 0.08);
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-glass-card:hover {
  border-color: rgba(105, 206, 204, 0.25);
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(48, 159, 161, 0.15);
}

.tally-iframe-container {
  width: 100%;
  height: 1300px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.contact-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-check-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  color: var(--semantic-silver);
  line-height: 1.5;
}

.contact-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--semantic-primary-light);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-left h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
  color: var(--semantic-light);
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

.contact-left h1 span {
  background: linear-gradient(90deg, var(--semantic-primary), var(--semantic-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-left p.supporting {
  font-size: var(--text-body-lg);
  color: var(--semantic-silver);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--semantic-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

/* Specific page reveal timing animations */
.reveal-contact-1 {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 100ms;
}
.reveal-contact-2 {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 250ms;
}
.reveal-contact-3 {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 450ms;
}

@media (max-width: 959px) {
  .contact-page-container {
    padding: 60px 0;
    gap: 3rem;
  }
}

/* --- Embedded Revenue Impact Calculators --- */
.calculator-card {
  margin: 2rem 0;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: var(--semantic-glass);
  border: 1px solid var(--semantic-glass-border);
}

.calculator-subtitle {
  line-height: 1.4;
}

.calculator-body {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
}

/* Inputs Side */
.calculator-inputs {
  display: grid;
  gap: 1.25rem;
}

.input-group {
  display: grid;
  gap: 0.5rem;
}

.input-group label {
  font-size: 0.88rem;
  color: var(--semantic-silver);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-group label strong {
  color: var(--semantic-primary-light);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

/* Custom Range Slider Style */
.calculator-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--semantic-slate-dark);
  outline: none;
  transition: background 0.3s ease;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--semantic-primary-light);
  cursor: pointer;
  border: 2px solid var(--semantic-deep);
  box-shadow: 0 0 10px rgba(48, 159, 161, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--semantic-light);
}

.calculator-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--semantic-primary-light);
  cursor: pointer;
  border: 2px solid var(--semantic-deep);
  box-shadow: 0 0 10px rgba(48, 159, 161, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}

.calculator-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  background: var(--semantic-light);
}

/* Results Side */
.calculator-results {
  display: grid;
  gap: 1.25rem;
  background: rgba(2, 10, 19, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1.5rem;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.75rem;
}

.result-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.result-label {
  font-size: 0.8rem;
  color: var(--semantic-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-value {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--semantic-light);
  line-height: 1.2;
}

.result-value.text-accent {
  color: #ff7a59; /* Revenue Leak highlight color */
  text-shadow: 0 0 10px rgba(255, 122, 89, 0.1);
}

.calculator-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* Desktop layout: Inputs Left, Results Right */
@media (min-width: 768px) {
  .calculator-body {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

/* ==========================================================================
   SOLUTIONS PAGE WHITESPACE OPTIMIZATIONS
   ========================================================================== */

.solutions-page .section {
  padding-top: clamp(3.5rem, 5vw, 5rem);    /* 56px to 80px standard vertical padding */
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

/* Hero Section */
.solutions-page .subpage-hero {
  padding-top: clamp(4.5rem, 7vw, 7rem);     /* 72px to 112px top padding */
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem); /* 24px to 40px bottom padding */
}

/* Reduce the gap to the next section specifically to target 80px–120px total separation */
.solutions-page .subpage-hero + .section {
  padding-top: clamp(3.5rem, 5vw, 5rem);
}

/* Tighten layout margins inside components */
.solutions-page .finder-wrapper {
  margin: 2rem 0;
}

.solutions-page .solution-detail-block {
  margin-bottom: 3.5rem;
}

.solutions-page .solution-detail-block:last-child {
  margin-bottom: 0;
}

.solutions-page .process-timeline-visual {
  margin: 2rem 0;
}

.solutions-page .diagram-container,
.solutions-page .before-after-grid,
.solutions-page .comparison-table-wrapper,
.solutions-page .profile-grid {
  margin: 2rem 0;
}


