:root {
  color-scheme: dark;
  --bg: #06111b;
  --surface: #0d2233;
  --surface-2: #12314b;
  --surface-3: #173a58;
  --text: #f4f7f8;
  --muted: #b6c7d5;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #00e0c6;
  --accent-2: #ff3d67;
  --accent-3: #ffd43b;
  --accent-4: #2f8cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4fbff;
  --surface: #ffffff;
  --surface-2: #e9f5fb;
  --surface-3: #dceef8;
  --text: #081925;
  --muted: #38505f;
  --line: rgba(14, 23, 27, 0.22);
  --accent: #008f80;
  --accent-2: #d91e4d;
  --accent-3: #bd8500;
  --accent-4: #1267d6;
  --shadow: 0 24px 70px rgba(25, 42, 48, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent-4) 8%, transparent), transparent 540px),
    var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  color: #06110f;
}

:root[data-theme="light"] .brand-mark {
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

:root[data-theme="light"] .icon-btn {
  background: #ffffff;
  border-color: rgba(14, 23, 27, 0.28);
  box-shadow: 0 8px 20px rgba(25, 42, 48, 0.1);
}

.sun,
.moon {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
}

.sun {
  background: var(--accent-3);
}

.moon {
  background: var(--surface);
  transform: translate(7px, -4px);
}

:root[data-theme="light"] .moon {
  display: none;
}

:root[data-theme="light"] .sun {
  background: #d28500;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px) 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--accent-2) 14%, transparent), transparent 34%),
    linear-gradient(310deg, color-mix(in srgb, var(--accent-4) 18%, transparent), transparent 35%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--accent-3);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.btn.primary {
  background: var(--accent);
  color: #06110f;
}

:root[data-theme="light"] .btn.primary {
  color: #ffffff;
}

.btn.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn:hover,
.slider-btn:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

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

.product-showcase {
  position: relative;
  z-index: 1;
  width: min(76vw, 430px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.38));
}

.product-showcase img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.18) contrast(1.05);
}

.quick-card,
.feature-grid article,
.proof-grid article,
.location-grid article,
.sales-slide,
.process-grid article,
.calc-panel,
.result-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-grid article,
.proof-grid article,
.location-grid article,
.process-grid article,
.sales-slide,
.benefit-list article {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.feature-grid article:hover,
.proof-grid article:hover,
.location-grid article:hover,
.process-grid article:hover,
.sales-slide:hover,
.benefit-list article:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
}

.quick-card {
  position: absolute;
  right: 0;
  bottom: 22px;
  z-index: 2;
  width: min(100%, 350px);
  padding: 18px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px);
}

:root[data-theme="light"] .quick-card {
  background: rgba(255, 255, 255, 0.92);
}

.quick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 800;
}

.quick-head strong {
  color: var(--accent);
  font-size: 1.65rem;
}

.quick-card label,
.range-row label,
.contact-form label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.quick-results,
.result-grid,
.feature-grid,
.form-grid {
  display: grid;
  gap: 14px;
}

.quick-results {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

small,
.result-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--bg);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-3);
  font-size: 1.7rem;
}

:root[data-theme="light"] .trust-strip strong {
  color: #7c5200;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 600;
}

.section,
.proof-section,
.location-section,
.sales-slider-section,
.syrup-section,
.process-section,
.starter-section,
.calculator-section,
.closing-section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 34px;
}

.contact-copy {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-grid article {
  padding: 24px;
  box-shadow: none;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--accent);
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.proof-grid,
.location-grid,
.process-grid {
  display: grid;
  gap: 14px;
}

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

.proof-grid article,
.location-grid article,
.process-grid article {
  padding: 22px;
  box-shadow: none;
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-3);
  font-size: 1.1rem;
}

.proof-grid p,
.location-grid p,
.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.location-section {
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  border-block: 1px solid var(--line);
}

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

.location-grid article {
  background: var(--surface);
}

.location-grid h3 {
  color: var(--accent-3);
}

