/* =====================================================================
   ROADREADY — Driving School Multi-Page Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root.
   Swap --accent / --accent2 for new brand colors, adjust --surface and
   --line to match, and update --font-head / --font-body plus the Google
   Fonts <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #ffffff;   /* page background                          */
  --ink:      #14213d;   /* deep navy (headings)                     */
  --accent:   #ffcc00;   /* road-yellow (primary accent)            */
  --accent-d: #e6b800;   /* darker yellow for hovers                */
  --accent2:  #1f6feb;   /* signal blue (secondary accent)          */
  --accent2-d:#1a5fd0;   /* darker blue for hovers                  */
  --ink-deep: #0c1730;   /* deepest navy for dark sections          */
  --muted:    #5b6b80;   /* muted body text                         */
  --surface:  #f3f6fa;   /* soft alt background                     */
  --line:     #e3e9f1;   /* borders / dividers                      */
  --white:    #ffffff;
  --slate:    #344256;   /* body text                               */

  /* --- Fonts --- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 10px 30px rgba(20, 33, 61, .08);
  --shadow-lg: 0 24px 60px rgba(20, 33, 61, .16);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent2); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent2-d); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--blue { color: var(--accent2); background: rgba(31, 111, 235, .1); }

.lead { font-size: 1.12rem; color: var(--slate); }

.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

/* Yellow primary — the signature "Book lessons" action */
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(255, 204, 0, .42);
}
.btn-primary:hover { background: var(--accent-d); color: var(--ink); box-shadow: 0 12px 30px rgba(255, 204, 0, .5); }

/* Blue secondary */
.btn-blue {
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 8px 22px rgba(31, 111, 235, .32);
}
.btn-blue:hover { background: var(--accent2-d); color: #fff; box-shadow: 0 12px 30px rgba(31, 111, 235, .42); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-light:hover { background: #fff; color: var(--ink); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent2), var(--ink));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(31, 111, 235, .35);
  position: relative;
}
.brand .logo-mark::after {
  /* dashed road centre-line motif */
  content: "";
  position: absolute;
  left: 50%; top: 7px; bottom: 7px;
  width: 3px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(var(--accent) 0 4px, transparent 4px 9px);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--surface); color: var(--accent2); }
.nav-links a.active { color: var(--accent2); font-weight: 600; }

.nav-cta { margin-left: 8px; }
.nav-cta a.active { color: var(--ink); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--surface);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(31,111,235,.14), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(255,204,0,.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  padding: 90px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--accent2); }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero visual — pure CSS/SVG car-on-road scene */
.hero-visual {
  position: relative;
  background: linear-gradient(165deg, var(--ink-deep), var(--ink));
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  overflow: hidden;
}
.hero-visual .hv-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-visual .hv-tag { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); font-family: var(--font-head); }
.hero-visual .hv-badge {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  background: var(--accent); color: var(--ink); padding: 5px 12px; border-radius: 999px;
}
/* The road */
.hv-road {
  position: relative;
  height: 210px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #2a3a5c 0%, #1c2944 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.hv-road::before {
  /* dashed centre line */
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 6px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(var(--accent) 0 22px, transparent 22px 44px);
  animation: roadMove 1.1s linear infinite;
}
.hv-road::after {
  /* side lines */
  content: "";
  position: absolute; inset: 0 14px;
  border-left: 3px solid rgba(255,255,255,.28);
  border-right: 3px solid rgba(255,255,255,.28);
}
@keyframes roadMove { to { background-position: 0 44px; } }
@media (prefers-reduced-motion: reduce) { .hv-road::before { animation: none; } }
.hv-car {
  position: absolute;
  left: 50%; bottom: 20px;
  transform: translateX(-50%);
  font-size: 3.4rem;
  z-index: 2;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.5));
}
.hv-sign {
  position: absolute;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--ink);
  border: 3px solid #fff;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  transform: rotate(-6deg);
  z-index: 2;
}
.hv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.hv-stat { background: rgba(255,255,255,.08); border-radius: 12px; padding: 14px; }
.hv-stat strong { font-family: var(--font-head); font-size: 1.5rem; display: block; color: var(--accent); }
.hv-stat span { font-size: .78rem; color: rgba(255,255,255,.72); }

/* ---------------------------------------------------------------------
   STATS BAR (home, light)
   --------------------------------------------------------------------- */
.statbar { padding: 0; }
.statbar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: -56px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
}
.statbar .sb {
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.12);
}
.statbar .sb:last-child { border-right: none; }
.statbar .sb strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--accent);
}
.statbar .sb span { font-size: .95rem; color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(31,111,235,.3); }

.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   COURSE CARDS (with hours / level)
   --------------------------------------------------------------------- */
