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

:root {
  --text-nav: #12456d;
  --brand-wordmark: #59b9e8;
  --login-from: #2bb8f0;
  --login-to: #135d9e;
  --page-bg: #f3f3f3;
  --nav-bg: #ffffff;
  --shadow-soft: 0 20px 48px rgba(8, 32, 55, 0.28), 0 6px 18px rgba(8, 32, 55, 0.18);
  /* Bottom-heavy float like the mockup */
  --shadow-nav: 0 14px 28px rgba(15, 40, 65, 0.11), 0 6px 10px rgba(15, 40, 65, 0.05);
  --shadow-logo-badge: 0 12px 32px rgba(15, 40, 65, 0.16), 0 4px 10px rgba(15, 40, 65, 0.08);
  --radius-main: 38px;
  --layout-max: 1160px;
  /* Hero subline */
  --hero-lead-color: #3f7da5;
  --hero-title-gradient: linear-gradient(135deg, #154157 0%, #127fcf 48%, #04acff 100%);
  /* Whole card matches footprint of former scale(0.82) video inside 90% width */
  --hero-frame-scale: 0.82;
  --nav-morph-dur: 420ms;
  --nav-morph-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.page {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-nav);
  background: var(--page-bg);
  line-height: 1.5;
  padding-top: 50px;
}

/* ── Site nav (fixed full-width bar — single state, no scroll morph) ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
}

.site-nav__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  gap: 0.55rem 1.35rem;
  padding: 0.5rem 1rem;
  background: var(--nav-bg);
  border-radius: 0;
  box-shadow: var(--shadow-nav);
  overflow: visible;
  z-index: 2;
}

/* Desktop: hide mobile controls; sheet is a plain flex slot for nav + login */
.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-nav);
  cursor: pointer;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid var(--login-from);
  outline-offset: 2px;
}

.site-nav__backdrop {
  display: none;
}

.site-nav__sheet {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

/* Links + Login grouped on the right */
.site-nav__end {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  padding-left: 2.8rem;
  min-height: 1.35rem;
}

.brand__mark {
  --badge-size: 3rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--badge-size);
  height: var(--badge-size);
  margin: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: none;
  padding: 2px;
  line-height: 0;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.06);
}

.brand__text {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-wordmark);
  line-height: 1.15;
}

.nav-links {
  display: block;
}

.nav-links__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links__a {
  color: var(--text-nav);
  font-weight: 600;
  font-size: 0.8625rem;
  text-decoration: none;
  padding: 0.18rem 0;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links__a:hover {
  color: var(--login-from);
}

.nav-links__a--current {
  color: var(--login-from);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 1.28rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--login-from), var(--login-to));
  box-shadow: 0 2px 10px rgba(19, 93, 158, 0.34);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-login:hover {
  filter: brightness(1.04);
  box-shadow: 0 5px 16px rgba(19, 93, 158, 0.45);
}

.btn-login:active {
  transform: translateY(1px);
}

/* ── Main hero (scaled card + proportional video) ── */
.hero-panel {
  width: calc(90% * var(--hero-frame-scale));
  max-width: none;
  margin: 1.125rem auto 2.5rem;
  border-radius: var(--radius-main);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.scroll-placeholder {
  width: calc(90% * var(--hero-frame-scale));
  margin: 0 auto 4rem;
  min-height: 140vh;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(10, 34, 58, 0.1);
  padding: 2rem;
}

.scroll-placeholder__inner {
  max-width: 720px;
}

.scroll-placeholder h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  color: #12456d;
}

.scroll-placeholder p {
  margin: 0 0 1rem;
  color: #355e7f;
}

