:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --card: rgba(255,255,255,.07);
  --card-strong: rgba(255,255,255,.10);
  --text: #f7fbff;
  --muted: #a9b8c9;
  --line: rgba(255,255,255,.12);
  --blue: #63a9ff;
  --blue-2: #8fc5ff;
  --green: #79e6b5;
  --shadow: 0 24px 70px rgba(0,0,0,.32);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(71,145,255,.25), transparent 32rem),
    radial-gradient(circle at 82% 24%, rgba(121,230,181,.12), transparent 28rem),
    linear-gradient(180deg, var(--bg), #050b14 72%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}

a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 750; letter-spacing: -.02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 13px;
  box-shadow: 0 10px 30px rgba(70,132,255,.35);
  object-fit: cover; display: block;
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav-links a:hover { color: var(--text); }

.hero { padding: 76px 0 86px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--green); font-weight: 700; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
h1 { font-size: clamp(3rem, 7vw, 5.6rem); line-height: .98; letter-spacing: -.055em; margin: 14px 0 24px; max-width: 800px; }
.lede { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 650px; margin: 0 0 30px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid var(--line); background: rgba(255,255,255,.045); color: #d8e3ef; border-radius: 999px; padding: 9px 13px; font-size: .88rem; }

.phone-card { background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045)); border: 1px solid var(--line); border-radius: 34px; padding: 18px; box-shadow: var(--shadow); transform: rotate(1deg); }
.phone-inner { background: #f5f7fb; color: #17202c; border-radius: 25px; padding: 25px 22px 22px; min-height: 500px; }
.phone-kicker { color: #7b8491; font-size: .82rem; }
.phone-title { font-size: 1.65rem; font-weight: 800; letter-spacing: -.04em; margin: 4px 0 20px; }
.action { background: white; border: 1px solid #e8ebef; border-radius: 17px; padding: 15px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; box-shadow: 0 5px 18px rgba(20,35,60,.06); }
.action-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #e8f2ff; color: #2167bd; font-weight: 800; }
.action strong { display: block; font-size: .95rem; }
.action small { display: block; color: #7c8793; margin-top: 2px; }
.route-card { margin-top: 20px; background: #0c1828; color: white; border-radius: 20px; padding: 18px; }
.route-head { display: flex; justify-content: space-between; color: #b8c4d1; font-size: .82rem; margin-bottom: 16px; }
.route-row { display: grid; grid-template-columns: 20px 1fr auto; gap: 10px; align-items: center; min-height: 52px; }
.dot { width: 10px; height: 10px; margin-left: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(99,169,255,.14); }
.route-name { font-weight: 650; }
.route-miles { color: #9eb2c7; font-size: .84rem; }
.total { border-top: 1px solid rgba(255,255,255,.13); margin-top: 8px; padding-top: 14px; display: flex; justify-content: space-between; font-weight: 750; }

.section { padding: 62px 0; }
.section h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.045em; margin: 0 0 14px; }
.section-intro { color: var(--muted); max-width: 660px; margin: 0 0 28px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; min-height: 185px; }
.card .icon { font-size: 1.6rem; margin-bottom: 24px; }
.card h3 { margin: 0 0 8px; letter-spacing: -.02em; }
.card p { color: var(--muted); margin: 0; font-size: .94rem; }

.cta { margin: 56px 0 86px; padding: 34px; border-radius: 28px; background: linear-gradient(135deg, rgba(95,163,255,.18), rgba(121,230,181,.10)); border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { margin: 0 0 8px; letter-spacing: -.03em; }
.cta p { margin: 0; color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: #f7fbff; color: #0b1728; text-decoration: none; font-weight: 750; padding: 12px 18px; white-space: nowrap; }
.button.secondary { background: rgba(255,255,255,.08); color: white; border: 1px solid var(--line); }

.page-header { padding: 70px 0 34px; }
.page-header h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); margin-bottom: 14px; }
.content-card { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: clamp(24px, 5vw, 44px); margin-bottom: 28px; }
.content-card h2 { margin-top: 0; letter-spacing: -.025em; }
.content-card h3 { margin-top: 30px; }
.content-card p, .content-card li { color: #c5d0dc; }
.content-card ul { padding-left: 22px; }
.contact-box { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px; background: rgba(99,169,255,.10); border: 1px solid rgba(99,169,255,.24); border-radius: 18px; }
.contact-box strong { display: block; }
.contact-box span { color: var(--muted); font-size: .92rem; }

footer { border-top: 1px solid var(--line); padding: 28px 0 38px; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: white; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 42px; padding-top: 48px; }
  .phone-card { max-width: 540px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-links { gap: 12px; }
  .nav-links a:first-child { display: none; }
  .hero { padding-bottom: 54px; }
  .grid { grid-template-columns: 1fr; }
  .cta, .contact-box, .footer-row { align-items: flex-start; flex-direction: column; }
  .phone-inner { min-height: 460px; }
}
