
:root {
  --bg: #07101f;
  --bg-2: #0a1428;
  --card: #0c1730;
  --card-2: rgba(7,12,28,.72);
  --card-soft: rgba(255,255,255,.04);
  --text: #f7fbff;
  --muted: rgba(240,247,255,.80);
  --muted-2: rgba(240,247,255,.64);
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.16);
  --accent: #90b2ff;
  --accent-2: #a7c0ff;
  --accent-3: #88ddff;
  --accent-text: #0f172a;
  --success: #6bcf83;
  --radius: 30px;
  --pill: 999px;
  --shadow: 0 28px 64px rgba(0,0,0,.32);
  --shadow-soft: 0 20px 44px rgba(0,0,0,.24);
  --glass-top: rgba(255,255,255,.16);
  --glass-bottom: rgba(255,255,255,.03);
  --gloss-stroke: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 85% 4%, rgba(144,178,255,.20), transparent 18%),
    radial-gradient(circle at 12% 12%, rgba(136,221,255,.10), transparent 20%),
    radial-gradient(circle at 10% 88%, rgba(56,95,188,.16), transparent 24%),
    linear-gradient(180deg, #07101f 0%, #0a1428 100%);
  color: var(--text);
}
body::before {
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(135deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,0) 34%);
  mix-blend-mode:screen;
  opacity:.55;
  z-index:0;
}
a { color: inherit; text-decoration: none; }
img { display:block; max-width:100%; }
.container { width:min(1320px, calc(100% - 48px)); margin:0 auto; }
.page-shell { position:relative; padding: 20px 0 56px; }
.page-shell::before,
.page-shell::after {
  content:""; position:fixed; border-radius:999px; pointer-events:none; filter: blur(4px); z-index:0;
}
.page-shell::before { right:-120px; top:-90px; width:360px; height:360px; background: rgba(127,155,255,.08); }
.page-shell::after { left:-140px; bottom:60px; width:420px; height:420px; background: rgba(33,64,141,.10); }
.top-strip, .navbar, .hero-card, .summary-card, .metric-card, .feature-card, .service-card,
.vehicle-card, .step-card, .business-card, .contact-card, .coverage-card, .faq-card,
.utility-card, .utility-action-card, .panel-card, .support-card-large, .support-card-small,
.cta-section, .footer, .enquiry-card, .legal-card, .notice-card {
  position:relative; z-index:1;
}
.top-strip { display:none; }
.top-strip-text { color: var(--text); font-weight:800; font-size:14px; line-height:22px; flex:1; min-width:260px; }
.top-strip-actions, .nav-actions, .hero-actions, .contact-actions, .spotlight-actions, .final-cta-actions, .cta-actions, .utility-actions {
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
.navbar {
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px;
  margin-top:0; padding:12px 18px; border-radius:26px; border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(17,28,54,.86), rgba(10,18,35,.78)); box-shadow: 0 18px 42px rgba(0,0,0,.24); backdrop-filter: blur(18px) saturate(135%); -webkit-backdrop-filter: blur(18px) saturate(135%);
  position: sticky; top: 12px; z-index: 30; overflow:hidden;
}
.navbar::before {
  content:"";
  position:absolute;
  inset:1px 1px auto 1px;
  height:52%;
  border-radius:24px 24px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  opacity:.6;
  pointer-events:none;
}
.brand-row { display:flex; align-items:center; gap:14px; flex:1; min-width:260px; }
.top-logo { width:160px; height:96px; object-fit:contain; }
.brand-meta { max-width:280px; padding-top:2px; }
.brand-tag { display:block; font-size:11px; font-weight:900; letter-spacing:.34px; text-transform:uppercase; color:var(--text); }
.brand-subtag { display:block; font-size:10px; font-weight:700; letter-spacing:.2px; color: var(--muted-2); margin-top:4px; line-height:1.35; }
.nav-middle { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; flex:1; min-width:260px; }
.nav-toggle {
  display:none;
  margin-left:auto;
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  color:#fff;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0;
  cursor:pointer;
  flex-direction:column;
}
.nav-toggle span {
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.navbar.mobile-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.mobile-open .nav-toggle span:nth-child(2) { opacity:0; }
.navbar.mobile-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-text-link { padding:9px 12px; font-size:11px; font-weight:800; letter-spacing:.18px; text-transform:uppercase; color:var(--muted-2); border-radius:999px; transition: background .18s ease, color .18s ease; }
.nav-text-link:hover { background: rgba(255,255,255,.06); color: var(--text); }
.nav-text-link.active { color: var(--text); background: rgba(255,255,255,.08); }
.btn {
  position:relative;
  overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:var(--pill); cursor:pointer;
  padding:12px 18px; border:1px solid transparent; font-weight:800; font-size:13px; letter-spacing:.01em;
  transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.nav-actions { gap:8px; }
.nav-actions .btn { padding:11px 16px; font-size:12px; }
.btn:hover { opacity:.98; transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: linear-gradient(180deg, #c3d4ff 0%, #9ebdff 42%, #86a8ff 100%); color: var(--accent-text); box-shadow: 0 18px 36px rgba(127,155,255,.28), inset 0 1px 0 rgba(255,255,255,.55); }
.btn.primary::after, .btn.soft::after, .btn.hero-ghost::after, .btn.ghost::after { content:""; position:absolute; inset:1px 1px auto 1px; height:48%; border-radius:999px; background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,0)); pointer-events:none; opacity:.65; }
.btn.ghost { background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05)); border-color: rgba(255,255,255,.14); color: var(--text); backdrop-filter: blur(10px) saturate(125%); -webkit-backdrop-filter: blur(10px) saturate(125%); }
.btn.soft { background: linear-gradient(180deg, rgba(255,255,255,1), rgba(233,241,255,.96)); color: #0f172a; box-shadow: 0 12px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.7); }
.btn.hero-ghost { background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08)); border-color: rgba(255,255,255,.22); color:#fff; backdrop-filter: blur(12px) saturate(130%); -webkit-backdrop-filter: blur(12px) saturate(130%); }
.page-main { display:grid; gap:28px; margin-top:24px; }
.hero-card {
  overflow:hidden; border-radius:38px; border:1px solid rgba(255,255,255,.12); background: linear-gradient(180deg, rgba(14,24,48,.98), rgba(9,17,34,.98)); min-height:600px;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:34%;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events:none;
  z-index:1;
}
.hero-card::after {
  content:"";
  position:absolute;
  inset:auto -90px -120px auto;
  width:280px;
  height:280px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(144,178,255,.20), rgba(144,178,255,0) 72%);
  pointer-events:none;
  z-index:1;
}
.hero-card.page-hero { min-height:400px; }
.hero-card.has-bg { background:#081021; }
.hero-bg-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-bg-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(2,6,23,.52), rgba(2,6,23,.66)); }
.hero-bg-left-shade { position:absolute; left:0; top:0; bottom:0; width:58%; background: linear-gradient(90deg, rgba(5,10,24,.82) 0%, rgba(5,10,24,.60) 58%, rgba(5,10,24,0) 100%); }
.hero-bg-bottom-shade { position:absolute; left:0; right:0; bottom:0; height:42%; background: linear-gradient(180deg, rgba(5,10,24,0) 0%, rgba(5,10,24,.64) 100%); }
.hero-layout {
  position:relative; z-index:1; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:stretch;
  gap:18px; min-height:600px; padding:30px 28px;
}
.hero-main { flex:1.35; min-width:320px; max-width:720px; display:flex; flex-direction:column; justify-content:flex-start; gap:18px; padding:28px 28px 30px; margin-top:22px; border-radius:32px; background: linear-gradient(180deg, rgba(9,16,31,.80), rgba(9,16,31,.48)); border:1px solid rgba(255,255,255,.10); box-shadow: 0 24px 60px rgba(0,0,0,.22); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.hero-badge, .section-eyebrow, .hero-page-badge, .footer-heading, .support-label, .utility-label, .cta-eyebrow, .hero-aside-label, .spotlight-eyebrow, .spotlight-aside-label, .contact-label, .hero-page-eyebrow, .hero-badge-text {
  display:inline-flex; align-self:flex-start; padding:8px 12px; border-radius:var(--pill); border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08)); color:#fff; font-size:12px; font-weight:800; letter-spacing:.5px; text-transform:uppercase;
}
.hero-title, .hero-page-title { margin:0; color:#fff; font-weight:900; letter-spacing:-.03em; }
.hero-title { font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1.05; max-width:680px; }
.hero-page-title { font-size: clamp(2.2rem, 4.2vw, 3.6rem); line-height: 1.08; max-width: 14ch; }
.hero-text, .hero-page-text { margin:0; max-width:640px; color: rgba(255,255,255,.88); font-size:16px; line-height:27px; }
.hero-pill-row, .spotlight-pills { display:flex; flex-wrap:wrap; gap:10px; }
.hero-info-pill, .hero-service-pill, .spotlight-pill {
  padding:10px 14px; border-radius:var(--pill); background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05)); border:1px solid rgba(255,255,255,.14); color:#fff; font-size:14px; font-weight:700;
}
.notice-card { max-width:420px; padding:16px 18px; border-radius:22px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); }
.notice-title { font-size:15px; font-weight:900; margin:0 0 8px; }
.notice-text { margin:0; color: rgba(255,255,255,.82); line-height:1.65; }
.hero-aside {
  flex:.9; min-width:280px; max-width:400px; align-self:flex-end; border-radius:30px; border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(7,12,28,.84), rgba(7,12,28,.72)); padding:20px; display:grid; gap:15px; box-shadow: 0 20px 52px rgba(0,0,0,.26); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.hero-aside-label { background: transparent; border:none; padding:0; color: rgba(255,255,255,.74); }