.hero-stage {
  position: relative;
  width: 100%;
  /* Height follows width from real video dimensions (set in hero.js); fallback until metadata loads */
  aspect-ratio: var(--hero-video-ar, 16 / 9);
  border-radius: inherit;
  overflow: hidden;
  /* Letterboxing behind video only before dimensions apply / if metadata missing */
  background: linear-gradient(180deg, #cfe9f8 0%, #a8daf2 45%, #7ec8eb 100%);
}

.hero-stage__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-stage__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Dashboard overlay: same box + scaling as the video (object-fit: contain) */
.hero-stage__dashboard {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  padding: 2.5rem 2rem;
  width: 60%;
  max-width: 60%;
  font-family: "DM Sans", system-ui, sans-serif;
}

.hero-copy__title {
  margin: 0 0 0.75rem;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (forced-colors: active) {
  .hero-copy__title {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

@supports not (background-clip: text) {
  .hero-copy__title {
    background: none;
    color: #127fcf;
    -webkit-text-fill-color: currentColor;
  }
}

.hero-copy__title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy__lead {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.42;
  color: var(--hero-lead-color);
}

.trust-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(180deg, #4fa4e04a 0%, rgba(49, 168, 255, 0) 100%);
  backdrop-filter: blur(2px);
}

.trust-bar__item {
  text-align: center;
  padding: 1.5rem 1rem 1.35rem;
}

.trust-bar__item + .trust-bar__item {
  border-left: 2px solid rgba(28, 125, 189, 0.35);
}

.trust-bar__value {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, #46c1ff 0%, #127fcf 52%, #0580bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.trust-bar__title {
  margin: 0.25rem 0 0;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 600;
  background: linear-gradient(180deg, #46b0ff 0%, #12b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.trust-bar__desc {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.25;
  background: linear-gradient(180deg, #46b0ff 0%, #12b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@property --meter-border-progress {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}

@property --meter-load-c1 {
  syntax: "<color>";
  inherits: true;
  initial-value: #127fcf;
}

@property --meter-load-c2 {
  syntax: "<color>";
  inherits: true;
  initial-value: #04acff;
}

@property --meter-load-c3 {
  syntax: "<color>";
  inherits: true;
  initial-value: #2ca0ff;
}

@property --meter-load-c4 {
  syntax: "<color>";
  inherits: true;
  initial-value: #5fc4ff;
}

@property --everyone-c1 {
  syntax: "<color>";
  inherits: true;
  initial-value: #1e96df;
}

@property --everyone-c2 {
  syntax: "<color>";
  inherits: true;
  initial-value: #22abf8;
}

@property --everyone-c3 {
  syntax: "<color>";
  inherits: true;
  initial-value: #2ca0ff;
}

@property --everyone-c4 {
  syntax: "<color>";
  inherits: true;
  initial-value: #5fc4ff;
}

@property --glow-r {
  syntax: "<number>";
  inherits: true;
  initial-value: 89;
}

@property --glow-g {
  syntax: "<number>";
  inherits: true;
  initial-value: 197;
}

@property --glow-b {
  syntax: "<number>";
  inherits: true;
  initial-value: 255;
}

body {
  margin: 0;
  background: #f3f3f3;
  color: #31343b;
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

.meters-page {
  min-height: 100vh;
  padding: 2.5rem 1.5rem 4rem;
}

.meters-page.meters-page--index {
  padding-top: 3rem;
}

.meters-section {
  --glow-r: 89;
  --glow-g: 197;
  --glow-b: 255;
  position: relative;
  isolation: isolate;
  max-width: 1180px;
  margin: 0 auto;
}

.meters-section::before {
  content: "";
  position: absolute;
  top: 26%;
  bottom: 6%;
  left: 48%;
  right: -20%;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at 42% 50%,
    rgb(var(--glow-r) var(--glow-g) var(--glow-b) / 0.42) 0%,
    rgb(var(--glow-r) var(--glow-g) var(--glow-b) / 0) 72%
  );
  transition: --glow-r 420ms ease, --glow-g 420ms ease, --glow-b 420ms ease;
}

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

.meters-title {
  margin: 0;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #33363d;
}

.meters-title__accent {
  --everyone-c1: #1e96df;
  --everyone-c2: #22abf8;
  --everyone-c3: #2ca0ff;
  --everyone-c4: #5fc4ff;
  display: inline-block;
  background: linear-gradient(135deg, var(--everyone-c1) 0%, var(--everyone-c2) 40%, var(--everyone-c3) 68%, var(--everyone-c4) 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  transition: --everyone-c1 1050ms linear, --everyone-c2 300ms linear, --everyone-c3 300ms linear, --everyone-c4 300ms linear;
}

.meter-tabs-row {
  display: flex;
  justify-content: center;
  margin-top: 1.65rem;
  width: 100%;
  max-width: 100%;
}

.meter-tabs-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.meter-tabs {
  position: relative;
  --meter-border-progress: 0%;
  --meter-load-c1: #127fcf;
  --meter-load-c2: #04acff;
  --meter-load-c3: #2ca0ff;
  --meter-load-c4: #5fc4ff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 4.8rem;
  padding: 0;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: none;
}

.meter-tabs::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 3px solid transparent;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

.meter-tabs::after {
  content: "";
  position: absolute;
  inset: -4px;
  padding: 3px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, var(--meter-load-c1) 0%, var(--meter-load-c2) 36%, var(--meter-load-c3) 68%, var(--meter-load-c4) 100%) no-repeat;
  background-size: var(--meter-border-progress) 100%;
  background-position: left top;
  transition: --meter-load-c1 700ms linear, --meter-load-c2 700ms linear, --meter-load-c3 700ms linear, --meter-load-c4 700ms linear;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.meter-tab {
  position: relative;
  z-index: 1;
  border: 0;
  padding: 0.58rem 2.1rem;
  width: 11rem;
  min-width: 11rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: #9a9ca2;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: all 200ms ease;
  cursor: pointer;
}

.meter-tab.is-active {
  color: #171a21;
  background: #ffffff;
  box-shadow: 0 12px 20px rgba(48, 50, 57, 0.18);
  font-weight: 600;
}

.meter-tabs-pause {
  position: absolute;
  left: calc(100% + 0.75rem);
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--login-to);
  box-shadow: 0 8px 18px rgba(48, 50, 57, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.meter-tabs-pause:hover {
  color: var(--login-from);
  box-shadow: 0 10px 22px rgba(48, 50, 57, 0.18);
}

.meter-tabs-pause:active {
  transform: translateY(calc(-50% + 1px));
}

.meter-tabs-pause:focus-visible {
  outline: 2px solid var(--login-from);
  outline-offset: 2px;
}

.meter-tabs-pause__icon--play {
  display: none;
}

.meter-tabs-pause[aria-pressed="true"] .meter-tabs-pause__icon--pause {
  display: none;
}

.meter-tabs-pause[aria-pressed="true"] .meter-tabs-pause__icon--play {
  display: block;
}

.meters-content-viewport {
  margin-top: 0px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.meters-content {
  --meters-slide-x: 0%;
  display: flex;
  transform: translateX(var(--meters-slide-x));
  transition: transform 900ms ease-in-out;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.meters-panel {
  flex: 0 0 100vw;
  display: flex;
  justify-content: center;
  gap: 150px;
  align-items: center;
  height: 530px;
}

.meters-copy {
  position: relative;
  margin-left: 0px;
  left: 0;
  top: 0;
}

.meters-copy__headline {
  margin: 0;
  font-size: 5.3rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #32343c;
  text-shadow: 0 5px 12px rgba(24, 27, 36, 0.26);
}

.meters-copy__headline span {
  display: block;
}

.meters-copy__headline em {
  display: inline-block;
  padding-right: 0.08em;
  font-style: normal;
  background: linear-gradient(135deg, #127fcf 0%, #04acff 52%, #2ca0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.meters-copy__ideal {
  margin: 1.6rem 0 1.65rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 2rem;
  line-height: 1.1;
  color: #272a31;
  font-weight: 700;
}

.ideal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 20px;
  padding: 0.6rem 0.5rem;
  font-size: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
  color: #3da4e2;
  box-shadow: 9px 9px 10px rgba(74, 109, 136, 0.22);
}

.ideal-pill__icon {
  display: block;
  width: 1.08em;
  height: 1.08em;
  align-self: center;
  fill: #1ca1ec;
  flex-shrink: 0;
}

.meters-panel--postpaid .meters-copy__headline em {
  background: linear-gradient(135deg, #0c5f99 0%, #127fcf 52%, #2b9cd7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.meters-panel--postpaid .ideal-pill {
  color: #0c5f99;
}

.meters-panel--postpaid .ideal-pill__icon {
  fill: #0c5f99;
}

.meters-panel--postpaid .phone-screen {
  background: linear-gradient(180deg, #eef5fb 0%, #ffffff 100%);
}

.meters-panel--postpaid .phone-screen__chart {
  background: linear-gradient(180deg, #d8e8f6 0%, #f3f9ff 100%);
  border-color: #cfe1f1;
}

.meters-panel--postpaid .phone-footer .is-active {
  color: #0c5f99;
}

.meters-panel--postpaid .metric-chip i {
  background: linear-gradient(90deg, #2b9cd7 0%, #0c5f99 100%);
}

.meters-panel--postpaid .topup-pill {
  background: linear-gradient(180deg, #2b9cd7 0%, #0c5f99 100%);
}

.meters-copy__list {
  margin: 0;
  padding-left: 1.3rem;
}

.meters-copy__list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #454952;
  line-height: 1.25;
}

.phone-scene {
  position: relative;
  min-height: 560px;
  width: 360px;
}

.phone-scene--smart-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-mockup-image {
  display: block;
  width: auto;
  height: 502px;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.phone-scene--postpaid-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.postpaid-mockup-image {
  margin-right: -400px;
  display: block;
  width: auto;
  height: 632px;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.phone-frame {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 440px;
  border: 5px solid #121419;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(24, 27, 36, 0.2);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 7px;
  border-radius: 10px;
  background: #191c21;
}

.phone-screen {
  position: absolute;
  inset: 34px 0 52px;
  padding: 1rem 0.95rem;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.phone-screen__title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #262a31;
}

.phone-screen__chart {
  margin-top: 2.2rem;
  height: 180px;
  border-radius: 10px;
  background: linear-gradient(180deg, #dceffd 0%, #f6fbff 100%);
  border: 2px solid #e5edf4;
}

.phone-screen__chart.is-small {
  margin-top: 1.2rem;
  height: 118px;
}

.phone-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  border-top: 2px solid #e7edf3;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 0.88rem;
  color: #7f8896;
}

.phone-footer .is-active {
  color: #23a9f3;
  font-weight: 700;
}

.metric-chip {
  position: absolute;
  right: 0.6rem;
  width: 300px;
  border-radius: 14px;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 22px rgba(42, 47, 58, 0.22);
}

.metric-chip strong {
  display: block;
  font-size: 0.98rem;
  color: #344152;
}

.metric-chip span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  color: #7d8796;
}

.metric-chip i {
  display: block;
  margin-top: 0.5rem;
  height: 8px;
  width: 72%;
  border-radius: 999px;
  background: linear-gradient(90deg, #229fee 0%, #1e85dc 100%);
}

.metric-chip--power {
  top: 5.6rem;
}

.metric-chip--water {
  top: 11.2rem;
  right: -0.6rem;
}

.chart-card {
  display: none;
}

.topup-pill {
  position: absolute;
  right: 1.8rem;
  top: 22.8rem;
  border: 0;
  border-radius: 999px;
  padding: 0.56rem 1.8rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  color: #f9fdff;
  background: linear-gradient(180deg, #37b3ff 0%, #0088de 100%);
  box-shadow: 0 16px 22px rgba(5, 49, 92, 0.34);
}

/* How it works section (Attempt 2) */
.steps-mobile {
  display: none;
}

.steps-scroll {
  height: 500vh;
  margin-top: 3rem;
  position: relative;
}

.steps-header {
  position: absolute;
  top: 10px;
  left: clamp(0.65rem, 3.2vw, 1.75rem);
  z-index: 25;
  margin: 0;
  padding: 0.42rem 0.65rem 0.48rem;
  border-radius: 10px;
  pointer-events: none;
}

.steps-heading-h2 {
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.steps-heading-img {
  display: block;
  width: 500px;
  height: auto;
}

.steps-stage {
  position: sticky;
  top: 40px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  perspective: 1200px;
  background: var(--page-bg);
}

/* Uniform scale: keeps art angles + keeps vw/vh scroll motion aligned with visuals */
.steps-scaler {
  position: absolute;
  inset: 0;
  transform: scale(0.88);
  transform-origin: center center;
  transform-style: preserve-3d;
}

.step-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.step-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
}

.road-mask-svg-defs {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.step-2-road-overlay {
  position: absolute;
  inset: 0;
  background-image: url("how to images/road.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 6;
  opacity: 1;
  -webkit-mask-image: url(#roadRevealMask);
  mask-image: url(#roadRevealMask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.truck-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 10;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.truck-smoke-layer {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
}

.smoke-puff {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 113, 82, 0.78) 0%, rgba(142, 113, 82, 0.34) 58%, rgba(142, 113, 82, 0) 100%);
  filter: blur(1.2px);
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.step-slide:nth-child(1) { z-index: 4; }
.step-slide:nth-child(2) { z-index: 3; }
.step-slide:nth-child(3) { z-index: 2; }

.step-4-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 5;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.steps-progress {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
}

.steps-progress.visible {
  opacity: 1;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.progress-dot.active {
  background: #04acff;
  transform: scale(1.4);
}

.step-label {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-label.visible {
  opacity: 1;
}

/* Map section */
.map-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2rem) 0;
}

.map-hero__grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: start;
}

.map-hero__visual {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 0;
  justify-self: end;
  align-self: start;
  width: min(72vw, 720px);
  max-width: 100%;
  overflow: hidden;
  margin-right: -100px;
}

.map-hero__layer {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  position: relative;
  max-width: min(88%, 56rem);
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
  pointer-events: none;
}

.map-hero__layer .map-hero__subbox,
.map-hero__layer .map-hero__body {
  pointer-events: auto;
}

.map-hero__title {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(2.75rem, 10vw, 150px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  padding-block: 0.06em 0.1em;
  word-break: normal;
  overflow-wrap: normal;
  background: linear-gradient(135deg, #3c566b, #3c7cb6, #94ccff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.map-hero__copy {
  min-width: 0;
}

.map-hero__title-line {
  display: block;
  overflow: visible;
}

.map-hero__title-line + .map-hero__title-line {
  margin-top: -0.2em;
}

.map-hero__title-line--lead {
  font-size: 1.15em;
}

.map-hero__subbox {
  display: inline-block;
  position: relative;
  margin-top: 0;
  padding: 0.65rem 20rem 0.65rem 1.25rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  isolation: isolate;
}

.map-hero__subbox::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 5px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.map-hero__subtitle {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #127fcf, #04acff, #2ca0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0.06em 0.08em 0.12em rgba(0, 0, 0, 0.167))
    drop-shadow(0.04em 0.05em 0.35em rgba(0, 0, 0, 0.075));
}

.map-hero__body {
  margin: 1.35rem 0 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  max-width: 35rem;
  background: linear-gradient(135deg, #0053b4, #76aecd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.map-hero__map {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(92vh, 880px);
  display: block;
  object-fit: contain;
}

.map-hero__learn-more {
  position: absolute;
  right: clamp(0.75rem, 3vw, 1.75rem);
  bottom: 120px;
  z-index: 3;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.35rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--login-from), var(--login-to));
  box-shadow: 0 2px 12px rgba(19, 93, 158, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.map-hero__learn-more:hover {
  filter: brightness(1.05);
  box-shadow: 0 5px 18px rgba(19, 93, 158, 0.48);
}

.map-hero__learn-more:active {
  transform: translateY(1px);
}

.map-hero__learn-more:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (forced-colors: active) {
  .map-hero__title {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }

  .map-hero__subtitle {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
    filter: none;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.28);
  }

  .map-hero__body {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

/* Trusted partners section */
.partners-section {
  width: 100%;
  margin: 0 0 3.5rem;
}

.partners-section__inner {
  width: min(92%, 1240px);
  margin: 0 auto;
}

.partners-section__title {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #33363d;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 1.15rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.45));
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 7vw, 6rem);
  pointer-events: none;
  z-index: 1;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--page-bg), rgba(243, 243, 243, 0));
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--page-bg), rgba(243, 243, 243, 0));
}

.partners-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  width: max-content;
  animation: partners-marquee-ltr 34s linear infinite;
}

.partners-marquee__logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(2.1rem, 5vw, 4rem);
  max-width: 230px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

@keyframes partners-marquee-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
  }
}

/* Home: solution CTA (below partners) */
.solution-cta {
  width: 100%;
  margin: clamp(1.25rem, 3vw, 2rem) 0 2.5rem;
  padding: clamp(2.75rem, 6.5vw, 4.5rem) clamp(1.25rem, 4vw, 2rem);
  background: #faf7f2;
  text-align: center;
}

.solution-cta__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.solution-cta__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #1f2328;
}

.solution-cta__lede {
  margin: 0.85rem 0 0;
  font-size: clamp(0.95rem, 1.9vw, 1.125rem);
  font-weight: 400;
  color: #6a737d;
  line-height: 1.55;
}

.solution-cta__btn {
  display: inline-block;
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  padding: 0.85rem 2.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #3eb8ff 0%, #1a6fd4 45%, #13509e 100%);
  box-shadow: 0 10px 28px rgba(19, 80, 158, 0.28), 0 4px 10px rgba(19, 80, 158, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.solution-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(19, 80, 158, 0.32), 0 6px 14px rgba(19, 80, 158, 0.2);
}

.solution-cta__btn:active {
  transform: translateY(0);
}

/* Site footer */
.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #0c3557 0%, #082a45 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 244, 252, 0.92);
  font-size: 0.9375rem;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2rem) clamp(1.75rem, 4vw, 2.5rem);
}

.site-footer__col--brand {
  max-width: 22rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.85rem;
}

.site-footer__logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.site-footer__brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-wordmark);
}

.site-footer__tagline {
  margin: 0;
  line-height: 1.5;
  color: rgba(232, 244, 252, 0.72);
  font-size: 0.9rem;
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 244, 252, 0.55);
}

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

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list li:last-child {
  margin-bottom: 0;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--brand-wordmark);
}

.site-footer__text {
  color: rgba(232, 244, 252, 0.72);
  font-weight: 500;
  font-size: 0.9rem;
}

.site-footer__portal-actions {
  margin: 0 0 1rem;
}

.site-footer__btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.35rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--login-from), var(--login-to));
  box-shadow: 0 2px 10px rgba(19, 93, 158, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.site-footer__btn-login:hover {
  filter: brightness(1.04);
  box-shadow: 0 4px 14px rgba(19, 93, 158, 0.38);
}

.site-footer__btn-login:active {
  transform: translateY(1px);
}

.site-footer__support {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer__support-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 244, 252, 0.55);
  margin-bottom: 0.25rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(232, 244, 252, 0.55);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.site-footer__legal-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: var(--brand-wordmark);
}

/* ── FAQ page ── */
.faq-page {
  padding: 2.25rem 1.25rem 3.5rem;
}

.faq-page__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
}

.faq-page__intro {
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.faq-page__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-lead-color);
}

.faq-page__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #33363d;
}

.faq-page__title-accent {
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
  .faq-page__title-accent {
    background: none;
    color: #127fcf;
    -webkit-text-fill-color: currentColor;
  }
}

.faq-page__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(18, 69, 109, 0.72);
}

.faq-section {
  margin-bottom: 2.25rem;
}

.faq-section__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(18, 69, 109, 0.55);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: calc(var(--radius-main) * 0.42);
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 32, 55, 0.07), 0 2px 8px rgba(8, 32, 55, 0.05);
  border: 1px solid rgba(18, 69, 109, 0.07);
  overflow: hidden;
}

.faq-item__summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.75rem 1rem 1.15rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-nav);
  position: relative;
  transition: color 0.2s ease;
}

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

