/* Rent Orlando Scooters — Strollers landing page
   Palette: Florida sunshine. Cream canvas, brand orange, deep ink. */

@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/baloo2-latin.woff2') format('woff2');
}

:root {
  --cream: #FFF6EC;
  --paper: #FFFDF9;
  --ink: #21303C;
  --ink-soft: #51606C;
  --orange: #F97316;
  --orange-deep: #C2410C;
  --orange-soft: #FFE8D2;
  --sun: #FFC53D;
  --teal: #0E7466;
  --radius: 18px;
  --display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* room for sticky mobile CTA */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-deep); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }

h1, h2, h3, .btn, .step-num, .chip {
  font-family: var(--display);
  line-height: 1.15;
}

h2 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 0 var(--orange-deep), 0 12px 24px -8px rgba(249, 115, 22, .55);
}
.btn-primary:hover { background: #FB8B3C; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(33, 48, 60, .25);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { color: #fff; border: 2px solid rgba(255, 255, 255, .45); }
.btn-ghost-light:hover { border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.15rem; }
.btn-call {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: .95rem;
  box-shadow: 0 3px 0 #0d161d;
}
.btn-call:hover { background: #32434f; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  box-shadow: 0 2px 14px rgba(13, 22, 29, .35);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img { width: 120px; height: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 85% 20%, rgba(255, 197, 61, .35), transparent 65%),
    radial-gradient(900px 600px at -10% 110%, rgba(249, 115, 22, .16), transparent 60%),
    var(--cream);
  padding: 48px 0 40px;
}
.hero::before { /* dotted stroller trail */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(249, 115, 22, .18) 2px, transparent 2.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(115deg, transparent 55%, #000 90%);
  -webkit-mask-image: linear-gradient(115deg, transparent 55%, #000 90%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--teal);
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(2.1rem, 6.5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 8px;
  background: var(--sun);
  border-radius: 6px;
  z-index: -1;
  opacity: .65;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 18px;
}
.price-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.chip {
  background: #fff;
  border: 2px solid var(--orange-soft);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .95rem;
  font-weight: 600;
}
.chip strong { color: var(--orange-deep); }
.chip-note { font-size: .85rem; color: var(--ink-soft); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-center { justify-content: center; }
.micro { margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }
.hero-art img { margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(194, 65, 12, .18)); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; padding: 22px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 30px; height: 30px; flex: none; fill: var(--sun); }
.trust-item p { font-size: .85rem; line-height: 1.35; color: rgba(255, 255, 255, .8); }
.trust-item strong { color: #fff; font-size: .95rem; }

/* ---------- Steps ---------- */
.steps { padding: 64px 0 56px; text-align: center; }
.steps h2 { margin-bottom: 36px; }
.steps-grid { display: grid; gap: 28px; text-align: left; }
.step {
  position: relative;
  background: var(--paper);
  border: 2px solid rgba(33, 48, 60, .07);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  box-shadow: 0 3px 0 var(--orange-deep);
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Products ---------- */
.products { padding: 56px 0; }
.products-alt { background: #fff; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 18px;
  margin-bottom: 26px;
}
.section-price { font-size: 1.05rem; color: var(--ink-soft); }
.section-price strong { color: var(--orange-deep); font-size: 1.2rem; font-family: var(--display); }
.section-price span { font-size: .9rem; }
.card-grid { display: grid; gap: 26px; }
.card {
  background: var(--paper);
  border: 2px solid rgba(33, 48, 60, .08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px -22px rgba(33, 48, 60, .35);
  display: flex;
  flex-direction: column;
}
.products-alt .card { background: var(--cream); }
.card-img { background: radial-gradient(closest-side, #fff 55%, transparent); padding: 8px 14px 0; }
.card-img img { margin: 0 auto; }
.card-body { padding: 18px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.card-tag { color: var(--teal); font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.feat { list-style: none; margin-bottom: 14px; }
.feat li {
  padding-left: 26px;
  position: relative;
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.feat li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' stroke='%23C2410C' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.start-price { font-size: 1rem; margin-bottom: 10px; }
.start-price strong { font-family: var(--display); font-size: 1.3rem; color: var(--orange-deep); }
.start-price span { color: var(--ink-soft); font-size: .88rem; }

.pricing { margin-bottom: 16px; }
.pricing summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  color: var(--teal);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pricing summary::-webkit-details-marker { display: none; }
.pricing summary::before {
  content: '+';
  font-family: var(--display);
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform .15s ease;
}
.pricing[open] summary::before { content: '−'; }
.pricing table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: .92rem;
}
.pricing td { padding: 7px 4px; border-bottom: 1px dashed rgba(33, 48, 60, .15); }
.pricing td:last-child { text-align: right; font-weight: 600; }
.pricing tr:last-child td { border-bottom: 0; }

/* ---------- Why ---------- */
.why { padding: 64px 0; text-align: center; }
.why h2 { margin-bottom: 8px; }
.why-sub { color: var(--ink-soft); max-width: 38em; margin: 0 auto 32px; }
.why-grid { display: grid; gap: 18px; text-align: left; }
.why-col { border-radius: var(--radius); padding: 24px 24px 20px; }
.why-col h3 { font-size: 1.15rem; margin-bottom: 12px; }
.why-col ul { list-style: none; }
.why-col li { padding-left: 28px; position: relative; margin-bottom: 9px; font-size: .96rem; }
.why-them { background: #F1ECE4; color: var(--ink-soft); }
.why-them li::before { content: '✕'; position: absolute; left: 2px; color: #B3543A; font-weight: 700; }
.why-us {
  background: var(--ink);
  color: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 40px -20px rgba(33, 48, 60, .6);
}
.why-us h3 { color: var(--sun); }
.why-us li::before { content: '✓'; position: absolute; left: 2px; color: var(--sun); font-weight: 700; }
.why-cta { margin-top: 30px; }

/* ---------- Areas ---------- */
.areas { padding: 24px 0 64px; text-align: center; }
.areas h2 { margin-bottom: 8px; }
.areas-sub { color: var(--ink-soft); margin-bottom: 22px; }
.area-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.area-chips li {
  background: #fff;
  border: 2px solid var(--orange-soft);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: .95rem;
}
.area-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.area-chips li::before {
  content: '';
  width: 14px; height: 14px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F97316'%3E%3Cpath d='M12 21s-7-4.6-7-10a7 7 0 0 1 14 0c0 5.4-7 10-7 10zm0-7.5A2.5 2.5 0 1 0 12 8a2.5 2.5 0 0 0 0 5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.areas-note { color: var(--ink-soft); font-size: .92rem; max-width: 46em; margin: 0 auto; }

/* ---------- FAQ ---------- */
.faq { background: #fff; padding: 60px 0; }
.faq h2 { text-align: center; margin-bottom: 28px; }
.faq details {
  border: 2px solid rgba(33, 48, 60, .08);
  border-radius: 14px;
  margin-bottom: 10px;
  background: var(--paper);
  padding: 0 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  font-size: 1.02rem;
  padding: 15px 30px 15px 0;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 0 16px; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(620px 320px at 80% -20%, rgba(249, 115, 22, .35), transparent 70%),
    var(--ink);
  color: #fff;
  text-align: center;
  padding: 68px 0;
}
.final-cta h2 { font-size: clamp(2rem, 6vw, 2.9rem); margin-bottom: 10px; }
.final-cta em { font-style: normal; color: var(--sun); }
.final-cta p { color: rgba(255, 255, 255, .75); margin-bottom: 26px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0d161d; color: rgba(255, 255, 255, .7); padding: 36px 0; font-size: .92rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-info p { margin-bottom: 4px; }
.site-footer a { color: var(--sun); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer strong { color: #fff; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(6px);
  box-shadow: 0 -6px 20px rgba(33, 48, 60, .15);
}
.sticky-cta .btn-primary { flex: 1; }
.sticky-cta .btn-call { padding: 12px 16px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Desktop ---------- */
@media (min-width: 700px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 880px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }
  .hero { padding: 72px 0 64px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 40px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .logo img { width: 150px; }
}
