/**
 * EV Link theme layout, components, and responsive rules.
 */

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

html {
  scroll-behavior: smooth;
}

body.evlink-body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: #41546e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  min-width: 0;
}

/* Do not set a global link color — it breaks navy header/hero (nav + chips). */
body.evlink-body a {
  text-decoration: none;
}

body.evlink-body .ev-page a,
body.evlink-body .ev-page__content a,
body.evlink-body .ev-page__lead a {
  color: #08182f;
}

body.evlink-body .ev-page a:hover,
body.evlink-body .ev-page__content a:hover,
body.evlink-body .ev-page__lead a:hover {
  color: #1b8f00;
}

input,
select,
button,
textarea {
  font-family: "Manrope", system-ui, sans-serif;
}

input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 192, 10, 0.35);
}

.ev-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.ev-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1b8f00;
}

.ev-eyebrow--muted {
  color: #c6d4e0;
}

.ev-eyebrow--grey {
  color: #5e7288;
}

.ev-eyebrow--white {
  color: #ffffff;
}

.ev-rule {
  width: 36px;
  height: 3px;
  background: #2bc00a;
  display: block;
  flex-shrink: 0;
}

.ev-display {
  font-family: "Funnel Display", "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #08182f;
  margin: 0;
  text-wrap: pretty;
}

.ev-h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 0;
  text-wrap: pretty;
}

.ev-mono {
  font-family: "JetBrains Mono", monospace;
}

/* ——— Buttons / pills ——— */
.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 140ms cubic-bezier(0.22, 1, 0.36, 1), color 140ms,
    border-color 140ms;
}

.ev-btn--primary,
a.ev-btn--primary {
  background: #2bc00a;
  color: #08182f;
}

.ev-btn--primary:hover,
a.ev-btn--primary:hover,
.ev-btn--primary:focus-visible,
a.ev-btn--primary:focus-visible {
  background: #1b8f00;
  color: #ffffff;
}

.ev-btn--navy,
a.ev-btn--navy {
  background: #08182f;
  color: #ffffff;
}

.ev-btn--navy:hover,
a.ev-btn--navy:hover {
  background: #0f2745;
  color: #ffffff;
}

.ev-btn--ghost {
  background: transparent;
  border: 1px solid rgba(8, 24, 47, 0.14);
  color: #08182f;
}

.ev-btn--ghost:hover {
  background: rgba(8, 24, 47, 0.04);
  color: #08182f;
}

.ev-btn--ghost-inv {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.ev-btn--ghost-inv:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.ev-chip,
a.ev-chip {
  height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #c6d4e0;
  font-size: 13px;
  font-weight: 600;
  transition: background 140ms, color 140ms;
}

.ev-chip:hover,
a.ev-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.ev-chip--paper {
  border-color: rgba(8, 24, 47, 0.14);
  color: #08182f;
  background: #ffffff;
}

.ev-link-uline {
  font-weight: 700;
  color: #08182f;
  text-decoration: underline;
  text-decoration-color: #2bc00a;
  text-underline-offset: 3px;
}

.ev-link-uline:hover {
  color: #1b8f00;
}

.ev-link-uline--inv {
  color: #2bc00a;
  text-decoration: none;
}

.ev-link-uline--inv:hover {
  color: #ffffff;
}

/* ——— Cards ——— */
.ev-card {
  background: #faf9f5;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  transition: box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ev-card--lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 24, 47, 0.08);
  color: #08182f;
}

.ev-card--white {
  background: #ffffff;
}

/* ——— Header ——— */
.ev-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 64px;
  background: #08182f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.ev-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  flex-shrink: 0;
}

.ev-logo:hover {
  opacity: 0.85;
  color: inherit;
}

.ev-logo__mark {
  height: 30px;
  width: auto;
  display: block;
}

.ev-logo__word {
  height: 17px;
  width: auto;
  display: block;
}

.ev-nav {
  display: flex;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
}

.ev-nav a {
  color: #c6d4e0;
  white-space: nowrap;
}

.ev-nav a:hover {
  color: #ffffff;
}

.ev-nav a.is-active {
  color: #ffffff;
}

.ev-nav a.is-active:hover {
  color: #2bc00a;
}

