@import url('https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@62..125,100..900&family=IBM+Plex+Mono:wght@500;600&display=swap');

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

:root {
  --paper: #F7F4EE;
  --paper-2: #EFEBE1;
  --white: #FFFFFF;
  --ink: #141312;
  --ink-2: #201E1C;
  --ink-3: #2C2A27;
  --body: #4C4841;
  --muted: #857F74;
  --flame: #E8420C;
  --flame-deep: #C43405;
  --flame-tint: #FCEAE2;
  --line: #E3DED2;
  --line-dark: rgba(255,255,255,0.12);
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --nav-h: 74px;
  --max-w: 1180px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  font-stretch: 118%;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.35rem, 5.8vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.2; }
h4 { font-stretch: 112%; font-weight: 700; }
p { color: var(--body); }

:focus-visible { outline: 3px solid var(--flame); outline-offset: 2px; border-radius: 2px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-stretch: 118%; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--flame); font-weight: 700;
}
.eyebrow::before {
  content: ''; width: 34px; height: 8px; flex-shrink: 0;
  background: conic-gradient(var(--ink) 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0) 0 0 / 8px 8px;
}
.eyebrow.on-dark { color: var(--flame); }
.eyebrow.on-dark::before {
  background: conic-gradient(var(--paper) 25%, transparent 0 50%, var(--paper) 0 75%, transparent 0) 0 0 / 8px 8px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(3.75rem, 8vw, 6.5rem) 0; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* --- Checker brand strip --- */
.checker {
  height: 12px;
  background: conic-gradient(var(--ink) 25%, var(--white) 0 50%, var(--ink) 0 75%, var(--white) 0) 0 0 / 12px 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; min-height: 48px;
  font-stretch: 112%; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: none; border-radius: 6px; transition: all 0.18s ease;
}
.btn-flame { background: var(--flame); color: var(--white); }
.btn-flame:hover { background: var(--flame-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(232,66,12,0.65); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-ghost-light:hover { border-color: var(--flame); color: var(--flame); }

/* --- Nav --- */
.top-strip { height: 10px; background: conic-gradient(var(--ink) 25%, var(--white) 0 50%, var(--ink) 0 75%, var(--white) 0) 0 0 / 10px 10px; }
nav {
  position: sticky; top: 0; height: var(--nav-h);
  background: rgba(247,244,238,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 200; display: flex; align-items: center;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.nav-logo {
  font-stretch: 122%; font-size: 1.28rem; font-weight: 800; letter-spacing: 0.01em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink);
}
.nav-logo .mark {
  width: 32px; height: 32px; flex-shrink: 0; background: var(--flame); color: var(--white);
  border-radius: 7px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-stretch: 122%; font-weight: 800;
}
.nav-logo em { font-style: normal; color: var(--flame); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--body); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { color: var(--white); }
.nav-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-weight: 600 !important; color: var(--ink) !important; font-size: 0.92rem !important; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; stroke: var(--flame); fill: none; stroke-width: 2; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

/* --- Hero --- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 6.5vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero::before {
  content: ''; position: absolute; top: 0; right: -6%; width: 46%; height: 100%;
  background: repeating-linear-gradient(-55deg, rgba(232,66,12,0.06) 0 14px, transparent 14px 42px);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 50px;
  padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 600; color: var(--body); margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232,66,12,0.55); } 70% { box-shadow: 0 0 0 8px rgba(232,66,12,0); } 100% { box-shadow: 0 0 0 0 rgba(232,66,12,0); } }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--flame); }
.hero-sub { font-size: 1.12rem; line-height: 1.65; max-width: 33rem; margin-bottom: 2.1rem; }
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.btn-call { padding: 1.05rem 1.8rem; font-size: 1.05rem; gap: 0.7rem; }
.btn-call svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-call .num { font-family: var(--mono); letter-spacing: 0.02em; text-transform: none; white-space: nowrap; }
.hero-note { font-size: 0.88rem; color: var(--muted); }
.hero-note strong { color: var(--ink); }

/* Quote card */
.quote-card {
  background: var(--ink); color: var(--paper); border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(20,19,18,0.45);
}
.quote-card .checker { height: 10px; background-size: 10px 10px; }
.quote-body { padding: clamp(1.5rem, 3vw, 2rem); }
.quote-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.quote-head .t { font-stretch: 118%; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; }
.quote-head .live { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; color: #8DE0A0; }
.quote-head .live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #8DE0A0; animation: pulse 2s infinite; }
.quote-card label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,244,238,0.55); margin-bottom: 0.4rem; }
.quote-card .qf-group { margin-bottom: 1rem; }
.quote-card input {
  width: 100%; padding: 0.8rem 0.95rem; min-height: 48px; font-family: inherit; font-size: 1rem;
  background: var(--ink-3); color: var(--paper); border: 1.5px solid rgba(255,255,255,0.14); border-radius: 8px;
}
.quote-card input::placeholder { color: rgba(247,244,238,0.35); }
.quote-card input:focus { outline: none; border-color: var(--flame); }
.quote-card .btn { width: 100%; margin-top: 0.4rem; }
.quote-fares { margin-top: 1.5rem; border-top: 1px solid var(--line-dark); padding-top: 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.quote-fares .row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-family: var(--mono); font-size: 0.8rem; color: rgba(247,244,238,0.7); }
.quote-fares .row .p { color: var(--paper); font-weight: 600; white-space: nowrap; }
.quote-fares .row .p em { font-style: normal; color: var(--flame); }

/* --- Trust row --- */
.trust { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max-w); margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; padding: 1.6rem var(--pad); border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 27px; height: 27px; stroke: var(--flame); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.trust-item .t { font-stretch: 112%; font-weight: 700; font-size: 0.92rem; line-height: 1.25; }
.trust-item .s { font-size: 0.78rem; color: var(--muted); }

/* --- Section head --- */
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); max-width: 620px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 0; }
.section-head p { font-size: 1.05rem; margin-top: 1rem; }

/* --- Services --- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.9rem;
  transition: all 0.2s ease;
}
.svc-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--flame); border-color: var(--ink); }
.svc-icon { width: 50px; height: 50px; border-radius: 10px; background: var(--flame-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--flame); fill: none; stroke-width: 1.8; }
.svc-card h3 { margin-bottom: 0.55rem; }
.svc-card p { font-size: 0.93rem; line-height: 1.6; }

/* --- Fleet --- */
.fleet { background: var(--paper-2); }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.fleet-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.2s ease; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(20,19,18,0.35); }
.fleet-art { padding: 1.6rem 1.2rem 0.9rem; background: var(--paper); }
.fleet-art svg { width: 100%; height: auto; }
.fleet-card .checker { height: 8px; background-size: 8px 8px; }
.fleet-info { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.fleet-info h3 { margin-bottom: 0.35rem; }
.fleet-info .use { font-size: 0.87rem; line-height: 1.55; margin-bottom: 1rem; }
.fleet-specs { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.fleet-specs span { font-family: var(--mono); font-size: 0.72rem; font-weight: 500; background: var(--paper-2); border: 1px solid var(--line); border-radius: 5px; padding: 0.3rem 0.55rem; color: var(--body); white-space: nowrap; }

/* --- Fare teaser band --- */
.fare-band { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.fare-band::after {
  content: ''; position: absolute; top: -30%; right: -8%; width: 45%; height: 130%;
  background: radial-gradient(circle, rgba(232,66,12,0.22), transparent 65%); pointer-events: none;
}
.fare-band .container { position: relative; z-index: 1; }
.fare-band h2 { color: var(--paper); }
.fare-band .section-head p { color: rgba(247,244,238,0.65); }
.fare-rows { display: flex; flex-direction: column; border: 1px solid var(--line-dark); border-radius: 12px; overflow: hidden; margin-bottom: 2.25rem; background: var(--ink-2); }
.fare-row { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.2rem 1.5rem; border-top: 1px solid var(--line-dark); }
.fare-row:first-child { border-top: none; }
.fare-row .j { display: flex; align-items: baseline; gap: 0.8rem; min-width: 0; }
.fare-row .j .route { font-stretch: 112%; font-weight: 700; font-size: 1rem; color: var(--paper); }
.fare-row .j .via { font-size: 0.8rem; color: rgba(247,244,238,0.5); }
.fare-row .p { font-family: var(--mono); font-weight: 600; font-size: 1.15rem; color: var(--flame); white-space: nowrap; }
.fare-row .p span { font-size: 0.72rem; color: rgba(247,244,238,0.5); font-weight: 500; }

/* --- Reviews --- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.rev-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.9rem; display: flex; flex-direction: column; }
.rev-stars { color: var(--flame); letter-spacing: 2px; margin-bottom: 1rem; }
.rev-card blockquote { color: var(--ink); font-size: 0.97rem; line-height: 1.65; margin-bottom: 1.5rem; }
.rev-author { margin-top: auto; display: flex; align-items: center; gap: 0.85rem; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-stretch: 112%; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.rev-author .name { font-weight: 700; font-size: 0.9rem; }
.rev-author .meta { font-size: 0.78rem; color: var(--muted); }

/* --- Coverage --- */
.coverage { background: var(--white); border-top: 1px solid var(--line); }
.coverage-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.coverage-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.75rem; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: 50px; padding: 0.55rem 1.05rem; font-size: 0.86rem; font-weight: 600; color: var(--body); }
.postcode-board { background: var(--ink); border-radius: 14px; padding: clamp(2rem, 4vw, 3rem); text-align: center; position: relative; overflow: hidden; }
.postcode-board::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; background: conic-gradient(var(--paper) 25%, transparent 0 50%, var(--paper) 0 75%, transparent 0) 0 0 / 10px 10px; opacity: 0.85; }
.postcode-board .big { font-stretch: 122%; font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--paper); text-transform: uppercase; line-height: 1; }
.postcode-board .big em { font-style: normal; color: var(--flame); }
.postcode-board .sub { font-family: var(--mono); font-size: 0.8rem; color: rgba(247,244,238,0.55); margin-top: 0.9rem; }