.hero-facts-grid, .metric-band, .feature-grid, .service-grid, .vehicle-grid, .steps-grid, .faq-grid, .panel-grid {
  display:grid; gap:18px;
}
.hero-facts-grid { grid-template-columns:1fr; gap:14px; }
.hero-fact-card, .summary-card, .metric-card, .feature-card, .service-card, .step-card, .faq-card, .panel-card {
  border-radius:20px; padding:16px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.09);
}
.hero-fact-value, .summary-title, .metric-value, .feature-title, .service-title, .step-title, .faq-question, .panel-title {
  color:#fff; font-weight:900;
}
.hero-fact-value { font-size:18px; margin:0 0 8px; }
.hero-fact-text, .summary-text, .metric-label { color: rgba(255,255,255,.78); font-size:14px; line-height:22px; margin:0; }
.summary-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.summary-card { position:relative; overflow:hidden; border-radius:24px; border:1px solid var(--line); background: linear-gradient(180deg, rgba(16,28,56,.98), rgba(9,17,35,.98)); padding:22px; box-shadow: var(--shadow-soft); }
.summary-title { margin:0 0 10px; font-size:20px; }
.metric-band { grid-template-columns:repeat(4,1fr); }
.metric-card { position:relative; overflow:hidden; border-radius:26px; border:1px solid var(--line); background: linear-gradient(180deg, rgba(16,28,56,.98), rgba(9,17,35,.98)); padding:22px; box-shadow: var(--shadow-soft); }
.metric-value { display:block; margin-bottom:10px; font-size:22px; }
.metric-label { color: var(--muted); }
.section-band-muted {
  position:relative;
  overflow:hidden;
  display:grid; gap:28px; padding:32px; border-radius:34px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)); border:1px solid rgba(255,255,255,.10);
}
.section-band { position:relative; overflow:hidden; display:grid; gap:28px; padding:32px; border-radius:34px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.10); }
.section-band::before, .section-band-muted::before {
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:120px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0));
  pointer-events:none;
}
.section { display:grid; gap:18px; }
.section-header { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-end; gap:20px; }
.section-header-main { max-width:780px; }
.section-header .section-eyebrow { background: transparent; border-color: var(--line); color: var(--muted); }
.section-title { margin:12px 0 8px; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height:1.1; letter-spacing:-.03em; }
.section-text { margin:0; color: var(--muted); line-height:1.7; max-width:62ch; }
.feature-grid, .service-grid, .vehicle-grid, .steps-grid, .faq-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .service-card, .vehicle-card, .step-card, .business-card, .contact-card, .coverage-card, .faq-card, .panel-card, .utility-card, .utility-action-card, .support-card-large, .support-card-small, .cta-section, .enquiry-card, .legal-card {
  position:relative; overflow:hidden;
  border-radius:28px; border:1px solid rgba(255,255,255,.11); background: linear-gradient(180deg, rgba(16,28,56,.98), rgba(9,17,35,.98)); padding:22px; box-shadow: var(--shadow-soft); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature-card::before, .service-card::before, .vehicle-card::before, .step-card::before, .business-card::before, .contact-card::before, .coverage-card::before, .faq-card::before, .panel-card::before, .utility-card::before, .utility-action-card::before, .support-card-large::before, .support-card-small::before, .cta-section::before, .enquiry-card::before, .legal-card::before, .summary-card::before, .metric-card::before, .service-visual-card::before, .footer::before, .final-cta::before, .app-showcase-media::before, .app-showcase-copy::before, .business-intro-card::before, .business-model-card::before, .helper-band::before {
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:36%;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,0));
  pointer-events:none;
}
.feature-eyebrow { color: var(--muted-2); text-transform:uppercase; letter-spacing:.5px; font-size:12px; font-weight:800; }
.feature-title { font-size:22px; line-height:1.2; margin:8px 0 10px; }
.feature-text, .service-text, .vehicle-text, .step-text, .business-lead, .coverage-text, .faq-answer, .panel-text, .support-text, .utility-text, .cta-text, .footer-text, .footer-meta, .support-mini-text, .contact-text, .legal-copy p {
  color: var(--muted); line-height:1.7; margin:0;
}
.service-title, .vehicle-title, .step-title { font-size:22px; line-height:1.2; margin:0 0 10px; }
.section-actions { display:flex; }
.inline-button { padding:12px 16px; border-radius:var(--pill); border:1px solid var(--line); background: var(--bg); color: var(--text); font-weight:800; display:inline-flex; }
.vehicle-card { overflow:hidden; padding:0; }
.vehicle-image { width:100%; height:240px; object-fit:cover; }
.vehicle-body { display:grid; gap:10px; padding:22px; }
.step-number {
  display:inline-flex; width:52px; height:52px; border-radius:16px; align-items:center; justify-content:center; font-weight:900; color: var(--accent-2);
  background: rgba(86,137,255,.14); border:1px solid rgba(132,173,255,.20); margin-bottom:16px;
}
.spotlight-band {
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px;
}
.spotlight-main, .spotlight-aside {
  border-radius:30px; border:1px solid var(--line); padding:28px; box-shadow: var(--shadow-soft);
}
.spotlight-main { background: linear-gradient(180deg, rgba(15,27,52,.98), rgba(9,17,35,.98)); }
.spotlight-aside { background: linear-gradient(180deg, rgba(14,24,46,.96), rgba(8,16,31,.96)); }
.spotlight-eyebrow, .spotlight-aside-label, .contact-label, .support-label, .utility-label, .footer-heading, .cta-eyebrow, .hero-page-eyebrow {
  background:none; border:none; padding:0; color: var(--muted-2); letter-spacing:.5px; font-size:12px;
}
.spotlight-title, .spotlight-aside-title, .support-title, .utility-title, .utility-title-small, .cta-title { margin:0 0 10px; font-weight:900; line-height:1.15; }
.spotlight-title { font-size:34px; }
.spotlight-aside-title { font-size:28px; }
.spotlight-text, .spotlight-aside-text { color: var(--muted); line-height:1.75; margin:0; }
.business-layout, .coverage-layout, .support-band, .utility-band { display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; }

