/* =========================================================
   MOVO X — Design System
   Brand: premium mobility, confident not clinical
   ========================================================= */

:root {
  /* Color — Movo brand */
  --ink: #0c0c0c;
  --ink-soft: #1a1a1a;
  --paper: #ffffff;
  --paper-warm: #f7f5f2;
  --brand: #0c0c0c;              /* deep ink — primary content / nav */
  --brand-deep: #000000;
  --brand-light: #fff4ee;         /* warm tint for callouts */
  --accent: #E8510A;              /* Movo orange — primary CTA */
  --accent-deep: #c43e00;
  --gold: #c9a14a;                /* secondary accent — logo dot, badges */
  --gold-deep: #a48232;
  --gray-50: #faf8f4;
  --gray-100: #ece8e1;
  --gray-200: #e5e1db;
  --gray-300: #c8c2b7;
  --gray-500: #8a857c;
  --gray-700: #44413b;
  --gray-900: #1f1d1a;
  --success: #1b7a3e;
  --warn: #b95a00;

  /* Type */
  --font-display: 'Playfair Display', 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  /* Scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 880px;
  --max-w-text: 680px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 1px 1px rgba(10, 22, 40, 0.04);
  --shadow: 0 4px 16px rgba(10, 22, 40, 0.08), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.12), 0 8px 16px rgba(10, 22, 40, 0.06);

  /* Motion */
  --t-fast: 120ms cubic-bezier(0.2, 0.7, 0.3, 1);
  --t: 220ms cubic-bezier(0.2, 0.7, 0.3, 1);
  --t-slow: 420ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
hr { border: 0; height: 1px; background: var(--gray-100); margin: var(--s-7) 0; }
::selection { background: var(--accent); color: white; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 var(--s-4);
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.015em; line-height: 1.2; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.3; }
p { margin: 0 0 var(--s-4); max-width: var(--max-w-text); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-3);
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--gray-700); line-height: 1.5; }
.fine { font-size: 0.82rem; color: var(--gray-500); }

/* =========================================================
   Layout
   ========================================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-7) 0; }
.section-lg { padding: var(--s-10) 0; }
@media (max-width: 720px) {
  .section, .section-lg { padding: var(--s-8) 0; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t), box-shadow var(--t), color var(--t);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink-soft); box-shadow: var(--shadow); }
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: var(--accent-deep); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-200);
}
.btn-ghost:hover { border-color: var(--ink); background: white; }
.btn-link {
  background: transparent;
  color: var(--brand);
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-lg { padding: 20px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-block { display: flex; width: 100%; }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: 0.86rem;
  padding: 10px var(--s-4);
  letter-spacing: -0.005em;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; color: var(--accent); font-weight: 600; }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.nav.scrolled { border-bottom-color: var(--gray-100); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-3) var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--ink);
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .nav-logo img { height: 26px; }
}
.nav-links {
  display: flex;
  gap: var(--s-5);
  margin-left: auto;
  align-items: center;
}
.nav-links a:not(.btn) {
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: color var(--t-fast);
  font-weight: 500;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a.btn-accent { color: #fff; }
.nav-links a.btn-primary { color: var(--paper); }
.nav-phone {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--ink);
}

/* Locale switcher (currency + language) */
.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.82rem;
}
.locale-switch select {
  font: inherit;
  font-size: 0.82rem;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 6px 28px 6px 12px;
  color: var(--ink);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 4l3 3 3-3' stroke='%230c0c0c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--t-fast);
}
.locale-switch select:hover { border-color: var(--ink); }
.locale-switch select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,81,10,0.15); }
.locale-switch .lang-flag {
  font-size: 0.86rem;
  color: var(--gray-700);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 920px) {
  .nav.open .locale-switch { width: 100%; display: flex; justify-content: space-between; gap: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--gray-100); }
  .nav.open .locale-switch select { flex: 1; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: var(--s-5);
    border-top: 1px solid var(--gray-100);
    gap: var(--s-4);
    align-items: flex-start;
  }
  .nav.open .nav-links .btn { width: 100%; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-7);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-5); }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--gray-700); max-width: 520px; }
