:root {
  --green-dark: #315917;
  --green: #478221;
  --black: #000000;
  --charcoal: #1a1a1a;
  --off-white: #f1fbf4;
  --muted: rgba(241, 251, 244, 0.72);
  --line: rgba(241, 251, 244, 0.12);
  --glass: rgba(26, 26, 26, 0.68);
  --glow: rgba(71, 130, 33, 0.48);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--off-white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

::selection {
  color: var(--black);
  background: var(--green);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #030503;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(241, 251, 244, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.loader-mark::before {
  content: "E";
  color: var(--off-white);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.loader-mark span {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--green);
  animation: spin 1.1s linear infinite;
}

.loader-mark span:last-child {
  inset: 8px;
  border-top-color: rgba(241, 251, 244, 0.62);
  animation-duration: 1.7s;
  animation-direction: reverse;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(241, 251, 244, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    top 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(0, 0, 0, 0.78);
  border-color: rgba(71, 130, 33, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-shell {
  width: 198px;
  height: 52px;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(241, 251, 244, 0.14);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(71, 130, 33, 0.2);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--off-white);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(71, 130, 33, 0.96), rgba(49, 89, 23, 0.78)),
    #315917;
  border: 1px solid rgba(241, 251, 244, 0.18);
  border-radius: 8px;
  box-shadow: 0 0 26px rgba(71, 130, 33, 0.36);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: rgba(241, 251, 244, 0.62);
  font-size: 0.72rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(241, 251, 244, 0.72);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--off-white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--black);
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(241, 251, 244, 0.2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 148px max(22px, calc((100vw - 1160px) / 2)) 34px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 22%, rgba(71, 130, 33, 0.22), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(241, 251, 244, 0.08), transparent 28%),
    linear-gradient(135deg, #030503 0%, #0d140b 42%, #000 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 32%, rgba(71, 130, 33, 0.16) 42%, transparent 52% 100%),
    linear-gradient(180deg, transparent 0 62%, rgba(0, 0, 0, 0.72) 100%);
  animation: sheen 8s ease-in-out infinite;
}

.hero-grid,
.investor-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(241, 251, 244, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 251, 244, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 66%, transparent);
}

.hero-media {
  position: absolute;
  right: max(-60px, calc((100vw - 1280px) / 2));
  bottom: 4vh;
  z-index: -1;
  width: min(760px, 62vw);
  opacity: 0.9;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.55));
  transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 8px), 0);
  transition: transform 0.15s ease-out;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 500px;
  gap: 38px;
  align-items: center;
  min-height: calc(100svh - 218px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #a6ee78;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(2.95rem, 6.8vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 32px;
  color: rgba(241, 251, 244, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.6;
}

.hero-actions,
.booking-actions,
.investor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button svg,
.nav-cta svg,
.trust-strip svg,
.feature-panel svg,
.advantage-card svg,
.footer-actions svg,
.floating-whatsapp svg,
.whatsapp-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.whatsapp-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 1.9 131.6 1.9 254c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 1.9 131.6 1.9 254c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

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

.button-primary {
  color: var(--off-white);
  background:
    linear-gradient(135deg, var(--green), var(--green-dark)),
    var(--green);
  box-shadow: 0 14px 36px rgba(71, 130, 33, 0.3);
}

.button-primary:hover {
  box-shadow: 0 0 0 5px rgba(71, 130, 33, 0.16), 0 22px 48px rgba(71, 130, 33, 0.34);
}

.button-ghost {
  color: var(--off-white);
  background: rgba(241, 251, 244, 0.06);
  border-color: rgba(241, 251, 244, 0.16);
}

.button-ghost:hover {
  border-color: rgba(71, 130, 33, 0.72);
  box-shadow: 0 0 28px rgba(71, 130, 33, 0.16);
}

.button-dark {
  color: var(--off-white);
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(241, 251, 244, 0.12);
}

.booking-card,
.feature-panel,
.calculator-card,
.review-card,
.cta-panel {
  border: 1px solid rgba(241, 251, 244, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(241, 251, 244, 0.08), rgba(241, 251, 244, 0.03)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.booking-card {
  position: relative;
  z-index: 5;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(241, 251, 244, 0.11), rgba(241, 251, 244, 0.035)),
    rgba(8, 12, 7, 0.84);
  border-color: rgba(166, 238, 120, 0.28);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(71, 130, 33, 0.18),
    0 0 54px rgba(71, 130, 33, 0.18);
  animation: floatCard 12s ease-in-out infinite;
}

.booking-card:focus-within {
  z-index: 30;
  animation-play-state: paused;
}

.booking-card.has-open-picker {
  z-index: 60;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(71, 130, 33, 0.62), transparent 32%, rgba(241, 251, 244, 0.12));
  opacity: 0.55;
}

.booking-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 26%, rgba(166, 238, 120, 0.035) 38%, transparent 50% 100%);
}