.faq-item__summary::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.28rem;
  border-right: 2px solid var(--login-from);
  border-bottom: 2px solid var(--login-from);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.faq-item[open] .faq-item__summary::after {
  transform: rotate(-135deg);
  margin-top: -0.1rem;
}

.faq-item__summary:hover {
  color: var(--login-from);
}

.faq-item__summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(43, 184, 240, 0.45);
}

.faq-item__body {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid rgba(18, 69, 109, 0.06);
}

.faq-item__body p {
  margin: 0.75rem 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(18, 69, 109, 0.88);
}

.faq-item__body p:first-child {
  margin-top: 0.85rem;
}

.faq-item__body a {
  color: var(--login-to);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 93, 158, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-item__body a:hover {
  color: var(--login-from);
  border-bottom-color: rgba(43, 184, 240, 0.65);
}

.faq-cta {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: calc(var(--radius-main) * 0.48);
  background: linear-gradient(135deg, rgba(43, 184, 240, 0.12) 0%, rgba(19, 93, 158, 0.08) 100%);
  border: 1px solid rgba(18, 69, 109, 0.1);
}

.faq-cta__block {
  max-width: 36rem;
}

.faq-cta__heading {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-nav);
}

.faq-cta__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(18, 69, 109, 0.88);
}

.faq-cta__sub a {
  color: var(--login-to);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 93, 158, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-cta__sub a:hover {
  color: var(--login-from);
  border-bottom-color: rgba(43, 184, 240, 0.65);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Solutions page (solutions.html)
   ═══════════════════════════════════════════════════════════════════════════ */
.solutions-page {
  --solutions-navy: #0d2137;
  --solutions-sand: #f8f4ef;
  --solutions-muted-on-dark: rgba(255, 255, 255, 0.62);
  --solutions-muted-card: rgba(255, 255, 255, 0.72);
}

/* --- Hero + platform: full-width video band (shared backdrop classes) --- */
.solutions-hero,
.solutions-platform {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: var(--solutions-navy);
}

.solutions-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.solutions-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.solutions-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 33, 55, 0.55) 0%,
    rgba(13, 33, 55, 0.72) 100%
  );
}