.sales-slider-section {
  border-bottom: 1px solid var(--line);
}

.slider-heading {
  margin-bottom: 24px;
}

.sales-slider {
  display: grid;
  gap: 18px;
}

.slider-track {
  display: grid;
}

.sales-slide {
  grid-area: 1 / 1;
  min-height: 230px;
  padding: clamp(22px, 4vw, 34px);
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.sales-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sales-slide span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.sales-slide p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 20%, transparent);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease;
}

.syrup-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 16%, transparent), transparent 38%),
    linear-gradient(315deg, color-mix(in srgb, var(--accent-4) 16%, transparent), transparent 34%);
  border-top: 1px solid var(--line);
}

.syrup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.syrup-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.syrup-media {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.syrup-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit-list article {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.benefit-list span {
  color: var(--muted);
  line-height: 1.55;
}

.offer-panel {
  position: relative;
  z-index: 1;
  margin: 18px;
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--accent-3) 36%, var(--line));
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-3) 18%, var(--surface)), var(--surface));
  box-shadow: var(--shadow);
}

.offer-panel span {
  color: var(--muted);
  font-weight: 800;
}

.offer-panel strong {
  color: var(--accent-3);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.offer-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.process-section {
  border-bottom: 1px solid var(--line);
}

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

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 900;
}

.starter-section {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 48%, transparent);
}

.starter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.starter-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.starter-copy strong {
  color: var(--accent-3);
}

.starter-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.starter-grid article {
  padding: 18px 20px;
  border-left: 4px solid var(--accent-3);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.starter-grid strong,
.starter-grid span {
  display: block;
}

.starter-grid strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.starter-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.starter-highlight {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 14%, var(--surface)), var(--surface));
  box-shadow: var(--shadow);
}

.starter-highlight span {
  color: var(--muted);
  font-weight: 800;
}

.starter-highlight strong {
  color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.starter-highlight p {
  color: var(--muted);
  line-height: 1.55;
}

.calculator-section {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.calc-panel,
.result-panel,
.contact-form {
  padding: clamp(18px, 3vw, 30px);
}

.finance-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 26px;
  padding: 6px;
  border-radius: 8px;
  background: var(--surface-2);
}

:root[data-theme="light"] .finance-toggle {
  background: #dce5da;
}

.toggle-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

:root[data-theme="light"] .toggle-btn {
  color: #243237;
}

.toggle-btn.is-active {
  background: var(--accent);
  color: #06110f;
}

:root[data-theme="light"] .toggle-btn.is-active {
  color: #ffffff;
}

.range-row {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.range-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

output {
  color: var(--text);
  font-weight: 800;
}

.result-main {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.result-main span {
  color: var(--muted);
  font-weight: 800;
}

.result-main strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.result-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

.result-grid div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-3);
}

:root[data-theme="light"] .result-grid div,
:root[data-theme="light"] .contact-form input:not([type="checkbox"]),
:root[data-theme="light"] .contact-form select,
:root[data-theme="light"] .contact-form textarea {
  background: #f7faf6;
}

.result-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.closing-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--accent-2) 22%, transparent), transparent 42%),
    linear-gradient(300deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.closing-section h2 {
  max-width: 860px;
}

.floating-cta {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 999px;
  background: var(--accent);
  color: #06110f;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 224, 198, 0.25);
  transition: transform 180ms ease;
}

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

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--surface-2);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  margin-top: 14px;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  margin-top: 16px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

#formHint {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

#formHint.success {
  color: var(--accent);
}

#formHint.error {
  color: var(--accent-2);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.legal-note {
  padding: 0 clamp(18px, 5vw, 72px) 28px;
  color: var(--muted);
  text-align: center;
}

.legal-note p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .proof-section,
  .syrup-layout,
  .starter-layout,
  .calculator-shell,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .proof-grid,
  .feature-grid,
  .location-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .closing-section {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .quick-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -24px;
  }

  .quick-results,
  .result-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    width: 280px;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .sales-slide {
    opacity: 1;
    transform: none;
  }
}