.ev-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ev-header__signin {
  font-size: 15px;
  font-weight: 600;
  color: #c6d4e0;
  transition: color 140ms;
}

.ev-header__signin:hover {
  color: #ffffff;
}

.ev-header__phone {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #7e93ac;
  transition: color 140ms;
}

.ev-header__phone:hover {
  color: #ffffff;
}

.ev-wa-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2bc00a;
  transition: background 140ms, color 140ms;
}

.ev-wa-icon:hover {
  background: rgba(43, 192, 10, 0.18);
  color: #2bc00a;
}

.ev-header__cta {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  white-space: nowrap;
}

.ev-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
}

.ev-burger:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ev-mobile-panel {
  display: none;
  background: #08182f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 32px 20px;
}

.ev-mobile-panel.is-open {
  display: block;
}

.ev-mobile-panel a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #c6d4e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-mobile-panel a:hover {
  color: #ffffff;
}

.ev-mobile-panel .ev-btn {
  margin-top: 16px;
  width: 100%;
  height: 44px;
}

/* ——— Hero ——— */
.ev-hero {
  background: #08182f;
  padding: 0;
}

.ev-hero__grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 560px;
}

.ev-hero__copy {
  padding: 88px 0;
}

.ev-hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ev-hero__kicker span:last-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6d4e0;
}

.ev-hero h1 {
  font-family: "Funnel Display", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 22px 0 0;
  max-width: 520px;
  text-wrap: pretty;
}

.ev-hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: #a9bacb;
  margin: 20px 0 0;
  max-width: 470px;
}

.ev-search {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  max-width: 540px;
}

.ev-search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 8px 0 18px;
  background: #ffffff;
  border-radius: 999px;
}

.ev-search__field input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #08182f;
  background: transparent;
  min-width: 0;
}

.ev-search__locate {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #f0f3f6;
  color: #08182f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 140ms;
  flex-shrink: 0;
}

.ev-search__locate:hover {
  background: #e6edf3;
}

.ev-search__submit {
  height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #2bc00a;
  color: #08182f;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 140ms, color 140ms;
}

.ev-search__submit:hover,
.ev-search__submit:focus-visible {
  background: #1b8f00;
  color: #ffffff;
}

.ev-hero__chips {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.ev-hero__note {
  font-size: 13px;
  color: #7e93ac;
  margin-top: 20px;
}

.ev-hero__map {
  position: relative;
  display: block;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ev-hero__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.ev-hero__map-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.ev-hero__map-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #08182f;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(8, 24, 47, 0.35);
}

.ev-hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #08182f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #2bc00a;
}

.ev-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2bc00a;
  display: block;
}

/* ——— Progress ——— */
.ev-progress {
  background: #ffffff;
  border-top: 3px solid #2bc00a;
  padding: 56px 32px 60px;
}

.ev-progress__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ev-progress h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 0;
}

.ev-progress__bar {
  margin-top: 24px;
  height: 10px;
  border-radius: 999px;
  background: #e6edf3;
  overflow: hidden;
}

.ev-progress__bar > span {
  display: block;
  height: 10px;
  background: #2bc00a;
  border-radius: 999px;
}

.ev-progress__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #5e7288;
}

.ev-progress__ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ev-progress__ctas .ev-btn {
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

.ev-city-box {
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  padding: 24px;
  background: #faf9f5;
}

.ev-city-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(8, 24, 47, 0.08);
  color: inherit;
}

.ev-city-row:hover {
  color: #08182f;
}

.ev-city-row:last-child {
  border-bottom: 0;
}

.ev-city-row__name {
  width: 104px;
  font-size: 15px;
  font-weight: 700;
  color: #08182f;
}

.ev-city-row__track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #e6edf3;
  overflow: hidden;
  display: block;
}

.ev-city-row__track > span {
  display: block;
  height: 6px;
  border-radius: 999px;
}

.ev-city-row__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  width: 64px;
  text-align: right;
}

/* ——— Actions ——— */
.ev-actions {
  background: #ffffff;
  padding: 72px 32px 84px;
  border-top: 1px solid rgba(8, 24, 47, 0.08);
}

.ev-actions__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ev-action-card {
  background: #faf9f5;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ev-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 24, 47, 0.08);
  color: #08182f;
}