.solutions-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 7rem) 1.5rem;
  text-align: center;
}

.solutions-hero__title {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.solutions-hero__sub {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--solutions-muted-on-dark);
}

/* --- What is smart metering (same surface as Built For Everyone / page) --- */
.solutions-smart {
  background: var(--page-bg);
  overflow-x: clip;
  padding-block: 0;
  margin-block: clamp(1.25rem, 3vw, 2rem);
}

.solutions-smart__grid {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
  overflow: visible;
}

.solutions-smart__label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-lead-color);
}

.solutions-smart__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #33363d;
}

.solutions-smart__p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(18, 69, 109, 0.88);
}

.solutions-smart__p:last-of-type {
  margin-bottom: 1.35rem;
}

.solutions-smart__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions-chip {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--solutions-navy);
  border-radius: 999px;
  border: 1.5px solid var(--login-from);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 2px 8px rgba(13, 33, 55, 0.06);
}

.solutions-smart__visual {
  min-width: 0;
  justify-self: start;
  width: min(132%, calc(100% + clamp(2.5rem, 12vw, 9rem)));
  margin-left: 0;
}

.solutions-smart__figure {
  border-radius: calc(var(--radius-main) * 0.45);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(13rem, 30vw, 22rem);
}

.solutions-smart__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

