/* ==========================================================================
   BikeLelo.in — Design System
   Theme: Dashboard / spec-sheet aesthetic for two-wheeler insurance
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --asphalt: #14181C;
  --asphalt-soft: #23282E;
  --paper: #F7F6F2;
  --paper-dim: #EFEDE6;
  --primary: #FF4713;      /* tail-light orange-red */
  --primary-dark: #D63A0D;
  --accent: #FFC93C;       /* speed yellow */
  --navy: #1B2A4A;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --line: #E1DED4;
  --line-dark: #33383F;
  --good: #1F9D55;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-dark { background: var(--asphalt); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--asphalt); color: var(--asphalt); }
.btn-outline:hover { background: var(--asphalt); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--asphalt);
  border-bottom: 3px solid var(--primary);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo .slash { color: var(--primary); font-size: 24px; margin: 0 1px; }
.logo .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey-light);
  letter-spacing: 0.12em;
  margin-left: 10px;
  border-left: 1px solid var(--line-dark);
  padding-left: 10px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 30px; list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.nav-links a {
  color: #C9CDD3;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; border-color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--asphalt);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 18px; color: #C9CDD3; max-width: 480px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.dash-stats {
  display: flex; gap: 0; border-top: 1px solid var(--line-dark); padding-top: 22px; max-width: 520px;
}
.dash-stat { flex: 1; padding-right: 18px; }
.dash-stat .num {
  font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: var(--accent);
}
.dash-stat .lbl { font-size: 12px; color: var(--grey-light); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* speedometer gauge (svg wrapper styling) */
.gauge-panel {
  background: var(--asphalt-soft);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 28px;
  position: relative;
}
.gauge-panel .gauge-title {
  font-family: var(--font-mono); font-size: 12px; color: var(--grey-light);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
  display: flex; justify-content: space-between;
}
.gauge-readout {
  font-family: var(--font-mono); text-align: center; margin-top: 10px;
}
.gauge-readout .value { font-size: 40px; color: var(--accent); font-weight: 600; }
.gauge-readout .unit { font-size: 13px; color: var(--grey-light); }
.gauge-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.gauge-fact {
  background: var(--asphalt); border: 1px solid var(--line-dark); border-radius: 6px; padding: 12px 14px;
}
.gauge-fact .k { font-family: var(--font-mono); font-size: 11px; color: var(--grey-light); text-transform: uppercase; }
.gauge-fact .v { font-family: var(--font-mono); font-size: 18px; color: #fff; margin-top: 4px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--grey); max-width: 420px; }
.section-dark { background: var(--asphalt); color: #fff; }
.section-dark h2, .section-dark .eyebrow { color: #fff; }
.section-dark .eyebrow { color: var(--accent); }
.section-dark .eyebrow::before { background: var(--accent); }
.section-dark p { color: #C9CDD3; }
.section-dim { background: var(--paper-dim); }

/* ---------- Cards: insurers ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.card:hover { box-shadow: 0 10px 28px rgba(20,24,28,0.09); transform: translateY(-3px); border-color: var(--asphalt); }

.insurer-card .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.insurer-badge {
  width: 46px; height: 46px; border-radius: 8px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.rating-chip {
  font-family: var(--font-mono); font-size: 12px; background: var(--paper-dim);
  border: 1px solid var(--line); border-radius: 20px; padding: 3px 10px; color: var(--navy);
}
.rating-chip strong { color: var(--good); }
.insurer-card h3 { font-size: 20px; margin-bottom: 4px; }
.insurer-card .csr { font-family: var(--font-mono); font-size: 13px; color: var(--grey); margin-bottom: 16px; }
.spec-mini-list { list-style: none; font-size: 14px; color: var(--navy); margin-bottom: 18px; }
.spec-mini-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.spec-mini-list li:last-child { border-bottom: none; }
.spec-mini-list .k { color: var(--grey); }
.spec-mini-list .v { font-family: var(--font-mono); font-weight: 600; }
.card-actions { display: flex; gap: 10px; }

/* ---------- Bike cards ---------- */
.bike-card { display: flex; flex-direction: column; }
.bike-thumb {
  height: 150px; border-radius: 6px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--navy), var(--asphalt));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.bike-thumb svg { width: 74%; opacity: 0.92; }
.bike-thumb .tag {
  position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 10px; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em;
}
.bike-card h3 { font-size: 18px; margin-bottom: 2px; }
.bike-card .brand { font-family: var(--font-mono); font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.bike-specs { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--navy); margin-bottom: 16px; flex-wrap: wrap; }
.bike-specs span { background: var(--paper-dim); border-radius: 4px; padding: 4px 8px; }
.bike-card .premium-from { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 13px; color: var(--grey); }
.bike-card .premium-from strong { font-family: var(--font-mono); color: var(--primary); font-size: 18px; display: block; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { border-left: 3px solid var(--primary); padding-left: 18px; }
.step .n { font-family: var(--font-mono); color: var(--primary); font-size: 13px; letter-spacing: .1em; }
.step h4 { font-size: 19px; margin: 6px 0 8px; }
.step p { color: var(--grey); font-size: 14px; }

/* ---------- Compare table ---------- */
.compare-controls {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; margin-bottom: 32px;
}
.compare-controls .row { display: flex; gap: 18px; flex-wrap: wrap; align-items: flex-end; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 180px; }
.field label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--grey); }
select, input[type=text], input[type=email], input[type=tel], input[type=number], textarea {
  font-family: var(--font-body); font-size: 15px; padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 6px; background: #fff; color: var(--navy);
}
select:focus, input:focus, textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare-table th, table.compare-table td {
  padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px;
}
table.compare-table thead th {
  background: var(--asphalt); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 16px;
  position: sticky; top: 0;
}
table.compare-table thead th:first-child { color: var(--grey-light); font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; }
table.compare-table tbody th {
  font-family: var(--font-mono); font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: .04em; font-weight: 500;
  background: var(--paper-dim); white-space: nowrap;
}
table.compare-table td.val { font-family: var(--font-mono); font-weight: 600; }
table.compare-table td.yes { color: var(--good); }
table.compare-table td.no { color: var(--grey-light); }
table.compare-table tbody tr:hover td, table.compare-table tbody tr:hover th { background: #FFF7EE; }
.best-badge {
  display: inline-block; background: var(--accent); color: var(--asphalt); font-family: var(--font-mono);
  font-size: 10px; padding: 2px 8px; border-radius: 20px; margin-left: 8px; letter-spacing: .04em;
}

/* ---------- Calculator ---------- */
.calc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
@media (max-width: 900px) { .calc-layout { grid-template-columns: 1fr; } }
.calc-form { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.calc-form .row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.checkbox-row input { width: 16px; height: 16px; accent-color: var(--primary); }
.calc-result {
  background: var(--asphalt); color: #fff; border-radius: 8px; padding: 26px; position: sticky; top: 92px;
}
.calc-result .eyebrow { color: var(--accent); }
.calc-result .eyebrow::before { background: var(--accent); }
.calc-result .premium { font-family: var(--font-mono); font-size: 44px; color: var(--accent); margin: 6px 0 18px; }
.calc-result .breakup { list-style: none; font-size: 13px; }
.calc-result .breakup li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--font-mono); }
.calc-result .breakup li.total { border-bottom: none; padding-top: 12px; font-size: 15px; color: var(--accent); }

/* ---------- Testimonials / trust strip ---------- */
.trust-strip { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trust-strip div { font-family: var(--font-mono); font-size: 13px; color: var(--grey); text-transform: uppercase; letter-spacing: .05em; }

.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.quote-card p.q { font-size: 16px; color: var(--navy); margin-bottom: 18px; }
.quote-card .who { font-family: var(--font-mono); font-size: 13px; color: var(--grey); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--primary); color: #fff; padding: 60px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 28px; }
.cta-band .btn-dark { background: var(--asphalt); }
.cta-band .btn-outline-light { }

/* ---------- Footer ---------- */
.site-footer { background: var(--asphalt); color: #C9CDD3; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 600; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--grey-light); }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--asphalt); color: #fff; padding: 46px 0; }
.page-head h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--grey-light); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.breadcrumb a { color: var(--accent); }

/* ---------- Misc ---------- */
.divider-dash { border: none; border-top: 1px dashed var(--line); margin: 44px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.tag-pill {
  display: inline-block; background: var(--paper-dim); border: 1px solid var(--line); border-radius: 20px;
  padding: 5px 12px; font-family: var(--font-mono); font-size: 12px; margin: 3px 4px 3px 0;
}
.map-block {
  background: var(--paper-dim); border: 1px dashed var(--line); border-radius: 8px; height: 280px;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); color: var(--grey);
}
.contact-info-list { list-style: none; }
.contact-info-list li { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.contact-info-list .k { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--grey); letter-spacing: .06em; }
.contact-info-list .v { font-size: 16px; margin-top: 4px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--primary); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; color: var(--grey); font-size: 15px; }

.value-num { font-family: var(--font-mono); font-size: 42px; color: var(--primary); font-weight: 600; }