.ev-action-card h3 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #08182f;
  margin: 6px 0 0;
}

.ev-action-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #41546e;
  margin: 0;
  flex: 1;
}

.ev-action-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #08182f;
}

/* ——— Verification ——— */
.ev-verify {
  background: #ffffff;
  padding: 24px 32px 96px;
}

.ev-verify h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 18px 0 0;
  max-width: 640px;
}

.ev-verify__lead {
  font-size: 19px;
  line-height: 1.6;
  color: #41546e;
  margin: 14px 0 48px;
}

.ev-verify__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ev-step-card {
  background: #faf9f5;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  padding: 28px;
  display: block;
}

.ev-step-card:hover {
  color: #08182f;
  box-shadow: 0 8px 24px rgba(8, 24, 47, 0.06);
}

.ev-step-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ev-step-card__n {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #08182f;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-step-card h3 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #08182f;
  margin: 18px 0 0;
}

.ev-step-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #41546e;
  margin: 10px 0 0;
}

.ev-callout {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-left: 3px solid #2bc00a;
  border-radius: 12px;
}

.ev-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #41546e;
}

/* ——— Activity ——— */
.ev-activity {
  background: #ffffff;
  padding: 0 32px 96px;
}

.ev-activity__inner {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(8, 24, 47, 0.08);
  padding-top: 72px;
}

.ev-activity__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.ev-activity h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 16px 0 0;
}

.ev-activity__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.ev-activity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #faf9f5;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 14px;
}

.ev-activity-item__text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #41546e;
}

.ev-activity-item__text a.name {
  font-weight: 700;
  color: #08182f;
}

.ev-activity-item__text a.name:hover {
  color: #1b8f00;
}

.ev-activity-item__text a.msg {
  color: #41546e;
}

.ev-activity-item__text a.msg:hover {
  color: #08182f;
}

.ev-activity-item__when {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #5e7288;
  white-space: nowrap;
}

/* ——— Trip planner ——— */
.ev-planner {
  background: #ffffff;
  padding: 0 32px 96px;
}

.ev-planner__inner {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(8, 24, 47, 0.08);
  padding-top: 72px;
}

.ev-planner h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 18px 0 40px;
  max-width: 720px;
}

.ev-planner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.ev-planner__form {
  background: #faf9f5;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  padding: 28px;
}

.ev-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ev-label {
  display: block;
}

.ev-label > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #08182f;
  margin-bottom: 7px;
}

.ev-label--inv > span {
  color: #c6d4e0;
  margin-bottom: 8px;
}

.ev-select {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(8, 24, 47, 0.14);
  border-radius: 12px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 600;
  color: #08182f;
}

.ev-select--inv {
  height: 48px;
  border-color: rgba(255, 255, 255, 0.16);
  background: #0f2745;
  color: #ffffff;
}

.ev-range {
  width: 100%;
  accent-color: #2bc00a;
}

.ev-itinerary {
  background: #ffffff;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  padding: 28px;
}

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

.ev-leg {
  display: flex;
  gap: 16px;
}

.ev-leg:hover {
  color: #08182f;
}

.ev-leg__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16px;
}

.ev-leg__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: block;
  margin-top: 5px;
}

.ev-leg__line {
  flex: 1;
  width: 2px;
  background: #e6edf3;
  display: block;
}

.ev-leg__body {
  padding-bottom: 22px;
  flex: 1;
  display: block;
}

.ev-leg__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #08182f;
}

.ev-leg__text {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #41546e;
  margin-top: 4px;
}

.ev-leg__meta {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #5e7288;
  margin-top: 6px;
}

/* ——— Calculator ——— */
.ev-calc {
  background: #08182f;
  padding: 84px 32px;
}

.ev-calc__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ev-calc h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 20px 0 36px;
}

.ev-calc__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.ev-calc__controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ev-tabs {
  display: flex;
  gap: 8px;
}

.ev-tab {
  flex: 1;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  color: #c6d4e0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms, color 140ms, border-color 140ms;
}

.ev-tab.is-active {
  background: #2bc00a;
  border-color: #2bc00a;
  color: #08182f;
}

.ev-calc__note {
  font-size: 13px;
  line-height: 1.6;
  color: #7e93ac;
  margin-top: 10px;
}