/* Solutions page only: less air between smart section and Built For Everyone */
.solutions-page .meters-page.meters-page--index {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.solutions-platform__inner {
  position: relative;
  z-index: 2;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}

.solutions-platform__header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.solutions-platform__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--login-from);
}

.solutions-platform__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.solutions-platform__sub {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--solutions-muted-on-dark);
}

.solutions-platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem 1.25rem;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
}

.solutions-platform__card {
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius-main) * 0.42);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-platform__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  color: var(--login-from);
}

.solutions-platform__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.solutions-platform__card-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.solutions-platform__card-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--solutions-muted-card);
}

.solutions-platform__footnote {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--solutions-muted-on-dark);
}

.solutions-platform__footnote a {
  color: var(--login-from);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 184, 240, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.solutions-platform__footnote a:hover {
  color: #7fd4f8;
  border-bottom-color: rgba(127, 212, 248, 0.65);
}

/* --- CTA --- */
.solutions-cta {
  background: var(--solutions-sand);
}

.solutions-cta__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  text-align: center;
}

.solutions-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #33363d;
}

.solutions-cta__sub {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(18, 69, 109, 0.72);
}

.solutions-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--login-from), var(--login-to));
  box-shadow: 0 4px 18px rgba(19, 93, 158, 0.38);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.solutions-cta__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 22px rgba(19, 93, 158, 0.48);
}