.spotlight-image-wrap { margin-top:18px; }
.spotlight-image, .app-showcase-image {
  width:100%; display:block; border-radius:28px; border:1px solid var(--line); box-shadow: var(--shadow-soft);
}
.app-showcase {
  display:grid; grid-template-columns: .9fr 1.1fr; gap:18px; align-items:center;
  margin: 0 0 26px;
}
.app-showcase-left { grid-template-columns: .9fr 1.1fr; }
.app-showcase-right { grid-template-columns: 1.1fr .9fr; }
.app-showcase-media, .app-showcase-copy {
  position:relative; overflow:hidden;
  border-radius:30px; border:1px solid var(--line); padding:28px; box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(15,27,52,.98), rgba(9,17,35,.98));
}
.app-showcase-copy { background: linear-gradient(180deg, rgba(14,24,46,.96), rgba(8,16,31,.96)); }

.contact-value { font-size:22px; font-weight:900; color:#fff; margin:0; }
.point-list { display:grid; gap:10px; padding-top:4px; }
.point-row { display:flex; align-items:flex-start; gap:10px; }
.point-dot { width:8px; height:8px; border-radius:999px; background: var(--accent); margin-top:8px; flex-shrink:0; }
.point-text { color: var(--text); font-size:14px; line-height:22px; flex:1; }
.faq-card { background: linear-gradient(180deg, rgba(13,22,42,.94), rgba(8,16,33,.98)); }
.final-cta {
  position:relative; overflow:hidden; border-radius:32px; border:1px solid var(--line); background: linear-gradient(180deg, rgba(16,28,56,.98), rgba(9,17,35,.98));
  padding:28px; display:grid; gap:18px;
}
.final-cta-glow { position:absolute; right:-120px; top:-90px; width:320px; height:320px; border-radius:999px; background: rgba(127,155,255,.16); pointer-events:none; }
.final-cta-eyebrow { color: var(--muted-2); font-weight:800; text-transform:uppercase; letter-spacing:.5px; font-size:12px; }
.final-cta-title { margin:10px 0; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height:1.1; letter-spacing:-.03em; }
.final-cta-text { margin:0; color: var(--muted); line-height:1.75; max-width:65ch; }
.page-hero .hero-body { position:relative; z-index:2; max-width:780px; padding:34px 28px; display:grid; gap:14px; }
.hero-page-badge { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); }
.utility-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.business-intro-grid {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
}
.business-intro-card, .business-model-card {
  border-radius:28px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(11,19,36,.98), rgba(8,16,33,.98));
  box-shadow: var(--shadow-soft);
  padding:24px;
}
.business-intro-main {
  background: linear-gradient(180deg, rgba(15,24,46,.98), rgba(8,16,33,.98));
}
.business-model-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}
.business-steps-section {
  display:grid;
  gap:20px;
}
.business-steps-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.utility-card, .utility-action-card { padding:22px; display:grid; gap:12px; }
.utility-action-card { background: var(--bg); }
.utility-title { font-size:24px; }
.utility-title-small { font-size:22px; }
.utility-ghost-button { padding:12px 16px; border-radius:var(--pill); border:1px solid var(--line); background: var(--card); color: var(--text); font-weight:800; }
.panel-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