/* --- CTA band --- */
.cta-band { background: var(--flame); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 0.7rem; font-size: 1.05rem; }
.cta-band .btn-ink:hover { background: var(--ink-2); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Page header --- */
.page-header { padding: clamp(3rem, 6vw, 4.75rem) 0; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-header::before {
  content: ''; position: absolute; top: 0; right: -6%; width: 40%; height: 100%;
  background: repeating-linear-gradient(-55deg, rgba(232,66,12,0.06) 0 14px, transparent 14px 42px); pointer-events: none;
}
.page-header .container { position: relative; }
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header h1 { max-width: 18ch; }
.page-header p { font-size: 1.1rem; margin-top: 1.2rem; max-width: 52ch; }

/* --- Fare tables --- */
.fare-section { padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.fare-section:last-of-type { padding-bottom: clamp(3.75rem, 8vw, 6.5rem); }
.fare-block h2 { margin-bottom: 0.5rem; }
.fare-block > p { margin-bottom: 1.75rem; max-width: 60ch; }
.table-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow-x: auto; }
.fare-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.fare-table th {
  font-stretch: 112%; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-align: left; padding: 1rem 1.4rem; border-bottom: 2px solid var(--ink); white-space: nowrap;
}
.fare-table th.num, .fare-table td.num { text-align: right; }
.fare-table td { padding: 1rem 1.4rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink); }
.fare-table tr:last-child td { border-bottom: none; }
.fare-table tbody tr:nth-child(even) td { background: var(--paper); }
.fare-table td.num { font-family: var(--mono); font-weight: 600; white-space: nowrap; }
.fare-table td.num.hot { color: var(--flame); }
.fare-table .dest { font-weight: 700; }
.fare-table .dest span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }
.fare-note { display: flex; gap: 0.8rem; align-items: flex-start; margin-top: 1.1rem; font-size: 0.86rem; color: var(--muted); }
.fare-note svg { width: 18px; height: 18px; stroke: var(--flame); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

.note-card { background: var(--flame-tint); border: 1px solid #F3C4B0; border-radius: 12px; padding: 1.75rem 2rem; margin-top: 2.5rem; }
.note-card h3 { margin-bottom: 0.6rem; }
.note-card p { font-size: 0.93rem; }
.note-card p + p { margin-top: 0.6rem; }

/* --- Booking page --- */
.book-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.25rem, 5vw, 4rem); align-items: start; }
.book-form { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.75rem, 3vw, 2.5rem); }
.form-legend { font-stretch: 116%; font-weight: 800; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.14em; color: var(--flame); margin: 0 0 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.form-legend::after { content: ''; flex: 1; height: 1px; background: var(--line); }
fieldset { border: none; margin: 0 0 1.25rem; padding: 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; min-height: 48px; background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23141312' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--flame); background: var(--white); box-shadow: 0 0 0 3px rgba(232,66,12,0.15); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book-form .btn { width: 100%; }
.form-hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success .tick { width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%; background: var(--flame); display: flex; align-items: center; justify-content: center; }
.form-success .tick svg { width: 30px; height: 30px; stroke: var(--white); fill: none; stroke-width: 2.5; }
.form-success h3 { margin-bottom: 0.7rem; }
.form-success p { max-width: 34ch; margin: 0 auto; font-size: 0.95rem; }

.book-side { display: flex; flex-direction: column; gap: 1.2rem; }
.call-card { background: var(--flame); color: var(--white); border-radius: 14px; padding: 2rem; position: relative; overflow: hidden; }
.call-card::after { content: ''; position: absolute; right: -30px; bottom: -40px; width: 150px; height: 150px; border-radius: 50%; border: 22px solid rgba(255,255,255,0.12); }
.call-card h3 { color: var(--white); margin-bottom: 0.6rem; }
.call-card p { color: rgba(255,255,255,0.88); font-size: 0.93rem; margin-bottom: 1.4rem; }
.call-card .big-num { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--mono); font-weight: 600; font-size: clamp(1.25rem, 2.6vw, 1.55rem); color: var(--white); background: rgba(0,0,0,0.22); border-radius: 9px; padding: 0.85rem 1.2rem; white-space: nowrap; position: relative; z-index: 1; }
.call-card .big-num svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.call-card .always { margin: 1.1rem 0 0; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); text-transform: uppercase; }