.hero-ctas {
  display: flex;
  gap: var(--s-3);
  margin: var(--s-6) 0 var(--s-5);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: var(--s-5) var(--s-6);
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--gray-700);
  margin-top: var(--s-5);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--brand-light), var(--paper-warm));
  box-shadow: var(--shadow-lg);
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media-badge {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  background: rgba(10, 22, 40, 0.9);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-media { aspect-ratio: 4 / 3; order: -1; }
}

/* =========================================================
   Video / demo embed
   ========================================================= */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}
.video-wrap video, .video-wrap iframe {
  width: 100%; height: 100%; object-fit: cover; border: 0;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0A1628, #1A2640);
  color: var(--paper); text-align: center;
  cursor: pointer;
  gap: var(--s-4);
}
.video-play {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t), background var(--t);
  box-shadow: 0 10px 40px rgba(232, 90, 26, 0.4);
}
.video-placeholder:hover .video-play { transform: scale(1.08); background: var(--accent-deep); }
.video-play::after {
  content: '';
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

/* =========================================================
   Specs strip
   ========================================================= */
.specs-strip {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-7) 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.spec-cell {
  text-align: center;
  padding: 0 var(--s-3);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.spec-cell:first-child { border-left: 0; }
.spec-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}
.spec-unit { font-size: 0.95rem; color: var(--gray-300); margin-top: var(--s-2); }
.spec-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-top: var(--s-2); }
@media (max-width: 720px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4); }
  .spec-cell { border-left: 0; }
}