.service-visual-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}
.service-visual-card {
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(11,19,36,.98), rgba(8,16,33,.98));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-visual-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(2, 8, 23, .30);
  border-color: rgba(143, 176, 255, .22);
}
.service-visual-image {
  width:100%;
  height:258px;
  object-fit:cover;
  object-position:center;
  display:block;
  border-bottom:1px solid rgba(255,255,255,.08);
  filter: saturate(1.04) contrast(1.03);
}
.service-visual-body {
  display:grid;
  gap:10px;
  padding:22px;
  background: linear-gradient(180deg, rgba(11,19,36,.18), rgba(8,16,33,.98) 18%, rgba(8,16,33,.98) 100%);
}
.service-visual-eyebrow {
  color: var(--muted-2);
  text-transform:uppercase;
  letter-spacing:.5px;
  font-size:12px;
  font-weight:800;
}
.service-visual-title {
  margin:0;
  font-size:22px;
  line-height:1.2;
  font-weight:900;
}
.service-visual-text {
  margin:0;
  color: var(--muted);
  line-height:1.7;
}
.tag-strip {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag-pill {
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:var(--pill);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  color: var(--text);
  font-size:13px;
  font-weight:800;
}
.section-services-showcase,
.section-who-we-help {
  gap:20px;
}

.panel-title { font-size:22px; line-height:1.25; margin:0 0 10px; }
.support-band { grid-template-columns: 1.2fr .8fr; }
.support-title { font-size:28px; }
.cta-section { padding:28px; display:grid; gap:18px; }
.enquiry-card {
  display:grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap:24px;
  align-items:start;
  padding:30px;
}
.enquiry-card > div { display:grid; gap:10px; align-content:start; }
.enquiry-card form { display:grid; gap:16px; }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.field-block { display:grid; gap:8px; }
.field-label { color: var(--text); font-weight:800; font-size:13px; }
.text-input, .text-area, .select-like {
  width:100%; min-height:52px; border-radius:18px; border:1px solid rgba(255,255,255,.10); background: rgba(4,9,20,.88); color: var(--text);
  padding:14px 16px; font:inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.text-input:focus, .text-area:focus, .select-like:focus {
  outline:none;
  border-color: rgba(131,168,255,.44);
  box-shadow: 0 0 0 3px rgba(97,142,255,.12), inset 0 1px 0 rgba(255,255,255,.05);
  background: rgba(6,12,26,.96);
}
.text-area { min-height:170px; resize:vertical; }
.chip-wrap { display:flex; flex-wrap:wrap; gap:10px; }
.chip { display:inline-flex; padding:10px 14px; border-radius:var(--pill); border:1px solid var(--line); background: var(--bg); color:var(--text); font-weight:800; font-size:13px; cursor:pointer; }
.chip.active { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.helper-band {
  position:relative; overflow:hidden;
  border-radius:22px; padding:18px; background: linear-gradient(180deg, rgba(8,15,31,.98), rgba(11,19,38,.98));
  border:1px solid rgba(255,255,255,.10); display:grid; gap:8px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.helper-title { color: var(--text); font-weight:900; font-size:16px; margin:0; }
.helper-text, .support-email, .form-feedback { color: var(--muted); margin:0; line-height:1.6; }
.form-feedback { color: var(--accent); font-weight:700; min-height:20px; }
.support-card-large, .support-card-small { display:grid; gap:12px; align-content:start; }
.footer {
  position:relative; overflow:hidden;
  display:grid; grid-template-columns: 1.2fr .45fr .45fr .45fr; gap:24px; border-radius:32px; border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(13,24,48,.98), rgba(8,15,31,.98)); padding:28px; margin-bottom:8px; box-shadow: var(--shadow-soft);
}
.footer-logo { width:180px; height:120px; object-fit:contain; }
.footer-text { font-weight:800; max-width:480px; }
.footer-meta { color: rgba(255,255,255,.64); font-size:13px; line-height:20px; }
.footer-column { display:grid; gap:10px; align-self:start; }
.footer-heading { color: rgba(255,255,255,.62); margin-bottom:4px; }
.footer-link { color:#fff; font-weight:800; font-size:14px; }
.footer-bottom { padding:0 4px; }
.footer-bottom-text { color: var(--muted-2); font-size:12px; font-weight:700; line-height:20px; }

.nav-text-link, .inline-button, .utility-ghost-button, .chip, .tag-pill, .footer-badge, .footer-bottom-link {
  position:relative;
  overflow:hidden;
}

.inline-button, .utility-ghost-button, .chip, .footer-bottom-link {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.nav-text-link:hover,
.feature-card:hover, .service-card:hover, .vehicle-card:hover, .step-card:hover, .business-card:hover,
.contact-card:hover, .coverage-card:hover, .faq-card:hover, .panel-card:hover, .utility-card:hover,
.utility-action-card:hover, .support-card-large:hover, .support-card-small:hover, .service-visual-card:hover,
.summary-card:hover, .metric-card:hover, .app-showcase-media:hover, .app-showcase-copy:hover {
  border-color: rgba(167,192,255,.24);
  box-shadow: 0 24px 54px rgba(2,8,23,.30);
}

.hero-bg-image, .spotlight-image, .app-showcase-image {
  filter: saturate(1.06) contrast(1.04);
}

.hero-main, .hero-aside, .spotlight-copy-block {
  box-shadow: 0 26px 60px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
}

.service-visual-card {
  border-color: rgba(255,255,255,.12);
}

.footer::after, .final-cta::after, .section-band::after, .section-band-muted::after {
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:260px;
  height:260px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(136,221,255,.12), rgba(136,221,255,0) 72%);
  pointer-events:none;
}
.legal-page { padding:34px 0 60px; }
.legal-card h1 { margin:12px 0 6px; font-size: clamp(2rem, 4vw, 3rem); letter-spacing:-.03em; }
.legal-meta { color: var(--muted); margin-bottom:20px; }
.legal-copy { display:grid; gap:14px; }
.legal-footer-box { margin-top:18px; border:1px solid var(--line); border-radius:18px; padding:18px; background: var(--card); }
.muted { color: var(--muted); }
@media (max-width: 1180px) {
  .summary-strip, .metric-band, .feature-grid, .service-grid, .vehicle-grid, .steps-grid, .faq-grid,
  .service-visual-grid, .utility-band, .panel-grid, .spotlight-band, .app-showcase, .business-layout, .coverage-layout, .support-band, .footer, .business-intro-grid, .business-model-grid, .business-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .navbar, .top-strip, .section-header { align-items:flex-start; }
  .navbar {
    padding:14px;
    gap:12px;
    border-radius:24px;
  }
  .brand-row {
    min-width:0;
    flex:1;
    align-items:center;
  }
  .brand-meta {
    max-width:none;
  }
  .nav-toggle {
    display:inline-flex;
    flex:0 0 auto;
  }
  .nav-middle,
  .nav-actions {
    display:none;
    width:100%;
    min-width:0;
  }
  .navbar.mobile-open .nav-middle,
  .navbar.mobile-open .nav-actions {
    display:flex;
  }
  .navbar.mobile-open .nav-middle {
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding-top:6px;
  }
  .navbar.mobile-open .nav-actions {
    padding-top:4px;
  }
  .nav-text-link {
    width:100%;
    min-height:46px;
    justify-content:flex-start;
    padding:12px 14px;
    font-size:12px;
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
  }
  .nav-actions {
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .nav-actions .btn {
    width:100%;
    min-height:48px;
    justify-content:center;
  }
  .hero-layout, .summary-strip, .metric-band, .feature-grid, .service-grid, .vehicle-grid, .steps-grid,
  .faq-grid, .service-visual-grid, .utility-band, .panel-grid, .spotlight-band, .app-showcase, .business-layout, .coverage-layout, .support-band, .business-intro-grid, .business-model-grid, .business-steps-grid,
  .enquiry-card, .footer, .form-grid { grid-template-columns: 1fr !important; }
  .hero-layout, .utility-band, .panel-grid, .spotlight-band, .app-showcase, .business-layout, .coverage-layout, .support-band, .enquiry-card { display:grid; }
  .hero-layout {
    min-height:auto;
    padding:24px;
    gap:16px;
  }
  .hero-main,
  .hero-aside {
    max-width:none;
    min-width:0;
  }
  .hero-main {
    margin-top:10px;
    padding:24px;
  }
  .hero-card,
  .hero-card.page-hero {
    min-height:auto;
  }
  .hero-page-title { max-width:none; }
  .hero-actions,
  .cta-actions,
  .final-cta-actions,
  .contact-actions,
  .spotlight-actions,
  .utility-actions {
    width:100%;
  }
  .hero-actions .btn,
  .cta-actions .btn,
  .final-cta-actions .btn,
  .contact-actions .btn,
  .spotlight-actions .btn,
  .utility-actions .btn {
    flex:1 1 calc(50% - 6px);
    min-height:48px;
  }
  .premium-trust-band,
  .tag-strip,
  .footer-bottom-links {
    gap:10px;
  }
  .enquiry-card {
    gap:18px;
    overflow:hidden;
  }
  .enquiry-card > div,
  .enquiry-card form,
  .field-block,
  .text-input,
  .text-area,
  .select-like,
  .chip-wrap,
  .helper-band,
  .support-email,
  .form-feedback {
    min-width:0;
    max-width:100%;
  }
  .chip {
    white-space:normal;
    text-align:left;
  }
  .support-email {
    overflow-wrap:anywhere;
  }
}
@media (max-width: 760px) {
  .container { width:min(100% - 24px, 1320px); }
  .page-shell { padding:14px 0 44px; }
  .top-logo { width:132px; height:82px; }
  .brand-row { gap:10px; }
  .brand-tag { font-size:10px; }
  .brand-subtag {
    font-size:9px;
    margin-top:3px;
  }
  .hero-layout {
    padding:18px;
    min-height: auto;
  }
  .hero-main,
  .hero-aside,
  .hero-card.page-hero .hero-body {
    padding:18px;
  }
  .hero-title { font-size: clamp(1.75rem, 8.6vw, 2.5rem); }
  .hero-page-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-text,
  .hero-page-text,
  .cta-text,
  .section-text,
  .notice-text {
    font-size:15px;
    line-height:1.7;
  }
  .hero-pill-row,
  .spotlight-pills,
  .hero-actions,
  .cta-actions,
  .final-cta-actions,
  .contact-actions,
  .spotlight-actions,
  .utility-actions {
    gap:10px;
  }
  .hero-actions .btn,
  .cta-actions .btn,
  .final-cta-actions .btn,
  .contact-actions .btn,
  .spotlight-actions .btn,
  .utility-actions .btn,
  .section-actions .inline-button {
    width:100%;
    flex:1 1 100%;
  }
  .hero-action-note,
  .cta-helper,
  .footer-bottom-text {
    font-size:12px;
    line-height:1.6;
  }
  .premium-trust-band,
  .footer-bottom-links,
  .footer-badges {
    display:grid;
    grid-template-columns:1fr;
  }
  .service-visual-image {
    height:200px;
  }
  .app-showcase-media {
    min-height:280px;
    padding:14px;
  }
  .app-showcase-image {
    width:min(100%, 520px);
    max-height:360px;
  }
  .section-band, .section-band-muted, .feature-card, .service-card, .service-visual-body, .vehicle-body, .step-card,
  .business-card, .contact-card, .coverage-card, .faq-card, .summary-card, .metric-card, .utility-card,
  .utility-action-card, .panel-card, .support-card-large, .support-card-small, .cta-section, .final-cta,
  .enquiry-card, .legal-card, .footer { padding:18px; }
  .enquiry-card {
    gap:16px;
    border-radius:22px;
  }
  .enquiry-card .service-title {
    font-size:24px !important;
    line-height:1.18 !important;
  }
  .enquiry-card form {
    gap:14px;
  }
  .text-input, .text-area, .select-like {
    min-height:48px;
    border-radius:15px;
    padding:13px 14px;
    font-size:16px;
  }
  .text-area {
    min-height:150px;
  }
  .chip-wrap {
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }
  .chip {
    width:100%;
    justify-content:flex-start;
  }
  .utility-ghost-button {
    width:100%;
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
}


.spotlight-band-unified {
  display: block;
  max-width: 1320px;
  background: transparent;
}
.spotlight-band-unified .spotlight-copy-block {
  position: absolute;
  z-index: 2;
  width: min(100%, 430px);
  border-radius: 32px;
  background: rgba(7, 13, 27, 0.22);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  padding: 20px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.spotlight-band-unified .spotlight-copy-block-secondary {
  width: min(100%, 380px);
}
.spotlight-band-unified .spotlight-copy-block .spotlight-title {
  font-size: 30px;
}
.spotlight-band-unified .spotlight-copy-block .spotlight-aside-title {
  font-size: 24px;
}
.spotlight-band-unified .spotlight-copy-block .spotlight-text,
.spotlight-band-unified .spotlight-copy-block .spotlight-aside-text {
  line-height: 1.65;
}
.spotlight-band-unified .spotlight-copy-block .spotlight-pills {
  gap: 8px;
}
.spotlight-band-unified .spotlight-copy-block .spotlight-pill {
  padding: 9px 13px;
  font-size: 13px;
}
.spotlight-image-wrap-wide {
  grid-column: 1 / -1;
  margin-top: 0;
}
.spotlight-image-overlay-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.spotlight-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 54%, rgba(4,8,18,.04) 0%, rgba(4,8,18,.18) 24%, rgba(4,8,18,.34) 64%, rgba(4,8,18,.56) 100%),
    linear-gradient(180deg, rgba(4,8,18,.56) 0%, rgba(4,8,18,.18) 34%, rgba(4,8,18,.10) 58%, rgba(4,8,18,.46) 100%),
    linear-gradient(90deg, rgba(4,8,18,.50) 0%, rgba(4,8,18,.18) 30%, rgba(4,8,18,.08) 52%, rgba(4,8,18,.26) 70%, rgba(4,8,18,.46) 100%);
}
.spotlight-image-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
}
.spotlight-band-unified .spotlight-copy-block:first-child {
  top: 28px;
  left: 28px;
}
.spotlight-band-unified .spotlight-copy-block-secondary {
  right: 28px;
  bottom: 28px;
}
.spotlight-image-wide {
  display: block;
  width: 100%;
  height: 500px;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, rgba(6,12,24,.84), rgba(6,12,24,.84));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 1100px) {
  .spotlight-band-unified .spotlight-copy-block {
    width: min(100%, 400px);
    padding: 18px 20px;
  }
  .spotlight-band-unified .spotlight-copy-block-secondary {
    width: min(100%, 360px);
  }
}
@media (max-width: 980px) {
  .spotlight-image-overlay-card {
    min-height: 760px;
  }
  .spotlight-image-content {
    padding: 22px;
  }
  .spotlight-band-unified .spotlight-copy-block,
  .spotlight-band-unified .spotlight-copy-block-secondary {
    position: static;
    width: 100%;
    max-width: none;
  }
  .spotlight-band-unified .spotlight-copy-block:first-child,
  .spotlight-band-unified .spotlight-copy-block-secondary {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .spotlight-image-content {
    display: grid;
    align-content: space-between;
    gap: 18px;
  }
  .spotlight-image-wide {
    height: 760px;
    object-fit: contain;
  }
}
@media (max-width: 760px) {
  .spotlight-image-overlay-card {
    min-height: 780px;
  }
  .spotlight-band-unified .spotlight-copy-block {
    padding: 20px;
    border-radius: 24px;
  }
  .spotlight-image-content {
    padding: 18px;
  }
  .spotlight-image-wide {
    height: 780px;
    object-fit: contain;
  }
}


.hero-main .hero-actions { margin-top: 2px; }
.hero-action-note { margin: 2px 0 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; max-width: 560px; }
.hero-card:not(.page-hero) .hero-pill-row { max-width: 720px; }


.hero-card::before,
.feature-card::before,
.step-card::before,
.faq-card::before,
.panel-card::before,
.utility-card::before,
.utility-action-card::before,
.business-intro-card::before,
.business-model-card::before,
.cta-section::before,
.enquiry-card::before,
.support-card-large::before,
.support-card-small::before,
.service-visual-card::before,
.final-cta::before,
.footer::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 28%);
  opacity:.75;
}

.feature-card:hover,
.step-card:hover,
.faq-card:hover,
.panel-card:hover,
.utility-card:hover,
.utility-action-card:hover,
.business-intro-card:hover,
.business-model-card:hover,
.service-visual-card:hover {
  transform: translateY(-3px);
  border-color: rgba(143,176,255,.24);
  box-shadow: 0 26px 52px rgba(2,8,23,.26);
}

.page-hero .hero-body {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 30px;
  margin: 30px 0 30px 28px;
  display: grid;
  gap: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(8,16,33,.82), rgba(8,16,33,.56));
  box-shadow: 0 26px 58px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.premium-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: var(--shadow-soft);
}

.premium-trust-band-compact {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.premium-trust-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(13,22,42,.98), rgba(8,16,33,.98));
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.premium-trust-item::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0) 34%);
}