.ev-calc__rate-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ev-calc__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ev-calc-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
}

.ev-calc-tile__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9bacb;
}

.ev-calc-tile__value {
  font-family: "Funnel Display", sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.ev-calc-tile__value--green {
  color: #2bc00a;
}

.ev-calc-tile__value--white {
  color: #ffffff;
}

.ev-calc-tile__detail {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: #7e93ac;
  margin-top: 8px;
}

.ev-calc-saving {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(43, 192, 10, 0.4);
  border-radius: 14px;
}

.ev-calc-saving span {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.ev-calc-disclaimer {
  grid-column: span 2;
  font-size: 13px;
  line-height: 1.7;
  color: #7e93ac;
}

/* ——— Shop ——— */
.ev-shop {
  background: #faf9f5;
  padding: 96px 32px;
}

.ev-shop__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.ev-shop h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 16px 0 0;
}

.ev-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ev-product {
  background: #ffffff;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 220ms, transform 220ms;
}

.ev-product:hover {
  color: #08182f;
  box-shadow: 0 8px 24px rgba(8, 24, 47, 0.08);
  transform: translateY(-2px);
}

.ev-product__ph {
  height: 140px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px dashed rgba(8, 24, 47, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ev-product h3 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #08182f;
  margin: 14px 0 0;
}

.ev-product__pay {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 14px;
}

.ev-pay-tag {
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(8, 24, 47, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #08182f;
  white-space: nowrap;
}

/* ——— Learn ——— */
.ev-learn {
  background: #ffffff;
  padding: 96px 32px 80px;
}

.ev-learn__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.ev-learn h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 16px 0 0;
}

.ev-learn__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.ev-video {
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  transition: box-shadow 220ms, transform 220ms;
}

.ev-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 24, 47, 0.08);
  color: #08182f;
}

.ev-video__thumb {
  position: relative;
  height: 168px;
  background: #08182f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-video__len {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #ffffff;
  background: rgba(8, 24, 47, 0.85);
  padding: 3px 8px;
  border-radius: 6px;
}

.ev-video__body {
  padding: 20px;
  display: block;
}

.ev-video__title {
  display: block;
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #08182f;
}

.ev-video__desc {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #5e7288;
  margin-top: 8px;
}

/* ——— FAQ ——— */
.ev-faq {
  background: #ffffff;
  padding: 0 32px 96px;
}

.ev-faq__inner {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(8, 24, 47, 0.08);
  padding-top: 72px;
}

.ev-faq h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 0 0 32px;
}

.ev-faq__list {
  background: #ffffff;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.ev-faq__item {
  border-bottom: 1px solid rgba(8, 24, 47, 0.08);
}

.ev-faq__item:last-child {
  border-bottom: 0;
}

.ev-faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 140ms;
}

.ev-faq__btn:hover {
  background: rgba(8, 24, 47, 0.03);
}

.ev-faq__btn span {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: #08182f;
}

.ev-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ev-faq__item.is-open .ev-faq__panel {
  max-height: 280px;
}

.ev-faq__panel p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #41546e;
}

/* ——— Footer ——— */
.ev-footer {
  background: #08182f;
  padding: 72px 32px 36px;
  color: #a9bacb;
}

.ev-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.ev-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ev-footer__brand-row img:first-child {
  height: 34px;
  width: auto;
  display: block;
}

.ev-footer__brand-row img:last-child {
  height: 19px;
  width: auto;
  display: block;
}

.ev-footer__blurb {
  font-size: 15px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 260px;
}

.ev-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.ev-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.ev-footer__links a {
  font-size: 15px;
  color: #a9bacb;
}

.ev-footer__links a:hover {
  color: #ffffff;
}

.ev-footer__cities {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ev-footer__city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ev-footer__bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ev-footer__legal {
  display: flex;
  gap: 20px;
  font-size: 13px;
  flex-wrap: wrap;
}

.ev-footer__legal a {
  color: #7e93ac;
}

.ev-footer__legal a:hover {
  color: #ffffff;
}

.ev-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ev-footer__social a {
  color: #7e93ac;
}

.ev-footer__social a:hover {
  color: #ffffff;
}

.ev-footer__credit {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #7e93ac;
}

/* ——— Mobile bottom bar ——— */
.ev-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #08182f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 12px 10px;
  gap: 8px;
}