.steps-card { background: var(--ink); color: var(--paper); border-radius: 14px; padding: 2rem; }
.steps-card h3 { color: var(--paper); margin-bottom: 1.4rem; }
.step { display: flex; gap: 1rem; padding: 0.9rem 0; border-top: 1px solid var(--line-dark); }
.step:first-of-type { border-top: none; padding-top: 0; }
.step .n { font-family: var(--mono); font-weight: 600; color: var(--flame); flex-shrink: 0; }
.step .t { font-weight: 700; font-size: 0.93rem; color: var(--paper); }
.step .d { font-size: 0.84rem; color: rgba(247,244,238,0.6); margin-top: 0.15rem; }

.tip-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.8rem; display: flex; gap: 1rem; align-items: flex-start; }
.tip-card svg { width: 24px; height: 24px; stroke: var(--flame); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.tip-card .t { font-weight: 700; font-size: 0.93rem; }
.tip-card p { font-size: 0.86rem; margin-top: 0.25rem; }

/* --- Footer --- */
footer { background: var(--ink); color: var(--paper); }
footer .checker { height: 10px; background-size: 10px 10px; }
.footer-main { padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--paper); margin-bottom: 1rem; }
.footer-brand p { color: rgba(247,244,238,0.55); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,244,238,0.45); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: rgba(247,244,238,0.75); transition: color 0.2s; display: inline-block; padding: 0.15rem 0; }
.footer-col a:hover { color: var(--flame); }
.footer-col .mono { font-family: var(--mono); font-size: 0.88rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.75rem 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(247,244,238,0.45); }