.premium-trust-value {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.premium-trust-label {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.utility-action-card,
.business-intro-main {
  background: linear-gradient(180deg, rgba(16,27,52,.98), rgba(8,16,33,.98));
}

.final-cta,
.cta-section {
  border-color: rgba(255,255,255,.10);
}

@media (max-width: 1180px) {
  .premium-trust-band,
  .premium-trust-band-compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .page-hero .hero-body {
    margin: 24px;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-shell { padding-top: 14px; }
  .navbar { top: 10px; }
  .hero-main {
    margin-top: 0;
    padding: 22px 20px 24px;
    border-radius: 26px;
  }
  .page-hero .hero-body {
    margin: 18px;
    padding: 22px 20px;
    border-radius: 26px;
  }
  .premium-trust-band,
  .premium-trust-band-compact {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .premium-trust-item {
    padding: 16px;
  }
  .service-visual-image {
    height: 220px;
  }
}



.app-signal-row {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:14px;
}
.app-signal {
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:#fff;
}
.app-signal strong {
  font-size:14px;
  line-height:1.3;
}
.app-signal-label {
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,.60);
}

.spotlight-image, .app-showcase-image {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, filter .35s ease;
}

.spotlight-image-overlay-card {
  background:
    radial-gradient(circle at 16% 20%, rgba(99,142,255,.16), rgba(99,142,255,0) 28%),
    radial-gradient(circle at 82% 78%, rgba(124,255,198,.12), rgba(124,255,198,0) 26%),
    linear-gradient(180deg, rgba(9,18,36,.98), rgba(5,10,22,.98));
}
.spotlight-image-overlay-card::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 22%);
}
.spotlight-image-overlay-card:hover .spotlight-image-wide {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}
.spotlight-image-content {
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:18px;
}
.spotlight-band-unified .spotlight-copy-block {
  background: linear-gradient(180deg, rgba(8,16,33,.52), rgba(8,16,33,.30));
  border-color: rgba(162,191,255,.18);
  box-shadow: 0 28px 64px rgba(0,0,0,.24);
}
.spotlight-band-unified .spotlight-copy-block:first-child {
  width: min(100%, 470px);
}
.spotlight-band-unified .spotlight-copy-block-secondary {
  width: min(100%, 390px);
}
.spotlight-image-wide {
  filter: saturate(1.03) contrast(1.02);
}

.app-showcase {
  gap:20px;
  margin: 2px 0 30px;
}
.app-showcase-media {
  position:relative;
  overflow:hidden;
  min-height:460px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 18% 18%, rgba(99,142,255,.17), rgba(99,142,255,0) 30%),
    radial-gradient(circle at 82% 80%, rgba(124,255,198,.13), rgba(124,255,198,0) 24%),
    linear-gradient(180deg, rgba(12,21,40,.98), rgba(7,14,29,.98));
}
.app-showcase-media::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 26%);
}
.app-showcase-copy {
  display:grid;
  align-content:center;
  gap:16px;
  background: linear-gradient(180deg, rgba(10,16,30,.98), rgba(7,14,29,.98));
}
.app-showcase-copy .section-title {
  margin:0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}
