/* ════════════════════════════════════════════════════════════════
   RIDEGOA — LANDING PAGE STYLES
   Same brand tokens as the main site (style.css) — off-white bg,
   dark-gold/teal text accents, bright-gold/teal for solid fills.
   ════════════════════════════════════════════════════════════════ */

:root{
  --bg:#f7f5f0;
  --bg-soft:#efece4;
  --surface:#fbfaf7;
  --surface-2:#eeece3;
  --line:#b8ad94;
  --gold:#8a5e26;
  --gold-dim:#c9a876;
  --gold-fill:#d3a75c;
  --teal:#146e66;
  --teal-fill:#2fb3a6;
  --text:#211d17;
  --text-dim:#5c574d;
  --text-faint:#8f8a7d;
  --ink:#08080a;
  --radius:2px;
  --wrap:720px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  padding-bottom:78px; /* room for sticky mobile CTA bar */
}
h1,h2,h3{
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  letter-spacing:-0.01em;
}
.mono{font-family:'JetBrains Mono',monospace;}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px;}
section{padding:56px 0;}

/* ---------- MINIMAL HEADER — no nav, no leaks ---------- */
header{
  border-bottom:1px solid var(--line);
  background:var(--bg);
  position:sticky;top:0;z-index:50;
}
.header-row{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
  max-width:var(--wrap);margin:0 auto;padding:0 20px;
}
.logo{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:18px;
  color:var(--text);
}
.logo span{color:var(--gold);}
.header-call{
  display:flex;align-items:center;gap:7px;
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:var(--teal);
  border:1px solid var(--teal);
  padding:10px 14px;
  border-radius:999px;
  min-height:44px;
}
.header-call svg{width:15px;height:15px;flex-shrink:0;}

/* ---------- EYEBROW ---------- */
.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--teal);
  display:flex;align-items:center;gap:8px;
  margin-bottom:10px;
}
.eyebrow::before{content:"";width:14px;height:1px;background:var(--teal);}

/* ---------- HERO ---------- */
.hero{padding:36px 0 40px;}
.hero h1{
  font-size:clamp(28px,7vw,40px);
  line-height:1.08;
  margin-bottom:14px;
}
.hero h1 em{font-style:normal;color:var(--gold);}
.hero p.lede{
  font-size:16px;
  color:var(--text-dim);
  max-width:520px;
  margin-bottom:26px;
}

.trust-row{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-bottom:28px;
}
.trust-chip{
  display:flex;align-items:center;gap:6px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  color:var(--text-dim);
  border:1px solid var(--line);
  background:var(--surface);
  padding:7px 11px;
  border-radius:999px;
}
.trust-chip svg{width:13px;height:13px;color:var(--gold);flex-shrink:0;}

/* ---------- HERO FORM — the one conversion point ---------- */
.hero-form{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:6px;
  padding:22px;
  box-shadow:0 10px 30px rgba(33,29,23,0.08);
}
.hero-form-title{
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:18px;
  margin-bottom:4px;
}
.hero-form-sub{
  font-size:13px;
  color:var(--text-dim);
  margin-bottom:18px;
}
.field{margin-bottom:14px;}
.field label{
  display:block;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--text-faint);
  margin-bottom:6px;
}
.field input{
  width:100%;
  background:var(--bg);
  border:1px solid var(--line);
  color:var(--text);
  padding:14px 14px;
  font-family:'Inter',sans-serif;
  font-size:16px; /* 16px minimum — prevents iOS auto-zoom on focus */
  border-radius:4px;
  min-height:50px;
}
.field input:focus{outline:none;border-color:var(--teal);}
.field input::placeholder{color:var(--text-faint);}

