:root {
  --blue-950: #061a38;
  --blue-900: #08224a;
  --blue-760: #123d75;
  --blue-650: #18579b;
  --orange: #f68b1f;
  --orange-dark: #d96f09;
  --ink: #182235;
  --muted: #62708a;
  --line: rgba(13, 42, 81, .12);
  --bg: #f5f8fc;
  --white: #fff;
  --shadow: 0 24px 70px rgba(5, 26, 56, .14);
  --shadow-strong: 0 32px 90px rgba(5, 26, 56, .22);
  --glass: rgba(255, 255, 255, .72);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); line-height: 1.6; opacity: 0; animation: pageIn .45s ease forwards;
  background:
    linear-gradient(rgba(8,34,74,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,34,74,.035) 1px, transparent 1px),
    linear-gradient(135deg, #f7f9fc 0%, #eef4fb 38%, #fff 100%);
  background-size: 42px 42px, 42px 42px, auto;
}
@keyframes pageIn { to { opacity: 1; } }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky; top: 0; z-index: 50; min-height: 78px; padding: 12px clamp(18px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.78); backdrop-filter: blur(22px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 1px 0 rgba(8,34,74,.04);
  transition: min-height .24s ease, box-shadow .24s ease, background .24s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(8,34,74,.09);
}
.brand { display: flex; gap: 12px; align-items: center; font-weight: 850; color: var(--blue-900); letter-spacing: 0; }
.brand img { width: 42px; height: 52px; object-fit: contain; }
.brand span { position: relative; }
.brand span::after { content: ""; position: absolute; left: 0; right: 22%; bottom: -7px; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); opacity: .65; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-link, .nav-parent, .nav-cta {
  border: 0; background: transparent; color: var(--blue-900); font: inherit; font-weight: 720; cursor: pointer;
  padding: 11px 13px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.nav-parent span { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-link:hover, .nav-parent:hover, .nav-link[aria-current="page"], .mega-panel a[aria-current="page"] { background: rgba(246,139,31,.12); color: var(--orange-dark); }
.nav-cta, .btn {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--orange), #ffae4f 52%, #ffc470);
  color: #201305; box-shadow: 0 14px 28px rgba(246, 139, 31, .25);
}
.nav-cta::before, .btn::before {
  content: ""; position: absolute; inset: 0; transform: translateX(-115%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transition: transform .55s ease;
}
.nav-cta:hover::before, .btn:hover::before { transform: translateX(115%) skewX(-18deg); }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(246, 139, 31, .34); }
.nav-group { position: relative; }
.mega-panel {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 270px; padding: 10px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(22px) saturate(130%);
  border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow); border-radius: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s ease;
}
.nav-group:hover .mega-panel, .nav-group:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel a { display: block; padding: 11px 12px; border-radius: 7px; color: var(--blue-900); font-weight: 680; }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--blue-900); margin: 5px auto; }
.page-shell { overflow: hidden; }
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100vh - 78px); padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px) 72px;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); gap: clamp(28px, 5vw, 72px); align-items: center;
  background:
    linear-gradient(115deg, rgba(246,139,31,.16), transparent 26%),
    linear-gradient(150deg, rgba(8,34,74,.08), transparent 43%),
    linear-gradient(135deg, #f8fbff 0%, #edf4fb 52%, #ffffff 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 8% -8% auto auto; width: 48%; height: 76%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.16)),
    repeating-linear-gradient(115deg, rgba(8,34,74,.08) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 8px;
  transform: rotate(-5deg); z-index: -1; box-shadow: 0 36px 90px rgba(8,34,74,.08);
}
.hero::after {
  content: ""; position: absolute; left: clamp(18px, 4vw, 56px); bottom: 34px; width: min(430px, 42vw); height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(8,34,74,.24), transparent);
  opacity: .8;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 850;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; opacity: .72; }