.app-showcase-copy .section-text {
  max-width: 54ch;
}
.app-showcase-image {
  position:relative;
  z-index:1;
  width:min(100%, 660px);
  max-height:520px;
  object-fit:contain;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  background: rgba(7,14,29,.22);
}
.app-showcase:hover .app-showcase-image {
  transform: translateY(-4px);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 980px) {
  .app-signal-row {
    grid-template-columns: 1fr;
  }
  .spotlight-image-content {
    display:grid;
    align-content:space-between;
  }
  .app-showcase-media {
    min-height:360px;
  }
  .app-showcase-image {
    max-height:420px;
  }
}

@media (max-width: 760px) {
  .app-showcase-media {
    min-height:320px;
    padding:18px;
  }
  .app-showcase-copy .section-title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }
}


.cta-section,
.final-cta {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 26px;
}

.cta-section::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: auto -110px -150px auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127,155,255,.13), rgba(127,155,255,0) 70%);
  pointer-events: none;
}

.cta-copy,
.final-cta-copy {
  display: grid;
  gap: 10px;
}

.cta-actions-wrap,
.final-cta-actions-wrap {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.cta-actions,
.final-cta-actions {
  align-items: center;
}

.cta-helper {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.65;
  max-width: 48ch;
}

.final-cta-helper {
  color: rgba(255,255,255,.78);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.footer-column {
  align-content: start;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.footer-link:hover {
  color: #d7e1ff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom-link:hover {
  background: rgba(255,255,255,.08);
}

@media (max-width: 980px) {
  .cta-section,
  .final-cta {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .cta-actions-wrap,
  .final-cta-actions-wrap,
  .footer-bottom-links {
    width: 100%;
  }

  .footer-bottom-link {
    justify-content: center;
  }
}

.navbar.mobile-open { box-shadow: 0 24px 56px rgba(0,0,0,.30); }


/* Performance pass */
.hero-bg-image,
.service-visual-image,
.app-showcase-image,
.spotlight-image,
.vehicle-image,
.top-logo,
.footer-logo {
  image-rendering: auto;
}

@media (max-width: 760px) {
  .navbar,
  .hero-main,
  .hero-aside,
  .page-hero .hero-body,
  .spotlight-band-unified .spotlight-copy-block,
  .btn.ghost,
  .btn.hero-ghost {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .navbar,
  .hero-main,
  .hero-aside,
  .page-hero .hero-body,
  .spotlight-band-unified .spotlight-copy-block,
  .summary-card,
  .metric-card,
  .service-visual-card,
  .business-card,
  .contact-card,
  .coverage-card,
  .faq-card,
  .footer {
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
  }

  .hero-card::after,
  .summary-card::before,
  .metric-card::before,
  .service-visual-card::before {
    display: none;
  }
}


.footer-social-group {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}


.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  opacity: 0.96;
}

.footer-social-link[data-social-link="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='ig' x1='3' y1='21' x2='21' y2='3' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FEDA75'/%3E%3Cstop offset='0.32' stop-color='%23FA7E1E'/%3E%3Cstop offset='0.62' stop-color='%23D62976'/%3E%3Cstop offset='0.82' stop-color='%239622B0'/%3E%3Cstop offset='1' stop-color='%234F5BD5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='3.2' y='3.2' width='17.6' height='17.6' rx='5.2' stroke='url(%23ig)' stroke-width='1.9'/%3E%3Ccircle cx='12' cy='12' r='4.2' stroke='url(%23ig)' stroke-width='1.9'/%3E%3Ccircle cx='17.2' cy='6.8' r='1.15' fill='url(%23ig)'/%3E%3C/svg%3E");
}

.footer-social-link[data-social-link="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13.4 20.3v-7h2.4l.4-2.8h-2.8V8.7c0-.8.2-1.3 1.4-1.3h1.5V4.9c-.3 0-1.2-.1-2.2-.1-2.2 0-3.7 1.3-3.7 3.8v1.9H8v2.8h2.3v7h3.1Z' fill='%231877F2'/%3E%3C/svg%3E");
}

.footer-social-link[data-social-link="linkedin"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='9.3' width='3.1' height='10.7' rx='0.8' fill='%230A66C2'/%3E%3Crect x='4' y='4' width='3.1' height='3.1' rx='1.55' fill='%230A66C2'/%3E%3Cpath d='M10 9.3h2.9v1.5c.6-1 1.8-1.8 3.5-1.8 3 0 4.6 1.9 4.6 5.3V20h-3.1v-5c0-1.6-.6-2.7-2.1-2.7-1.2 0-1.9.8-2.2 1.6-.1.3-.1.7-.1 1V20H10V9.3Z' fill='%230A66C2'/%3E%3C/svg%3E");
}

.footer-social-heading {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Professional conversion polish */
.pro-journey-section,
.service-promise-section,
.business-account-section {
  position: relative;
  z-index: 1;
}

.pro-journey-grid,
.service-promise-grid,
.business-account-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pro-journey-card,
.service-promise-card,
.business-account-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(15,26,51,.96), rgba(8,16,33,.98));
  box-shadow: var(--shadow-soft);
}

.pro-journey-card,
.service-promise-card,
.business-account-card {
  padding: 22px;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.pro-journey-card::before,
.service-promise-card::before,
.business-account-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 36%);
}

.pro-journey-step,
.service-promise-label {
  position: relative;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pro-journey-card h3,
.service-promise-card h3,
.business-account-card h3 {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.pro-journey-card p,
.service-promise-card p,
.business-account-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 650;
}

.service-promise-card.highlighted {
  border-color: rgba(144,178,255,.34);
  background:
    radial-gradient(circle at 12% 0%, rgba(144,178,255,.20), transparent 36%),
    linear-gradient(180deg, rgba(18,32,64,.98), rgba(8,16,33,.98));
}


@media (max-width: 1180px) {
  .pro-journey-grid,
  .service-promise-grid,
  .business-account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pro-journey-grid,
  .service-promise-grid,
  .business-account-grid {
    grid-template-columns: 1fr;
  }
  .pro-journey-card,
  .service-promise-card,
  .business-account-card {
    min-height: 0;
    padding: 18px;
  }
}