/* --- Sticky mobile call bar --- */
.mobile-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250; background: var(--ink); border-top: 1px solid var(--line-dark); padding: 0.65rem var(--pad); gap: 0.65rem; }
.mobile-call .btn { flex: 1; padding: 0.8rem 0.5rem; font-size: 0.82rem; }

/* --- Responsive --- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 520px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: none; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); }
  .coverage-grid, .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links {
    display: none; position: fixed; top: calc(var(--nav-h)); left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    flex-direction: column; align-items: stretch; gap: 0; padding: 0.75rem var(--pad) 1.5rem;
    box-shadow: 0 24px 40px -20px rgba(20,19,18,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: flex; align-items: center; min-height: 48px; font-size: 1rem; }
  .nav-links li .btn { margin-top: 0.75rem; width: 100%; }
  .nav-phone { font-size: 1rem !important; }
  .nav-toggle { display: flex; }
}
@media (max-width: 620px) {
  .svc-grid, .rev-grid, .fleet-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }
  .fare-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; }
  .mobile-call { display: flex; }
  .footer-bottom { padding-bottom: 5.5rem; }
}

/* Lightwork demo attribution bar */
.lw-demo-bar { display: block; background: #241631; color: rgba(255,255,255,0.85); text-align: center; padding: 9px 16px; font-size: 13px; letter-spacing: 0.02em; text-decoration: none; position: relative; z-index: 200; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; }