h1, h2, h3 { line-height: 1.08; color: var(--blue-950); letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 5.9rem); max-width: 11ch; margin: 16px 0 22px; text-wrap: balance; }
h2 { font-size: clamp(2rem, 3.2vw, 3.6rem); }
h3 { font-size: 1.12rem; }
.hero p { font-size: clamp(1.05rem, 1.4vw, 1.28rem); color: var(--muted); max-width: 690px; }
.hero-actions, .modal-actions, .settings-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.btn {
  border: 0; border-radius: 8px; padding: 13px 18px; font-weight: 850; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; transition: .22s ease; font-size: .96rem;
}
.btn.ghost { background: rgba(8,34,74,.06); color: var(--blue-900); box-shadow: none; border: 1px solid rgba(8,34,74,.12); }
.btn.light { background: #fff; color: var(--blue-900); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.hero-media { position: relative; border-radius: 8px; isolation: isolate; transform-style: preserve-3d; transition: transform .18s ease; }
.hero-media::before {
  content: ""; position: absolute; inset: -14px; z-index: -1; border-radius: 14px;
  background: linear-gradient(135deg, rgba(8,34,74,.36), rgba(246,139,31,.24));
}
.hero-media::after {
  content: "Leasing / Finance / Fleet"; position: absolute; top: -18px; right: 26px;
  padding: 10px 14px; border-radius: 8px; background: rgba(8,34,74,.92); color: #fff;
  font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 16px 46px rgba(8,34,74,.24);
}
.hero-media img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-strong); }
.glass-note {
  position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 18px; border-radius: 8px;
  background: rgba(255,255,255,.76); backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 50px rgba(5,26,56,.16); border: 1px solid rgba(255,255,255,.64);
}
.glass-note strong, .glass-note span { display: block; }
.glass-note span { color: var(--muted); font-size: .92rem; }
.section, .band { padding: clamp(60px, 8vw, 112px) clamp(18px, 4vw, 56px); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 30px; max-width: 1180px; }
.section-head h2 { max-width: 850px; }
.muted {
  position: relative; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.5), transparent),
    linear-gradient(135deg, #eaf1f8, #f7fafc);
}
.muted::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(8,34,74,.045) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.stats {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: var(--blue-900); color: #fff;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(246,139,31,.2), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 16%);
  pointer-events: none;
}
.stats div { position: relative; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.075); backdrop-filter: blur(10px); }
.stats strong { font-size: clamp(2.1rem, 4vw, 4rem); display: block; color: #fff; line-height: 1; }
.stats span { display: block; color: rgba(255,255,255,.75); margin-top: 8px; }
.card-grid, .feature-grid, .comparison-grid, .leader-grid, .quote-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1240px;
}
.service-card, .feature-grid article, .comparison-grid article, .leader-card, .quote-grid blockquote, .quote-card, .settings-card, .contact-panel {
  background: var(--glass); backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(255,255,255,.9); border-radius: 8px; box-shadow: 0 18px 50px rgba(5,26,56,.09);
}
.service-card { position: relative; overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.service-card::after {
  content: "→"; position: absolute; right: 18px; bottom: 18px; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(246,139,31,.14);
  color: var(--orange-dark); font-size: 1.25rem; font-weight: 900; transform: translateX(-6px); opacity: 0;
  transition: .22s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); border-color: rgba(246,139,31,.36); }