.ev-mobile-bar a {
  flex: 1;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 14px;
  color: #ffffff;
}

.ev-mobile-bar a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.ev-mobile-bar a.is-primary {
  background: #2bc00a;
  color: #08182f;
}

.ev-mobile-bar a.is-primary:hover {
  background: #1b8f00;
  color: #ffffff;
}

.ev-mobile-bar span {
  font-size: 12px;
  font-weight: 700;
}

/* ——— Inner pages ——— */
.ev-page {
  background: #faf9f5;
  min-height: 60vh;
  padding: 64px 32px 96px;
}

.ev-page--white {
  background: #ffffff;
}

.ev-page--navy {
  background: #08182f;
  color: #c6d4e0;
}

.ev-page__inner {
  max-width: 820px;
  margin: 0 auto;
}

.ev-page__inner--wide {
  max-width: 1160px;
}

.ev-page h1 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #08182f;
  margin: 14px 0 0;
  text-wrap: pretty;
}

.ev-page--navy h1 {
  color: #ffffff;
}

.ev-page__lead {
  font-size: 18px;
  line-height: 1.65;
  color: #41546e;
  margin: 14px 0 0;
  max-width: 640px;
}

.ev-page--navy .ev-page__lead {
  color: #a9bacb;
}

.ev-page__content {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.7;
  color: #41546e;
}

.ev-page__content h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #08182f;
  margin: 32px 0 12px;
}

.ev-stub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ev-stub-card {
  background: #ffffff;
  border: 1px solid rgba(8, 24, 47, 0.08);
  border-radius: 18px;
  padding: 24px;
}

.ev-stub-card h3 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #08182f;
  margin: 12px 0 0;
}

.ev-stub-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #41546e;
  margin: 10px 0 0;
}

.ev-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}

.ev-login-form {
  padding: 80px 32px;
  display: flex;
  justify-content: flex-end;
  background: #faf9f5;
}

.ev-login-form__inner {
  width: 100%;
  max-width: 420px;
}

.ev-login-aside {
  background: #08182f;
  padding: 80px 32px;
  display: flex;
  align-items: center;
}

.ev-login-aside__inner {
  max-width: 420px;
}

.ev-login-aside h2 {
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 22px 0 0;
}

.has-mobile-bar {
  padding-bottom: 72px;
}

/* ——— Responsive < 900px ——— */
@media (max-width: 899px) {
  .ev-header__inner {
    gap: 16px;
  }

  .ev-nav,
  .ev-header__actions {
    display: none;
  }

  .ev-burger {
    display: flex;
  }

  .ev-hero__grid,
  .ev-progress__grid,
  .ev-actions__grid,
  .ev-verify__grid,
  .ev-activity__grid,
  .ev-planner__grid,
  .ev-calc__grid,
  .ev-shop__grid,
  .ev-learn__grid,
  .ev-footer__grid,
  .ev-stub-grid,
  .ev-login-grid,
  .ev-field-grid,
  .ev-calc__results {
    grid-template-columns: 1fr;
  }

  .ev-hero h1 {
    font-size: 40px;
  }

  .ev-hero__copy {
    padding: 48px 0 24px;
  }

  .ev-hero__map {
    height: 320px;
    margin-bottom: 40px;
  }

  .ev-search {
    flex-direction: column;
  }

  .ev-search__submit {
    width: 100%;
  }

  .ev-activity__head,
  .ev-shop__head,
  .ev-learn__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ev-product__pay {
    flex-direction: column;
    align-items: flex-start;
  }

  .ev-calc-saving,
  .ev-calc-disclaimer {
    grid-column: span 1;
  }

  .ev-verify h2,
  .ev-planner h2,
  .ev-calc h2,
  .ev-faq h2,
  .ev-shop h2,
  .ev-learn h2,
  .ev-activity h2 {
    font-size: 28px;
  }

  .ev-page h1 {
    font-size: 34px;
  }

  .ev-mobile-bar {
    display: flex;
  }

  body.has-mobile-bar {
    padding-bottom: 72px;
  }
}