/* =========================================================
   Feature pillars
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.pillar {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: var(--s-6);
  transition: transform var(--t), box-shadow var(--t);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--brand-light);
  color: var(--brand-deep);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  font-size: 1.4rem;
}
.pillar h3 { margin-bottom: var(--s-2); }
.pillar p { color: var(--gray-700); margin: 0; font-size: 0.96rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* =========================================================
   How it works
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-6);
  counter-reset: step;
}
.step { counter-increment: step; position: relative; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -0.03em;
}
.step h3 { margin-bottom: var(--s-2); }
.step p { color: var(--gray-700); margin: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: var(--s-5); } }

/* =========================================================
   Comparison table
   ========================================================= */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: var(--s-6);
  font-size: 0.94rem;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.compare-table th, .compare-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.compare-table th {
  background: var(--paper-warm);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-700);
}
.compare-table .col-us { background: rgba(11, 85, 102, 0.04); }
.compare-table .col-us-th {
  background: var(--brand);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-yes { color: var(--success); font-weight: 600; }
.compare-no { color: var(--gray-500); }
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* =========================================================
   Pricing card
   ========================================================= */
.price-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  box-shadow: var(--shadow);
  max-width: 540px;
  margin: 0 auto;
}
.price-headline {
  display: flex; align-items: baseline; gap: var(--s-3);
  margin: var(--s-3) 0 var(--s-2);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.price-currency { font-size: 1.2rem; color: var(--gray-500); }
.price-finance {
  background: var(--brand-light);
  color: var(--brand-deep);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin: var(--s-3) 0 var(--s-5);
  display: inline-block;
}
.price-finance strong { font-weight: 700; }
.price-perks {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
  display: grid;
  gap: var(--s-3);
}
.price-perks li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: 0.96rem;
  color: var(--gray-700);
}
.price-perks li::before {
  content: '';
  flex: none;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5l2.5 2.5L9.5 4' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================================================
   Trust badges
   ========================================================= */
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  align-items: center;
}
.trust-item {
  text-align: center;
  padding: var(--s-4);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: white;
}
.trust-item-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
}
.trust-item-label {
  font-size: 0.8rem;
  color: var(--gray-700);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Founding 50 pilot
   ========================================================= */
.pilot {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-7);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.pilot h2 { color: white; margin-bottom: var(--s-4); }
.pilot p { color: rgba(255,255,255,0.78); }
.pilot-stat {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.pilot-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--s-3);
  letter-spacing: 0.02em;
}
.pilot-progress {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  height: 10px;
  overflow: hidden;
  margin: var(--s-5) 0 var(--s-3);
}
.pilot-progress-bar {
  background: var(--accent);
  height: 100%;
  width: 26%;
  border-radius: var(--radius-pill);
}
@media (max-width: 820px) { .pilot { grid-template-columns: 1fr; padding: var(--s-6); } }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-6);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border: 1px solid var(--gray-100);
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--gray-300); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform var(--t);
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--gray-700);
  line-height: 1.6;
}
.faq-item-body p:last-child { margin-bottom: 0; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-9) 0 var(--s-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-7);
}
.footer h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 var(--s-4);
  color: var(--accent);
}
.footer a { color: rgba(255,255,255,0.75); display: block; padding: 4px 0; font-size: 0.94rem; transition: color var(--t-fast); }
.footer a:hover { color: var(--paper); }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: var(--s-3); }
.footer-tag { color: rgba(255,255,255,0.7); font-size: 0.94rem; line-height: 1.5; max-width: 280px; }
.footer-contact {
  margin-top: var(--s-5);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.footer-contact strong { color: var(--paper); display: block; font-size: 1.05rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { display: inline; padding: 0 var(--s-2); }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Forms
   ========================================================= */
.field { display: grid; gap: 6px; margin-bottom: var(--s-4); }
.field label { font-size: 0.86rem; font-weight: 500; color: var(--gray-700); }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 0.8rem; color: var(--gray-500); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-message { padding: var(--s-4); border-radius: var(--radius); margin-bottom: var(--s-4); font-size: 0.94rem; }
.form-message.success { background: #E8F5EE; color: var(--success); border: 1px solid #B5DFC4; }
.form-message.error { background: #FBEAEA; color: #9A1F1F; border: 1px solid #F2C2C2; }

/* =========================================================
   Product page — buy box
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
.product-gallery { position: relative; }
.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
  margin-bottom: var(--s-3);
}
.product-gallery-main img, .product-gallery-main video { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
.product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-warm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.product-thumb.active { border-color: var(--brand); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.buy-box { position: sticky; top: 88px; }
.buy-box .badges {
  display: inline-flex;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.badge {
  background: var(--brand-light);
  color: var(--brand-deep);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge.accent { background: rgba(232, 90, 26, 0.12); color: var(--accent-deep); }
.buy-box h1 { font-size: clamp(2rem, 3.6vw, 2.6rem); margin-bottom: var(--s-3); }
.buy-box-price {
  display: flex; align-items: baseline; gap: var(--s-3);
  margin: var(--s-4) 0 var(--s-2);
}
.buy-box-price .amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.buy-box-price .crncy { color: var(--gray-500); font-size: 1rem; }
.buy-box-finance {
  font-size: 0.94rem;
  color: var(--brand-deep);
  margin-bottom: var(--s-5);
}
.buy-box-finance a { text-decoration: underline; text-underline-offset: 3px; }
.buy-box-cta { margin: var(--s-5) 0 var(--s-4); }
.buy-box-meta {
  border-top: 1px solid var(--gray-100);
  padding-top: var(--s-5);
  margin-top: var(--s-5);
  display: grid;
  gap: var(--s-3);
  font-size: 0.92rem;
  color: var(--gray-700);
}
.buy-box-meta div { display: flex; gap: var(--s-3); align-items: flex-start; }
.buy-box-meta strong { color: var(--ink); font-weight: 600; }
@media (max-width: 920px) {
  .product-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .buy-box { position: static; }
}

/* =========================================================
   Spec table
   ========================================================= */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.spec-table th, .spec-table td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.94rem;
}
.spec-table th {
  background: var(--paper-warm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  width: 40%;
}
.spec-table td { color: var(--gray-700); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* =========================================================
   Callout / banner
   ========================================================= */
.callout {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: var(--s-5);
}
.callout h3 { color: var(--brand-deep); margin-bottom: var(--s-2); }
.callout p { color: var(--gray-700); margin: 0; max-width: none; }

/* =========================================================
   Misc utility
   ========================================================= */
.center { text-align: center; }
.muted { color: var(--gray-500); }
.flex { display: flex; gap: var(--s-3); }
.flex-wrap { flex-wrap: wrap; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--s-6); }
.mb-6 { margin-bottom: var(--s-6); }
.bg-warm { background: var(--paper-warm); }
.bg-paper { background: var(--paper); }
.bg-white { background: white; }
.divider { height: 1px; background: var(--gray-100); margin: var(--s-7) 0; }

/* =========================================================
   Financing partner card — Synchrony "Apply Now" treatment
   ========================================================= */
.syf-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-6);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  max-width: 560px;
  position: relative;
  overflow: hidden;
}
.syf-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #FFC60B;
}
.syf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0B3D91 0%, #0B3D91 60%, #FFC60B 60%, #FFC60B 100%);
}
.syf-card-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: center;
}
.syf-card-logo {
  width: 160px;
  height: 30px;
  flex: none;
}
.syf-card-logo svg, .syf-card-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.syf-card-body h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.syf-card-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.syf-card-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
  flex: none;
}
.syf-card-meta {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--gray-100);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.syf-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.syf-card-meta strong { color: var(--ink); font-weight: 600; }
.syf-card-meta .flag { font-style: normal; }
@media (max-width: 540px) {
  .syf-card-inner { grid-template-columns: 1fr; text-align: center; gap: var(--s-4); }
  .syf-card-logo { margin: 0 auto; }
  .syf-card-arrow { display: none; }
}