.service-card:hover::after { transform: translateX(0); opacity: 1; }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card span { display: block; padding: 20px 20px 6px; font-weight: 860; color: var(--blue-900); font-size: 1.08rem; }
.service-card p, .feature-grid p, .comparison-grid p, .leader-card p { padding: 0 20px 22px; margin: 0; color: var(--muted); }
.feature-grid article, .comparison-grid article { position: relative; padding: 24px 0 0; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.feature-grid article::before, .comparison-grid article::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(24,87,155,.72));
}
.feature-grid article:hover, .comparison-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-grid h3, .comparison-grid h3 { padding: 0 20px 10px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr); gap: clamp(24px, 5vw, 68px); align-items: center; max-width: none; }
.two-col > div, .two-col > img { min-width: 0; }
.two-col p { color: var(--muted); font-size: 1.03rem; }
.two-col img { border-radius: 8px; box-shadow: var(--shadow-strong); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.check-list { padding: 0; list-style: none; display: grid; gap: 10px; margin-top: 24px; }
.check-list li { padding-left: 30px; position: relative; color: var(--blue-900); font-weight: 720; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); box-shadow: inset 0 0 0 5px #ffe3c4; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.timeline article {
  position: relative; background: rgba(255,255,255,.86); border-radius: 8px; padding: 22px; border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(5,26,56,.07); overflow: hidden;
}
.timeline article::after {
  content: ""; position: absolute; right: -24px; bottom: -24px; width: 80px; height: 80px;
  border: 1px solid rgba(246,139,31,.22); transform: rotate(18deg);
}
.timeline span { color: var(--orange-dark); font-weight: 900; }
.timeline p, .legal-page p, .accordion p { color: var(--muted); }
.pill-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; max-width: 1180px; }
.pill-grid span, .mini-cards span {
  padding: 18px; border-radius: 8px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.86);
  font-weight: 800; color: var(--blue-900); box-shadow: 0 12px 34px rgba(5,26,56,.06);
  transition: transform .22s ease, color .22s ease;
}
.pill-grid span:hover, .mini-cards span:hover { transform: translateY(-4px); color: var(--orange-dark); }
.quote-card {
  position: relative; overflow: hidden;
  padding: 28px; background:
    linear-gradient(115deg, rgba(246,139,31,.18), transparent 42%),
    linear-gradient(135deg, rgba(8,34,74,.97), rgba(18,61,117,.93));
  color: #fff;
}
.quote-card::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; pointer-events: none; }
.quote-card p { color: rgba(255,255,255,.86); font-size: 1.3rem; }
.quote-card strong { color: #fff; }
.leader-card { overflow: hidden; }
.leader-card img { width: 100%; height: 330px; object-fit: cover; object-position: center top; }
.leader-card h3 { padding: 22px 20px 10px; }
.leader-card blockquote, .quote-grid blockquote { margin: 0; color: var(--blue-900); font-weight: 760; }
.leader-card blockquote { padding: 0 20px 22px; }
.quote-grid blockquote { padding: 26px; }
.accordion { max-width: 980px; display: grid; gap: 12px; }
.accordion details { background: rgba(255,255,255,.84); border-radius: 8px; border: 1px solid rgba(255,255,255,.9); padding: 18px 20px; box-shadow: 0 12px 36px rgba(5,26,56,.06); }
.accordion summary { cursor: pointer; font-weight: 850; color: var(--blue-900); }
.cta-band {
  position: relative; overflow: hidden;
  margin: clamp(24px, 5vw, 56px); padding: clamp(28px, 5vw, 54px); border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  background:
    linear-gradient(110deg, rgba(246,139,31,.22), transparent 38%),
    linear-gradient(135deg, var(--blue-900), var(--blue-650));
  color: #fff; box-shadow: var(--shadow-strong);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.09) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 760px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 760px; }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 22px; align-items: start; }
.contact-panel { padding: 28px; }
.contact-panel address { font-style: normal; color: var(--muted); margin: 18px 0; }
.mini-cards { display: grid; gap: 10px; margin-top: 24px; }
.contact-form {
  display: grid; gap: 16px; background: rgba(255,255,255,.88); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.9); border-radius: 8px; padding: 28px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 760; color: var(--blue-900); }
input, textarea, select {
  width: 100%; border: 1px solid rgba(8,34,74,.16); border-radius: 8px; padding: 13px 14px; font: inherit; background: #f9fbfe; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(246,139,31,.72); background: #fff; box-shadow: 0 0 0 4px rgba(246,139,31,.14); }
textarea { resize: vertical; }
.consent { grid-template-columns: auto 1fr; align-items: start; font-weight: 620; color: var(--muted); }
.consent input { width: auto; margin-top: 6px; }
.legal-page { max-width: 980px; margin: 0 auto; background: #fff; }
.legal-page h2 { font-size: 1.55rem; margin-top: 30px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--blue-900); background: #f2f6fb; }
.site-footer {
  position: relative; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(246,139,31,.16), transparent 34%),
    linear-gradient(135deg, #04132a, var(--blue-950));
  color: rgba(255,255,255,.78); padding: 56px clamp(18px, 4vw, 56px) 24px;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 13%);
  pointer-events: none;
}
.site-footer > * { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 26px; }
.footer-brand img { width: 54px; height: 74px; object-fit: contain; margin-bottom: 12px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.site-footer address { font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; }
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 80; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
  padding: 18px; border-radius: 8px; background: rgba(255,255,255,.9); backdrop-filter: blur(22px) saturate(140%); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.9);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0; color: var(--muted); }
.cookie-actions, .cookie-links { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-links a { color: var(--blue-760); font-weight: 750; }
.cookie-modal { border: 0; border-radius: 8px; padding: 0; width: min(620px, calc(100% - 30px)); box-shadow: var(--shadow); }
.cookie-modal::backdrop { background: rgba(6,26,56,.48); backdrop-filter: blur(4px); }
.cookie-modal form { padding: 26px; display: grid; gap: 18px; }
.switch-row { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
.switch-row small { display: block; color: var(--muted); font-weight: 500; margin-top: 4px; }
.switch-row input { width: 22px; height: 22px; }
.settings-card { padding: 30px; max-width: 720px; }
.text-link { color: var(--orange-dark); font-weight: 850; border-bottom: 2px solid rgba(246,139,31,.28); }
.compact { grid-template-columns: 1fr; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
@media (max-width: 1060px) {
  .mobile-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 78px 14px auto 14px; max-height: calc(100vh - 96px); overflow: auto; display: none; flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,.97); border-radius: 8px; padding: 12px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.9);
  }
  body.menu-open .site-nav { display: flex; }
  .nav-parent, .nav-link, .nav-cta { justify-content: space-between; width: 100%; }
  .mega-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 12px; background: transparent; }
  .hero, .two-col, .contact-layout { grid-template-columns: 1fr; }
  .hero::before { width: 70%; height: 44%; top: 5%; opacity: .65; }
  h1 { max-width: 13ch; }
  .stats, .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .card-grid, .feature-grid, .comparison-grid, .leader-grid, .quote-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .site-header { min-height: 70px; padding: 10px 14px; }
  .site-nav { inset-top: 70px; }
  .brand span { font-size: .96rem; }
  .brand img { width: 36px; height: 44px; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero::before, .hero::after { display: none; }
  h1 { font-size: 2.45rem; max-width: 100%; }
  .hero-media img { aspect-ratio: 4 / 3.2; }
  .hero-media::after { top: -12px; right: 14px; font-size: .66rem; padding: 8px 10px; }
  .glass-note { position: static; margin-top: 12px; }
  .section, .band { padding: 48px 16px; }
  .stats, .pill-grid, .timeline, .card-grid, .feature-grid, .comparison-grid, .leader-grid, .quote-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .section-head, .cta-band, .footer-bottom, .cookie-banner { display: grid; grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { width: 100%; }
}
