:root {
  --navy: #0f2447;
  --navy-deep: #0a1830;
  --blue: #2563eb;
  --blue-bg: #dbeafe;
  --bg: #eef1f6;
  --card: #ffffff;
  --ink: #0b1220;
  --gray: #5b6472;
  --gray-light: #9aa3b2;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --amber-bg: #fef3c7;
  --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.035em; color: #fff; }
.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a { color: rgba(255,255,255,.85); font-size: 14.5px; font-weight: 600; }
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-block; background: var(--blue); color: #fff;
  font-weight: 800; font-size: 15px; border-radius: 999px;
  padding: 12px 26px; transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn.big { padding: 16px 34px; font-size: 17px; }
.btn.ghost { background: rgba(255,255,255,.12); }
.btn.ghost:hover { background: rgba(255,255,255,.2); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; overflow: hidden; }
.hero-inner { display: flex; align-items: center; gap: 48px; padding: 72px 0 88px; }
.hero-copy { flex: 1.1; }
.hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.hero p.sub { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.78); margin: 22px 0 32px; line-height: 1.55; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ---------- Phone mockup ---------- */
.phone-col { flex: 0.9; display: flex; justify-content: center; }
.phone {
  width: 320px; background: var(--bg); border-radius: 42px; border: 9px solid #05070d;
  box-shadow: 0 40px 80px rgba(0,0,0,.45); overflow: hidden;
}
.p-head { background: var(--navy); color: #fff; padding: 26px 18px 16px; }
.p-hej { font-size: 17px; font-weight: 800; }
.p-hej span { color: #93b4ff; }
.p-sub { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; }
/* The mockup lives inside the white-text hero — reset to dark ink so card
   titles, plate letters and tile labels are visible on the white cards. */
.p-body { padding: 12px; display: grid; gap: 10px; color: var(--ink); }
.p-card { background: #fff; border-radius: 16px; padding: 12px 14px; box-shadow: 0 2px 8px rgba(15,36,71,.06); }
.p-card.amber { border-left: 4px solid #f59e0b; }
.p-card.green { border-left: 4px solid var(--green); }
.p-title { font-size: 13px; font-weight: 800; }
.p-line { font-size: 11px; color: var(--gray); margin-top: 3px; }
.p-line.green { color: var(--green); font-weight: 700; }
.p-plate {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 800;
  border: 1.5px solid var(--ink); border-radius: 4px; overflow: hidden; margin-top: 6px;
}
.p-plate i { background: #1d4ed8; color: #ffd200; font-style: normal; font-size: 7px; padding: 3px 3px; }
.p-plate b { padding: 2px 6px; letter-spacing: 1px; }
.p-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.p-tile { background: #fff; border-radius: 14px; padding: 12px 8px; text-align: center; font-size: 11px; font-weight: 700; box-shadow: 0 2px 8px rgba(15,36,71,.06); }
.p-tile em { display: block; font-style: normal; font-size: 17px; margin-bottom: 4px; }

/* ---------- Light hero + Uber-style sections ---------- */
.btn.navy { background: var(--navy); }
.btn.navy:hover { background: #0a1830; }
.btn.small { padding: 10px 20px; font-size: 13.5px; }
.link-ul { font-weight: 700; font-size: 15.5px; border-bottom: 2px solid var(--ink); padding-bottom: 2px; align-self: center; }
.lhero { background: var(--card); }
.lhero-inner { display: flex; align-items: center; gap: 56px; padding: 72px 0; }
.lhero-copy { flex: 1; }
.lhero h1 { font-size: clamp(42px, 6vw, 68px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; color: var(--ink); }
.lhero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--gray); margin: 22px 0 30px; line-height: 1.55; max-width: 460px; }
.lhero-note { margin-top: 18px; font-size: 13.5px; color: var(--gray-light); }
.lhero-art { flex: 1; }
.illus { border-radius: 28px; overflow: hidden; }
.illus svg { display: block; width: 100%; height: auto; }
.illus-hero { box-shadow: 0 30px 60px rgba(15,36,71,.18); }
.tone-blue { background: #dbeafe; }
.tone-amber { background: #fef3c7; }
.tone-gray { background: var(--bg); display: flex; justify-content: center; padding: 36px 0; }

/* Role cards (Uber's Ride/Reserve style) */
.roles { padding: 64px 0 24px; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.role-card {
  background: var(--bg); border-radius: var(--radius); padding: 26px;
  display: flex; align-items: center; gap: 16px;
}
.role-copy { flex: 1; }
.role-card h3 { font-size: 19px; font-weight: 800; }
.role-card p { font-size: 13.5px; color: var(--gray); line-height: 1.55; margin: 8px 0 16px; }
.role-art { width: 104px; height: 104px; flex-shrink: 0; }

/* Alternating rows */
.rowalt { padding: 72px 0; }
.rowalt.alt { background: var(--card); }
.row-flex { display: flex; align-items: center; gap: 56px; }
.row-flex.reverse { flex-direction: row-reverse; }
.row-copy { flex: 1; }
.row-copy h2 { font-size: clamp(26px, 3.6vw, 38px); }
.row-copy p { color: var(--gray); font-size: 16px; line-height: 1.65; margin: 16px 0 22px; max-width: 480px; }
.row-flex .illus { flex: 1; }
.phone.small { width: 290px; box-shadow: 0 24px 48px rgba(15,36,71,.25); }

@media (max-width: 860px) {
  .lhero-inner, .row-flex, .row-flex.reverse { flex-direction: column; padding-top: 40px; padding-bottom: 40px; }
  .role-grid { grid-template-columns: 1fr; }
  .lhero-art, .row-flex .illus { width: 100%; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.alt { background: var(--bg); }
.kicker { color: var(--blue); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.025em; margin-top: 10px; }
.lead { color: var(--gray); font-size: 17px; margin-top: 14px; max-width: 640px; line-height: 1.6; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.feature {
  background: var(--card); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(15,36,71,.07);
}
section:not(.alt) .feature { background: var(--bg); box-shadow: none; }
.feature .ico {
  width: 46px; height: 46px; border-radius: 13px; background: var(--blue-bg);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.feature h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.step { text-align: left; }
.step .num {
  width: 40px; height: 40px; border-radius: 999px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* Pricing */
.price-card {
  margin-top: 44px; background: var(--navy); color: #fff; border-radius: 24px;
  padding: 44px; display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.price-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.price-card p { color: rgba(255,255,255,.75); margin-top: 10px; max-width: 460px; line-height: 1.6; font-size: 15px; }
.price-card ul { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.price-card li { font-size: 14.5px; color: rgba(255,255,255,.85); }
.price-card li::before { content: '✓  '; color: #7dd3a0; font-weight: 800; }
.price-cta { margin-left: auto; }

/* CTA band */
.cta-band { background: var(--bg); }
.cta-inner { text-align: center; }
.cta-inner h2 { margin-bottom: 22px; }

/* Footer */
footer { background: var(--navy-deep); color: rgba(255,255,255,.65); padding: 44px 0; font-size: 14px; }
.foot-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-logo { font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -0.03em; }
.foot-links { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
.foot-links a:hover { color: #fff; }

/* ---------- Support (Uber help-center style) ---------- */
.sup-hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 72px 0 64px; text-align: center; }
.sup-hero.light { background: var(--card); color: var(--ink); padding: 64px 0 40px; }
.sup-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -0.025em; }
.sup-hero p { color: rgba(255,255,255,.72); margin-top: 14px; font-size: 17px; }
.sup-hero.light p { color: var(--gray); }
.sup-search {
  max-width: 560px; margin: 26px auto 0; background: var(--bg); border-radius: 999px;
  display: flex; align-items: center; gap: 10px; padding: 6px 10px 6px 20px;
  border: 1.5px solid #e2e8f0;
}
.sup-search:focus-within { border-color: var(--blue); background: #fff; }
.sup-search input {
  flex: 1; border: 0; outline: 0; background: transparent; font-size: 16px;
  padding: 12px 6px; font-family: inherit; color: var(--ink);
}
.topics-band { background: var(--bg); padding: 40px 0 32px; }
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic {
  background: var(--card); border-radius: var(--radius); padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(15,36,71,.12); transition: transform .15s ease;
  display: flex; flex-direction: column; justify-content: center;
}
.topic:hover { transform: translateY(-3px); }
.topic .t-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.topic h3 { font-size: 16px; font-weight: 800; }
.topic p { font-size: 13.5px; color: var(--gray); margin-top: 6px; line-height: 1.5; }
.faq-section { max-width: 820px; margin: 0 auto; padding: 40px 24px 8px; }
.faq-section h2 { font-size: 22px; display: flex; align-items: center; gap: 10px; }
details {
  background: var(--card); border-radius: 14px; margin-top: 12px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(15,36,71,.07);
}
details summary {
  cursor: pointer; list-style: none; padding: 16px 18px; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: space-between;
}
details summary::after { content: '+'; font-size: 20px; font-weight: 700; color: var(--blue); }
details[open] summary::after { content: '–'; }
details .a { padding: 0 18px 16px; font-size: 14.5px; color: #333c49; line-height: 1.65; }
details .a a { color: var(--blue); font-weight: 600; }
.sup-contact {
  max-width: 820px; margin: 48px auto 80px; padding: 0 24px;
}
.sup-contact .inner {
  background: var(--navy); color: #fff; border-radius: 24px; padding: 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.sup-contact h3 { font-size: 22px; font-weight: 800; }
.sup-contact p { color: rgba(255,255,255,.72); margin-top: 8px; font-size: 14.5px; line-height: 1.6; max-width: 420px; }
.sup-contact .btn { margin-left: auto; }
@media (max-width: 860px) {
  .topics { grid-template-columns: 1fr; }
  .sup-contact .btn { margin-left: 0; }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.legal h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal .updated { color: var(--gray-light); font-size: 13.5px; margin-bottom: 36px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 15.5px; color: #333c49; line-height: 1.7; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal a { color: var(--blue); font-weight: 600; }

@media (max-width: 860px) {
  .hero-inner { flex-direction: column; padding: 48px 0 64px; }
  .grid, .steps { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .price-card { padding: 32px 24px; }
  .price-cta { margin-left: 0; }
}