/* Compact version for product buy-box */
.syf-card-compact {
  padding: var(--s-4);
}
.syf-card-compact .syf-card-inner { grid-template-columns: auto 1fr; }
.syf-card-compact .syf-card-arrow { display: none; }
.syf-card-compact .syf-card-logo { width: 120px; height: 22px; }
.syf-card-compact .syf-card-body h3 { font-size: 0.95rem; }
.syf-card-compact .syf-card-body p { font-size: 0.78rem; }

/* =========================================================
   QR widget — scan to finance
   ========================================================= */
.qr-widget {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-5);
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.qr-widget-code {
  width: 140px;
  height: 140px;
  padding: 8px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  flex: none;
}
.qr-widget-code svg { width: 100%; height: 100%; }
.qr-widget-text h3 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
}
.qr-widget-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.qr-widget-text .qr-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
@media (max-width: 540px) {
  .qr-widget {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* =========================================================
   Landing pages (Google Ads / SEM)
   Stripped-down focused layout for maximum conversion
   ========================================================= */
.lp-nav .nav-inner {
  padding: var(--s-3) var(--s-5);
}
.lp-nav .nav-links { gap: var(--s-4); }
.lp-nav .nav-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.lp-hero {
  padding: var(--s-9) 0 var(--s-7);
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
}
.lp-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: var(--s-4);
  max-width: 920px;
}
.lp-hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 720px;
  margin-bottom: var(--s-6);
}
.lp-hero .price-line {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: var(--s-3);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lp-hero .price-line .from-amt {
  color: var(--accent);
}
.lp-hero .lp-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--s-5);
}
.lp-hero .lp-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.lp-hero .lp-phone:hover { text-decoration: underline; }
.lp-trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.lp-trust-bar > div {
  text-align: center;
  font-size: 0.86rem;
  color: var(--gray-700);
}
.lp-trust-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
@media (max-width: 720px) {
  .lp-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .lp-trust-bar > div:nth-child(5) { grid-column: 1 / -1; }
}

.lp-usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.lp-usp > div {
  padding: var(--s-5);
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}
.lp-usp h3 { margin-bottom: var(--s-3); font-size: 1.1rem; }
.lp-usp p { color: var(--gray-700); font-size: 0.96rem; margin: 0; }
@media (max-width: 820px) { .lp-usp { grid-template-columns: 1fr; } }

.lp-cta {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6);
  text-align: center;
}
.lp-cta h2 { color: white; margin-bottom: var(--s-4); }
.lp-cta p { color: rgba(255,255,255,0.8); margin: 0 auto var(--s-5); max-width: 540px; }
.lp-cta .price-callout {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}

/* =========================================================
   Sticky mobile CTA (CRO)
   Appears only on mobile, only after scrolling past hero.
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  align-items: center;
  gap: var(--s-3);
  padding: 12px 14px env(safe-area-inset-bottom, 14px);
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -8px 24px rgba(10,22,40,0.06);
  transform: translateY(100%);
  transition: transform 280ms cubic-bezier(0.2,0.7,0.3,1);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-price { flex: 1; min-width: 0; }
.mobile-cta-price .amt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.mobile-cta-price .sub {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 3px;
}
.mobile-cta .btn { flex: none; padding: 12px 18px; font-size: 0.94rem; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  /* Avoid covering content at bottom of page */
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* =========================================================
   Trust row — small icons under hero
   ========================================================= */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  justify-content: center;
  padding: var(--s-4) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--paper-warm);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.trust-bar .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

/* =========================================================
   Skip link / a11y
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Print
   ========================================================= */
@media print {
  .nav, .footer, .announce, .btn { display: none !important; }
  body { background: white; color: black; }
}