.solutions-cta__btn:active {
  transform: translateY(1px);
}

.solutions-cta__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 184, 240, 0.45), 0 4px 18px rgba(19, 93, 158, 0.38);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Contact page (contact.html)
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-page {
  background: linear-gradient(180deg, #f3f3f3 0%, #eef5fb 48%, #f3f3f3 100%);
}

.contact-main {
  padding: 2.5rem 1.5rem 4rem;
}

.contact-main__inner {
  margin: 0 auto;
  max-width: 52rem;
}

.contact-main__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-lead-color);
}

.contact-main__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #33363d;
}

.contact-main__title-accent {
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
  .contact-main__title-accent {
    background: none;
    color: #127fcf;
    -webkit-text-fill-color: currentColor;
  }
}

.contact-main__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(18, 69, 109, 0.78);
}

.contact-main__intro {
  margin-bottom: 2.25rem;
}

.contact-main__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius-main) * 0.42);
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 32, 55, 0.07), 0 2px 8px rgba(8, 32, 55, 0.05);
  border: 1px solid rgba(18, 69, 109, 0.07);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #dceffd 0%, #f6fbff 100%);
  color: var(--login-from);
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-lead-color);
}

.contact-card__link {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--login-to);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.contact-card__link:hover {
  color: var(--login-from);
}

.contact-main__note {
  margin: 1.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(18, 69, 109, 0.65);
  text-align: center;
}