.btn-cta{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;
  background:var(--gold-fill);
  color:var(--ink);
  font-family:'JetBrains Mono',monospace;
  font-weight:700;
  font-size:15px;
  padding:16px 20px;
  min-height:52px; /* thumb-tappable */
  border:none;
  border-radius:4px;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease;
}
.btn-cta:hover{background:#e6bb6f;}
.btn-cta:active{transform:scale(0.98);}
.btn-cta svg{width:18px;height:18px;flex-shrink:0;}

.form-note{
  font-size:11.5px;
  color:var(--text-faint);
  text-align:center;
  margin-top:12px;
}

/* ---------- SECTION HEAD ---------- */
.sec-head{margin-bottom:26px;}
.sec-head h2{font-size:clamp(22px,5vw,28px);}

/* ---------- BENEFITS ---------- */
section.benefits{border-top:1px solid var(--line);background:var(--bg-soft);}
.benefit-list{display:flex;flex-direction:column;gap:14px;}
.benefit-item{
  display:flex;align-items:flex-start;gap:12px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:6px;
  padding:16px;
}
.benefit-item svg{
  width:22px;height:22px;flex-shrink:0;color:var(--teal);margin-top:2px;
}
.benefit-item h3{font-size:15.5px;margin-bottom:3px;}
.benefit-item p{font-size:13.5px;color:var(--text-dim);}

/* ---------- FLEET (4-wheelers only) ---------- */
section.fleet{border-top:1px solid var(--line);}
.fleet-list{display:flex;flex-direction:column;gap:12px;}
.fleet-item{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:6px;
  padding:16px 18px;
}
.fleet-item .fleet-name{font-weight:600;font-size:15px;margin-bottom:3px;}
.fleet-item .fleet-meta{font-size:12.5px;color:var(--text-dim);}
.fleet-item .fleet-icon{
  width:46px;height:46px;flex-shrink:0;
  border-radius:50%;
  background:var(--bg-soft);
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.fleet-item .fleet-icon svg{width:22px;height:22px;}

/* ---------- GALLERY (real photo slots) ---------- */
section.gallery{border-top:1px solid var(--line);background:var(--bg-soft);}
.gallery-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;
}
.gallery-slot{
  aspect-ratio:4/3;
  border:1.5px dashed var(--line);
  border-radius:6px;
  background:var(--surface);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:6px;
  color:var(--text-faint);
  text-align:center;
  padding:10px;
}
.gallery-slot svg{width:26px;height:26px;}
.gallery-slot span{font-family:'JetBrains Mono',monospace;font-size:10.5px;text-transform:uppercase;letter-spacing:0.04em;}

/* ---------- REVIEWS ---------- */
section.reviews{border-top:1px solid var(--line);}
.review-card{
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:6px;
  padding:18px;
  margin-bottom:12px;
}
.review-stars{display:flex;gap:2px;margin-bottom:8px;}
.review-stars svg{width:15px;height:15px;color:var(--gold-fill);}
.review-card p{font-size:13.5px;color:var(--text-dim);margin-bottom:10px;line-height:1.65;}
.review-author{
  display:flex;align-items:center;justify-content:space-between;
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  color:var(--text-faint);
}
.google-badge{
  display:flex;align-items:center;gap:8px;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  color:var(--text-dim);
  margin-bottom:18px;
}
.google-badge svg{width:18px;height:18px;}

/* ---------- FINAL CTA BAND ---------- */
section.final-cta{
  border-top:1px solid var(--line);
  background:var(--text);
  color:var(--bg);
  text-align:center;
}
section.final-cta h2{color:var(--bg);margin-bottom:10px;}
section.final-cta p{color:#c8c3b8;font-size:14.5px;margin-bottom:22px;max-width:440px;margin-left:auto;margin-right:auto;}
.final-cta .btn-cta{max-width:340px;margin:0 auto;}

/* ---------- MINIMAL FOOTER — phone/WhatsApp only, no leaks ---------- */
footer{
  padding:24px 0 100px;
  text-align:center;
}
footer p{font-size:12px;color:var(--text-faint);}
footer .foot-contact{
  font-family:'JetBrains Mono',monospace;
  font-size:12.5px;
  color:var(--text-dim);
  margin-bottom:8px;
}

/* ---------- STICKY MOBILE CTA BAR ---------- */
.sticky-cta{
  position:fixed;bottom:0;left:0;right:0;
  z-index:100;
  background:var(--surface);
  border-top:1px solid var(--line);
  padding:10px 14px;
  padding-bottom:calc(10px + env(safe-area-inset-bottom));
  display:flex;gap:10px;
  box-shadow:0 -6px 20px rgba(33,29,23,0.08);
}
.sticky-cta a{
  flex:1;
  display:flex;align-items:center;justify-content:center;gap:7px;
  font-family:'JetBrains Mono',monospace;
  font-weight:700;
  font-size:13.5px;
  padding:14px 10px;
  min-height:48px;
  border-radius:4px;
}
.sticky-cta .sticky-call{
  border:1.5px solid var(--teal);
  color:var(--teal);
  background:transparent;
  flex:0 0 90px;
}
.sticky-cta .sticky-book{
  background:var(--gold-fill);
  color:var(--ink);
}
.sticky-cta svg{width:16px;height:16px;flex-shrink:0;}

@media (min-width:640px){
  body{padding-bottom:0;}
  .sticky-cta{display:none;}
  .hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;}
  .benefit-list{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
  .gallery-grid{grid-template-columns:repeat(4,1fr);}
}
