:root {
  --bg: #f4f5f3;
  --surface: #ffffff;
  --panel: #edf1ef;
  --panel-strong: #e7eeeb;
  --panel-alt: #e8ede9;
  --text: #111111;
  --muted: #4a5451;
  --line: #d7ddda;
  --accent: #0d8f6f;
  --accent-dark: #0a6e56;
  --buy-text: #ffffff;
  --max-width: 1120px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

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

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

.wrap {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

/* ── Sticky nav ── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 245, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  transition: transform 0.22s ease;
}

.site-nav.visible {
  transform: translateY(0);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  gap: 24px;
}

.site-nav-logo {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.site-nav-link {
  padding: 6px 11px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.site-nav-link:hover {
  color: var(--text);
  background: var(--panel);
}

.site-nav-order {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav-order:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* ── Hero ── */

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px 0 52px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.h1-sub {
  margin: 10px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-image {
  padding: 18px;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
}

/* ── Sale block ── */

.sale-block-c {
  display: inline-block;
  margin-top: 28px;
  padding: 18px 20px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
  text-decoration: none;
  color: inherit;
}

.sale-block-c:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(13, 143, 111, 0.15);
  transform: translateY(-1px);
}

.eyebrow-card {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.sale-block-c .row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.sale-block-c .sale {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
}

.sale-block-c .retail {
  font-size: 1.02rem;
  text-decoration: line-through;
  color: var(--muted);
}

.sale-block-c .perks {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sale-cta-hint {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.01em;
}

.sale-cta-strong {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* ── Spec strip ── */

.spec-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 0;
  /* symmetric — was 14px 0 32px */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.spec-item {
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.spec-div {
  color: var(--line);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

/* ── Card base ── */

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ── Section eyebrow ── */

.section-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-eyebrow.standalone {
  display: block;
  margin-bottom: 16px;
}

/* ── Section title ── */

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  line-height: 1.1;
}

/* ── Content sections ── */

.content-section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.section-alt {
  background: var(--panel-alt);
  border-radius: var(--radius);
  padding: 40px 36px;
  border-top: none;
}

/* Space above every section-alt that follows another section */
.content-section+.content-section.section-alt,
.content-section.section-alt+.content-section.section-alt {
  margin-top: 20px;
}

/* Safety: never show a top border on section-alt cards */
.content-section.section-alt {
  border-top: none;
}

.section-body {
  padding: 18px 20px;
}

.section-body p {
  margin: 0 0 12px;
}

.section-body p:last-child {
  margin-bottom: 0;
}

/* ── Why upgrade — 2-col layout ── */

/* Override .card's panel background — table should be white */
.opt2 {
  padding: 0;
  background: var(--surface);
}

/* Two-column grid — divider is a real border, not a gradient hack */
.opt2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
}

.opt2-col:first-child {
  padding: 12px 28px 12px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.opt2-col:last-child {
  padding: 12px 24px 12px 28px;
  display: flex;
  flex-direction: column;
}

.opt2 .row-common {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: 54px;
  padding: 0;
  flex: 1;

}

.opt2 .row-common+.row-common {
  border-top: 1px solid var(--line);
}

.opt2 .left-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  justify-self: center;
}

.opt2 .left-text {
  font-weight: 700;
  font-size: 0.97rem;
  white-space: normal;
  color: var(--text);
}

.opt2 .not-text {
  text-align: center;
  color: #6f7875;   /* was #9aa39f */
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.opt2 .right-text {
  text-align: left;
  color: #55605c;
  font-size: 0.92rem;
  white-space: normal;
}



/* ── Feature groups ── */

.feature-group {
  margin-bottom: 36px;
}

.feature-group:last-child {
  margin-bottom: 0;
}

.feature-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-group-label::before,
.feature-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.feature-group-label span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Card grids ── */

.card-grid {
  display: grid;
  gap: 14px;
}

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

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.2;
}

.info-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

/* ── Feature lists ── */

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.feature-list li {
  margin: 0 0 8px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-more {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.3s ease, margin-top 0.2s ease;
}

.feature-more.open {
  max-height: 600px;
  margin-top: 8px;
}

.expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-dark);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 10px 0 0;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
}

.expand-btn:hover .expand-label {
  text-decoration: underline;
}

.expand-icon {
  font-size: 0.75rem;
}

/* ── Fleet / body text ── */

.difference-card {
  padding: 22px 24px;
}

.body-list {
  margin: 10px 0 14px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.body-list li {
  margin-bottom: 8px;
}

.body-list li:last-child {
  margin-bottom: 0;
}

/* ── Utilities ── */

.inline-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.inline-link:hover {
  text-decoration: underline;
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 28px 0 36px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer-links {
  display: flex;
  gap: 20px;
}

.site-footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.site-footer-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 36px;
  }

  .three-up,
  .two-up {
    grid-template-columns: 1fr;
  }

  .section-alt {
    padding: 32px 20px;
    border-radius: 14px;
  }

  .opt2-cols {
    grid-template-columns: 1fr;
  }

  .opt2-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px;
  }

  .opt2-col:last-child {
    padding: 12px 20px;
  }

  .opt2-col+.opt2-col {
    border-left: none;
    margin-left: 0;
    margin-top: 0;
  }

  .opt2 .row-common {
    grid-template-columns: 14px minmax(0, 1fr) 52px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 54px;
  }

  .site-nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-image {
    padding: 14px;
  }

  .spec-strip {
    gap: 2px;
  }

  .spec-item {
    padding: 4px 10px;
    font-size: 0.78rem;
  }

  .spec-div {
    display: none;
  }

  .opt2 {
    padding: 0;
  }

  .opt2 .row-common {
    grid-template-columns: 12px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    min-height: unset;
    padding: 12px 0;
  }

  .opt2 .not-text,
  .opt2 .right-text {
    grid-column: 2;
    text-align: left;
  }

  .opt2 .not-text {
    display: inline;
    margin-right: 4px;
  }

  .opt2 .right-text {
    display: inline;
    font-size: 0.88rem;
  }

  .opt2 .not-text::after {
    content: ' ';
  }

  .site-nav-logo {
    font-size: 0.82rem;
  }
}