.course-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(31,111,235,.3); }
.course-top {
  position: relative;
  height: 130px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent2), var(--ink));
  overflow: hidden;
}
.course-top::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 26px, var(--ink) 26px 52px);
}
.course-top .c-emoji { font-size: 3rem; filter: drop-shadow(0 6px 8px rgba(0,0,0,.35)); }
.course-top .c-level {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--accent); color: var(--ink);
  padding: 4px 11px; border-radius: 999px;
}
.course-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.course-body h3 { margin-bottom: 8px; }
.course-body p { color: var(--slate); font-size: .96rem; margin-bottom: 16px; }
.course-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.course-meta span {
  font-family: var(--font-head); font-weight: 500; font-size: .8rem;
  background: var(--surface); color: var(--ink);
  padding: 5px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
}
.course-incl { margin: 0 0 20px; }
.course-incl li {
  position: relative;
  padding-left: 26px;
  font-size: .93rem;
  color: var(--slate);
  margin-bottom: 7px;
}
.course-incl li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent2); font-weight: 700;
}
.course-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.course-foot .price { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.course-foot .price small { font-weight: 500; font-size: .8rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   FILTER BAR (courses page)
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-bar button {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--slate);
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-bar button:hover { border-color: var(--accent2); color: var(--accent2); }
.filter-bar button.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------------------------------------------------------------------
   FEATURE LIST (why us)
   --------------------------------------------------------------------- */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(255,204,0,.4);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 22px;
  min-height: 380px;
  background: linear-gradient(150deg, var(--ink-deep), var(--ink));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 32px;
}
.split-media::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 18px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 30px, var(--ink-deep) 30px 60px);
}

/* ---------------------------------------------------------------------
   HOW IT WORKS — steps
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent2), var(--ink));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ---------------------------------------------------------------------
   STATS BAND (dark)
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(600px 380px at 88% 12%, rgba(31,111,235,.3), transparent 60%),
    linear-gradient(135deg, var(--ink-deep), var(--ink));
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat-block strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  color: var(--accent);
}
.stat-block span { color: rgba(255,255,255,.82); font-size: .95rem; }

/* ---------------------------------------------------------------------
   INSTRUCTOR / TEAM CARDS
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent2), var(--ink));
  box-shadow: var(--shadow);
}
.team-card:nth-child(2n) .team-photo { background: linear-gradient(135deg, var(--accent), var(--accent-d)); color: var(--ink); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent2); font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 12px; }
.team-card .badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-card .badges span {
  font-family: var(--font-head); font-weight: 500; font-size: .74rem;
  background: var(--surface); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent-d); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent2), var(--ink));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(31,111,235,.32), transparent 60%),
    linear-gradient(135deg, var(--ink-deep), var(--ink));
  color: #fff;
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 16px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 28px, transparent 28px 56px);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 85% -20%, rgba(31,111,235,.14), transparent 60%),
    linear-gradient(180deg, var(--surface), #fff);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-banner::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 24px, transparent 24px 48px);
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 620px; color: var(--slate); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent2); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   PRICING
   --------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  padding: 5px 16px; border-radius: 999px;
  white-space: nowrap;
}
.price-card .p-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 4px; }
.price-card .p-desc { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.price-card .p-amount {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.6rem; color: var(--ink); line-height: 1;
  margin-bottom: 4px;
}
.price-card .p-amount small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .p-note { font-size: .86rem; color: var(--accent2); font-weight: 600; font-family: var(--font-head); margin-bottom: 22px; }
.price-card ul { margin: 0 0 26px; }
.price-card ul li {
  position: relative; padding-left: 28px;
  font-size: .95rem; color: var(--slate); margin-bottom: 11px;
}
.price-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent2); font-weight: 700;
}
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
table.compare th, table.compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
table.compare thead th {
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  background: var(--surface);
  letter-spacing: -.01em;
}
table.compare tbody td { color: var(--slate); }
table.compare td.tick { color: var(--accent2); font-weight: 700; }
table.compare td.cross { color: #c2402e; font-weight: 700; }
table.compare tr:last-child td { border-bottom: none; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem; color: var(--accent2);
  transition: transform var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--slate); font-size: .96rem; }

/* ---------------------------------------------------------------------
   ABOUT — values
   --------------------------------------------------------------------- */
.value-card .icon { background: linear-gradient(135deg, rgba(255,204,0,.25), rgba(31,111,235,.16)); }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent2);
  box-shadow: 0 0 0 4px rgba(31,111,235,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c2402e; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c2402e; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; }

/* Map placeholder — road-grid motif */
.map-placeholder {
  position: relative;
  border-radius: var(--radius);
  min-height: 260px;
  background:
    linear-gradient(rgba(31,111,235,.06), rgba(31,111,235,.06)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
  overflow: hidden;
}
.map-placeholder::before {
  /* a "main road" diagonal */
  content: "";
  position: absolute; left: -10%; right: -10%; top: 50%;
  height: 24px; transform: translateY(-50%) rotate(-8deg);
  background: var(--ink);
}
.map-placeholder::after {
  content: "";
  position: absolute; left: -10%; right: -10%; top: 50%;
  height: 3px; transform: translateY(-50%) rotate(-8deg);
  background: repeating-linear-gradient(90deg, var(--accent) 0 18px, transparent 18px 36px);
}
.map-placeholder .map-inner { position: relative; z-index: 2; background: rgba(255,255,255,.92); padding: 18px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.map-placeholder .pin { font-size: 2.2rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.7); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
}
.social a:hover { background: var(--accent); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .statbar .container { grid-template-columns: 1fr; gap: 0; }
  .statbar .sb { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
  .statbar .sb:last-child { border-bottom: none; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 460px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
}