.booking-card > * {
  position: relative;
  z-index: 1;
}

.booking-card .picker-parent-open {
  z-index: 120;
}

.booking-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: rgba(241, 251, 244, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.booking-card__head strong {
  color: var(--off-white);
  letter-spacing: 0;
  text-transform: none;
}

.booking-card label,
.calculator-controls label {
  display: grid;
  gap: 9px;
  margin-bottom: 15px;
  color: rgba(241, 251, 244, 0.82);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0;
}

.booking-card input,
.booking-card select,
.subscribe-form input,
.distance-input input {
  width: 100%;
  color: var(--off-white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(241, 251, 244, 0.12);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.booking-card input {
  height: 52px;
  padding: 0 15px;
}

.booking-card select {
  height: 50px;
  padding: 0 42px 0 14px;
  appearance: none;
  cursor: pointer;
  font-size: 0.9rem;
  color-scheme: dark;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(241, 251, 244, 0.7) 50%),
    linear-gradient(135deg, rgba(241, 251, 244, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.premium-picker {
  position: relative;
  z-index: 5;
}

.premium-picker.is-open {
  z-index: 140;
}

.picker-trigger {
  width: 100%;
  height: 52px;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  gap: 10px;
  align-items: center;
  padding: 0 14px;
  color: var(--off-white);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(241, 251, 244, 0.08), rgba(241, 251, 244, 0.035)),
    rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(241, 251, 244, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.picker-trigger:hover,
.premium-picker.is-open .picker-trigger {
  background:
    linear-gradient(180deg, rgba(71, 130, 33, 0.16), rgba(241, 251, 244, 0.04)),
    rgba(0, 0, 0, 0.5);
  border-color: rgba(71, 130, 33, 0.66);
  box-shadow: 0 0 0 4px rgba(71, 130, 33, 0.12);
}

.picker-trigger svg {
  width: 17px;
  height: 17px;
  color: #a6ee78;
}

.picker-trigger span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
}

.picker-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 160;
  width: min(330px, 86vw);
  padding: 14px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  background:
    linear-gradient(180deg, rgba(241, 251, 244, 0.11), rgba(241, 251, 244, 0.045)),
    rgba(4, 7, 4, 0.96);
  border: 1px solid rgba(166, 238, 120, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56), 0 0 42px rgba(71, 130, 33, 0.18);
  backdrop-filter: blur(26px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.booking-row label:last-child .picker-popover {
  right: 0;
  left: auto;
  transform-origin: top right;
}

.premium-picker.is-open .picker-popover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.calendar-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-head strong {
  text-align: center;
  font-size: 0.92rem;
}

.calendar-head button,
.calendar-grid button,
.time-grid button,
.cab-options button {
  color: var(--off-white);
  background: rgba(241, 251, 244, 0.06);
  border: 1px solid rgba(241, 251, 244, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease,
    color 0.16s ease;
}

.calendar-head button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.calendar-head button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.calendar-head svg {
  width: 16px;
  height: 16px;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: rgba(241, 251, 244, 0.46);
  text-align: center;
  font-size: 0.66rem;
  font-weight: 900;
}

.calendar-grid button {
  aspect-ratio: 1;
  font-size: 0.78rem;
  font-weight: 850;
}

.calendar-grid button:hover,
.time-grid button:hover,
.cab-options button:hover {
  transform: translateY(-1px);
  border-color: rgba(71, 130, 33, 0.66);
  background: rgba(71, 130, 33, 0.22);
}

.calendar-grid button.is-selected,
.time-grid button.is-selected,
.cab-options button.is-selected {
  color: #071006;
  background: #a6ee78;
  border-color: #a6ee78;
  box-shadow: 0 0 18px rgba(71, 130, 33, 0.42);
}

.calendar-grid button.is-muted {
  opacity: 0.32;
}

.calendar-grid button:disabled {
  cursor: not-allowed;
  opacity: 0.18;
}

.time-popover {
  width: min(300px, 86vw);
}

.time-grid {
  max-height: 246px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--green) rgba(241, 251, 244, 0.08);
}

.time-grid button {
  min-height: 38px;
  font-size: 0.82rem;
  font-weight: 850;
}

.cab-popover {
  width: min(420px, 86vw);
}

.cab-options {
  display: grid;
  gap: 9px;
}

.cab-options button {
  min-height: 72px;
  display: grid;
  gap: 6px;
  padding: 13px;
  text-align: left;
}

.cab-options strong,
.cab-options small {
  display: block;
}

.cab-options strong {
  font-size: 0.92rem;
}

.cab-options small {
  color: rgba(241, 251, 244, 0.58);
  font-size: 0.76rem;
  line-height: 1.35;
}

.cab-options button.is-selected small {
  color: rgba(7, 16, 6, 0.72);
}

.booking-card input,
.booking-card select {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
}

.booking-card input[type="date"] {
  color-scheme: dark;
}

.booking-card input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(52deg);
  opacity: 0.82;
}

.field-control {
  position: relative;
}

.field-control svg {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 1;
  width: 17px;
  height: 17px;
  color: #a6ee78;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-control input,
.field-control select {
  padding-left: 42px;
}

.booking-card input:focus,
.booking-card select:focus,
.subscribe-form input:focus,
.distance-input input:focus {
  border-color: rgba(71, 130, 33, 0.85);
  box-shadow: 0 0 0 4px rgba(71, 130, 33, 0.14);
  background: rgba(0, 0, 0, 0.54);
}

.booking-card input::placeholder,
.subscribe-form input::placeholder {
  color: rgba(241, 251, 244, 0.4);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-actions .button {
  flex: 1;
}

.booking-card.has-open-picker .booking-actions {
  z-index: 0;
}

.booking-card.has-open-picker .booking-actions .button {
  pointer-events: none;
}

.booking-card .button:hover {
  transform: translateY(-1px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px auto 0;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  color: rgba(241, 251, 244, 0.74);
  background: rgba(241, 251, 244, 0.055);
  border: 1px solid rgba(241, 251, 244, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.trust-strip svg {
  color: #a6ee78;
}

.section {
  padding: 108px max(22px, calc((100vw - 1160px) / 2));
}

.section-intro {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(49, 89, 23, 0.08)),
    var(--black);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.cta-panel h2,
.investor-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.feature-panel p,
.cta-panel p,
.investor-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -48% -20%;
  height: 90px;
  background: radial-gradient(closest-side, rgba(71, 130, 33, 0.28), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-panel:hover,
.advantage-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(71, 130, 33, 0.45);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 34px rgba(71, 130, 33, 0.16);
}

.feature-panel:hover::after {
  opacity: 1;
}

.feature-panel svg,
.advantage-card svg {
  color: #a6ee78;
}

.feature-panel svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
}

.feature-panel h3 {
  font-size: 1.2rem;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(49, 89, 23, 0.12), rgba(0, 0, 0, 0.92)),
    #070907;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.advantage-card {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(241, 251, 244, 0.055);
  border: 1px solid rgba(241, 251, 244, 0.1);
  border-radius: 8px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.advantage-card span {
  font-weight: 850;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(241, 251, 244, 0.1);
  border-block: 1px solid rgba(241, 251, 244, 0.1);
}

.stat {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(71, 130, 33, 0.18), transparent 44%),
    #050805;
}

.stat strong {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1;
}

.stat span {
  margin-top: 10px;
  color: rgba(241, 251, 244, 0.62);
  font-weight: 750;
}

.calculator-section {
  background:
    linear-gradient(180deg, #000, rgba(49, 89, 23, 0.08) 54%, #000),
    var(--black);
}

.calculator-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  align-items: stretch;
}

.calculator-controls,
.calculator-results {
  min-width: 0;
}

.calculator-controls {
  display: grid;
  align-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(241, 251, 244, 0.09);
  border-radius: 8px;
}

.calculator-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: #a6ee78;
  background: rgba(71, 130, 33, 0.14);
  border: 1px solid rgba(71, 130, 33, 0.28);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.calculator-badge svg {
  width: 16px;
  height: 16px;
}

.distance-input {
  position: relative;
}

.distance-input input {
  height: 58px;
  padding: 0 68px 0 18px;
  font-size: 1.35rem;
  font-weight: 900;
}

.distance-input span {
  position: absolute;
  right: 18px;
  top: 50%;
  color: rgba(241, 251, 244, 0.55);
  transform: translateY(-50%);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.emission-note {
  margin: 14px 0 0;
  color: rgba(241, 251, 244, 0.54);
  font-size: 0.82rem;
  line-height: 1.65;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-tile {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(241, 251, 244, 0.1);
  border-radius: 8px;
}

.result-main {
  background:
    radial-gradient(circle at 80% 0, rgba(71, 130, 33, 0.25), transparent 42%),
    rgba(0, 0, 0, 0.38);
  border-color: rgba(71, 130, 33, 0.34);
}

.result-tile > span,
.result-tile small {
  display: block;
  color: rgba(241, 251, 244, 0.62);
  font-size: 0.86rem;
}

.result-tile small {
  margin-top: 10px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.calculator-results strong {
  display: block;
  margin-top: 12px;
  color: var(--off-white);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1;
}

.calculator-results strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
}

.result-main strong {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.saving-meter {
  grid-column: 1 / -1;
  min-height: auto;
  height: 16px;
  padding: 0;
  overflow: hidden;
}

.saving-meter span {
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #a6ee78);
  box-shadow: 0 0 26px rgba(71, 130, 33, 0.42);
  transition: width 0.3s ease;
}

.testimonials-section {
  padding-inline: 0;
  overflow: hidden;
}

.testimonials-section .section-heading {
  padding-inline: 22px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 20px 16px 32px;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.review-card {
  width: 330px;
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.review-card p {
  color: rgba(241, 251, 244, 0.76);
  line-height: 1.65;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-head > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 950;
  background: var(--off-white);
  border-radius: 50%;
}

.review-head strong,
.review-head small {
  display: block;
}

.review-head small {
  color: #a6ee78;
  font-weight: 900;
}

.stars {
  color: #a6ee78;
  letter-spacing: 0.12em;
  text-shadow: 0 0 12px rgba(71, 130, 33, 0.5);
}

.cta-section {
  padding: 92px max(22px, calc((100vw - 1160px) / 2)) 116px;
  background:
    linear-gradient(145deg, rgba(71, 130, 33, 0.16), transparent 38%),
    #050705;
}

.cta-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 7vw, 70px);
  text-align: center;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 46px max(22px, calc((100vw - 1160px) / 2)) 74px;
  color: rgba(241, 251, 244, 0.72);
  background: #020302;
  border-top: 1px solid rgba(241, 251, 244, 0.1);
}

.site-footer p {
  max-width: 320px;
  line-height: 1.7;
}

.site-footer .brand-logo-shell {
  width: 228px;
  height: 60px;
}

.footer-links,
.footer-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong,
.footer-actions strong {
  color: var(--off-white);
}

.footer-links a,
.footer-actions a {
  width: fit-content;
  color: rgba(241, 251, 244, 0.68);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-actions a:hover {
  color: var(--off-white);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(241, 251, 244, 0.06);
  border: 1px solid rgba(241, 251, 244, 0.1);
  border-radius: 8px;
}

.copyright {
  position: absolute;
  left: max(22px, calc((100vw - 1160px) / 2));
  bottom: 24px;
  margin: 0;
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 16px;
  color: var(--off-white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: 1px solid rgba(241, 251, 244, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(71, 130, 33, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.investor-page {
  background:
    radial-gradient(circle at 50% 20%, rgba(71, 130, 33, 0.22), transparent 36%),
    #000;
}

.investor-main {
  min-height: 100svh;
}

.investor-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 140px max(22px, calc((100vw - 1160px) / 2)) 64px;
  overflow: hidden;
}

.charging-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.charge-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(71, 130, 33, 0.32);
  border-radius: 50%;
  animation: pulseRing 3.2s ease-out infinite;
}

.charge-ring-delay {
  animation-delay: 1.4s;
}

.charge-car {
  position: relative;
  width: min(410px, 78vw);
  height: 112px;
  background:
    linear-gradient(180deg, rgba(241, 251, 244, 0.18), transparent 26%),
    linear-gradient(135deg, #111, #315917 54%, #050705);
  border: 1px solid rgba(241, 251, 244, 0.14);
  border-radius: 8px 8px 20px 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58), 0 0 54px rgba(71, 130, 33, 0.25);
}

.charge-car::before {
  content: "";
  position: absolute;
  left: 78px;
  right: 86px;
  top: -52px;
  height: 66px;
  background: linear-gradient(135deg, rgba(241, 251, 244, 0.22), rgba(71, 130, 33, 0.28));
  border: 1px solid rgba(241, 251, 244, 0.14);
  border-radius: 70px 70px 8px 8px;
}

.charge-car span {
  position: absolute;
  bottom: -24px;
  width: 54px;
  height: 54px;
  background: #050505;
  border: 8px solid #202620;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(241, 251, 244, 0.08);
}

.charge-car span:first-child {
  left: 58px;
}

.charge-car span:last-child {
  right: 62px;
}

.charge-cable {
  position: absolute;
  right: 18%;
  bottom: 130px;
  width: 150px;
  height: 80px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  border-radius: 0 0 42px 0;
  filter: drop-shadow(0 0 12px rgba(71, 130, 33, 0.6));
}

.charge-station {
  position: absolute;
  right: 6%;
  bottom: 160px;
  width: 82px;
  height: 150px;
  display: grid;
  place-items: center;
  color: #a6ee78;
  background: rgba(241, 251, 244, 0.06);
  border: 1px solid rgba(241, 251, 244, 0.16);
  border-radius: 8px;
  box-shadow: 0 0 36px rgba(71, 130, 33, 0.18);
}

.investor-copy {
  max-width: 650px;
}

.investor-copy h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 34px 0 12px;
}

.subscribe-form input {
  min-height: 54px;
  padding: 0 16px;
}

.form-note {
  min-height: 24px;
  color: rgba(241, 251, 244, 0.62);
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sheen {
  0%,
  100% {
    transform: translateX(-14%);
    opacity: 0.56;
  }
  50% {
    transform: translateX(14%);
    opacity: 0.9;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.72);
    opacity: 0.84;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

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

  .site-nav.is-open {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(241, 251, 244, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(22px);
  }

  .site-nav.is-open a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(241, 251, 244, 0.08);
  }

  .hero {
    padding-top: 128px;
  }

  .hero-content,
  .split-layout,
  .calculator-card,
  .investor-hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: 92vw;
    right: -24vw;
    bottom: 12vh;
    opacity: 0.38;
  }

  .hero-content {
    min-height: auto;
  }

  .booking-card {
    max-width: 560px;
  }

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

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

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

  .copyright {
    position: static;
    grid-column: 1;
  }

  .charging-visual {
    order: 2;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-shell {
    width: 152px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-inline: 18px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .hero-actions,
  .booking-actions,
  .investor-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .booking-row,
  .advantage-grid,
  .calculator-results,
  .stats-band,
  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section {
    padding-inline: 18px;
    padding-block: 72px;
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .trust-strip span {
    width: 100%;
  }

  .calculator-card,
  .booking-card {
    padding: 18px;
  }

  .review-card {
    width: 286px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .investor-hero {
    padding-inline: 18px;
  }

  .charge-ring {
    width: 260px;
    height: 260px;
  }
}
