:root {
  --navy-950: #071426;
  --navy-900: #0b1f3a;
  --navy-800: #12345b;
  --blue-600: #155ea8;
  --gold-500: #f5bf27;
  --gold-400: #ffd35b;
  --red-600: #c8232c;
  --green-600: #11845b;
  --slate-900: #182230;
  --slate-700: #344054;
  --slate-600: #475467;
  --slate-500: #667085;
  --slate-300: #d0d5dd;
  --slate-200: #e4e7ec;
  --slate-100: #f2f4f7;
  --white: #fff;
  --surface: #f7f9fc;
  --shadow-sm: 0 8px 24px rgba(7, 20, 38, .08);
  --shadow-lg: 0 28px 70px rgba(7, 20, 38, .16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --page-gutter: clamp(20px, 3.2vw, 68px);
  --page-gutter-mobile: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}
.section { padding: 88px 0; }
.section--muted { background: var(--surface); }
.section--dark { background: var(--navy-950); color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-500);
}
.section--dark .eyebrow { color: var(--gold-400); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .68fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin: 0;
  max-width: 980px;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-heading p {
  margin: 0;
  color: var(--slate-600);
  font-size: 17px;
}
.section--dark .section-heading h2,
.section--dark .section-heading p { color: var(--white); }
.section--dark .section-heading p { opacity: .76; }

.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.8);
  font-size: 13px;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__group { display: flex; align-items: center; gap: 20px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold-400); }
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d07f;
  box-shadow: 0 0 0 5px rgba(53,208,127,.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(11,31,58,.08);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 0;
}
.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.brand__text { display: grid; min-width: 0; }
.brand__name {
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1.1;
}
.brand__tagline {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 11px;
  white-space: nowrap;
}
.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu a {
  position: relative;
  padding: 26px 0;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-500);
  transition: right .22s ease;
}
.nav__menu a:hover,
.nav__menu a[aria-current="page"] { color: var(--navy-950); }
.nav__menu a:hover::after,
.nav__menu a[aria-current="page"]::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-950);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(245,191,39,.24);
}
.btn--primary:hover { background: var(--gold-400); }
.btn--dark {
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7,20,38,.18);
}
.btn--outline {
  border-color: var(--slate-300);
  background: var(--white);
  color: var(--navy-950);
}
.btn--ghost {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 74px;
  background:
    radial-gradient(circle at 82% 12%, rgba(245,191,39,.16), transparent 28%),
    radial-gradient(circle at 15% 86%, rgba(21,94,168,.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 500px;
  height: 500px;
  border: 74px solid rgba(21,94,168,.045);
  border-radius: 50%;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  align-items: center;
  gap: 58px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #dce8f5;
  border-radius: 999px;
  background: #f6fbff;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.hero h1 {
  margin: 22px 0 22px;
  color: var(--navy-950);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--blue-600); }
.hero__lead {
  max-width: 860px;
  margin: 0;
  color: var(--slate-600);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--slate-200);
}
.hero__meta strong { display: block; color: var(--navy-950); font-size: 15px; }
.hero__meta span { color: var(--slate-500); font-size: 12px; }
.hero__visual { position: relative; }
.hero__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  background: var(--slate-100);
  box-shadow: var(--shadow-lg);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(320px, calc(100% - 28px));
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(7,20,38,.92);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.hero__card small { color: var(--gold-400); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hero__card h3 { margin: 8px 0 8px; font-size: 20px; line-height: 1.25; }
.hero__card p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.hero__seal {
  position: absolute;
  left: -30px;
  top: 34px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.trust-item {
  position: relative;
  padding: 22px 22px 22px 58px;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--slate-200);
}
.trust-item__icon {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff6d8;
  color: var(--navy-950);
  font-weight: 900;
}
.trust-item strong { display: block; color: var(--navy-950); font-size: 14px; }
.trust-item span { color: var(--slate-500); font-size: 12px; }

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 60px;
}
.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.about-media__primary { min-height: 520px; }
.about-media__stack { display: grid; gap: 14px; }
.about-media__stack img { min-height: 252px; }
.about-media__label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 15px 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--navy-950);
  font-weight: 850;
}
.about-copy h2 {
  margin: 0 0 20px;
  color: var(--navy-950);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.about-copy > p { color: var(--slate-600); font-size: 17px; }
.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--slate-700); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e8f7f0;
  color: var(--green-600);
  font-weight: 900;
}

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #c5d7ec; box-shadow: var(--shadow-sm); }
.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 34px solid rgba(21,94,168,.04);
  border-radius: 50%;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy-950);
  color: var(--gold-400);
  font-size: 24px;
}
.service-card h3 { margin: 24px 0 12px; color: var(--navy-950); font-size: 22px; line-height: 1.2; }
.service-card p { margin: 0; color: var(--slate-600); }
.service-card ul { display: grid; gap: 8px; padding: 0; margin: 22px 0 0; list-style: none; color: var(--slate-600); font-size: 13px; }
.service-card li::before { content: "—"; margin-right: 8px; color: var(--gold-500); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: process; }
.process-card {
  position: relative;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  counter-increment: process;
}
.process-card::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}
.process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 20px;
  right: -14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 900;
}
.process-card h3 { margin: 0 0 8px; font-size: 17px; }
.process-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }

.compliance-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.compliance-card {
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
}
.compliance-card--accent {
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.compliance-card h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.2; }
.compliance-card p { margin: 0; color: var(--slate-600); }
.compliance-card--accent p { color: rgba(255,255,255,.72); }
.compliance-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.compliance-point { padding: 16px; border-radius: 14px; background: var(--surface); }
.compliance-point strong { display: block; color: var(--navy-950); font-size: 14px; }
.compliance-point span { color: var(--slate-500); font-size: 12px; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fleet-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 0;
  border-radius: 22px;
  background: var(--slate-100);
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.fleet-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .35s ease; }
.fleet-card:hover img { transform: scale(1.045); }
.fleet-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 60px 22px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7,20,38,.95));
}
.fleet-card__overlay strong { display: block; font-size: 17px; }
.fleet-card__overlay span { color: rgba(255,255,255,.68); font-size: 12px; }

.cta-band {
  overflow: hidden;
  position: relative;
  padding: 50px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-950));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -130px;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-band__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cta-band h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
.cta-band p { max-width: 740px; margin: 0; color: rgba(255,255,255,.75); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; }
.contact-panel,
.form-panel {
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
}
.contact-panel { background: var(--navy-950); color: var(--white); }
.contact-panel h3,
.form-panel h3 { margin: 0 0 10px; font-size: 26px; line-height: 1.2; }
.contact-panel > p { color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 38px 1fr; gap: 12px; }
.contact-item__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.08); color: var(--gold-400); }
.contact-item strong { display: block; font-size: 13px; }
.contact-item span,
.contact-item a { color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--slate-700); font-size: 13px; font-weight: 750; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  background: var(--white);
  padding: 12px 14px;
  color: var(--slate-900);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(21,94,168,.1); }
.form-note { margin: 12px 0 0; color: var(--slate-500); font-size: 12px; }
.map-frame { width: 100%; min-height: 330px; margin-top: 24px; border: 0; border-radius: 18px; }

.faq-list { display: grid; gap: 12px; width: 100%; max-width: none; margin-inline: auto; }
.faq-item { border: 1px solid var(--slate-200); border-radius: 16px; background: var(--white); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 20px;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  font-weight: 850;
  text-align: left;
}
.faq-item button::after { content: "+"; font-size: 24px; font-weight: 400; }
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--slate-600); }
.faq-answer p { margin: 0; }
.faq-item button[aria-expanded="true"] + .faq-answer { display: block; }

.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.page-hero__grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.page-hero h1 { margin: 0 0 12px; font-size: clamp(38px, 6vw, 64px); line-height: 1.04; letter-spacing: -.05em; }
.page-hero p { max-width: 780px; margin: 0; color: rgba(255,255,255,.7); font-size: 17px; }
.breadcrumb { margin-bottom: 18px; color: var(--gold-400); font-size: 13px; font-weight: 800; }
.breadcrumb a { color: inherit; text-decoration: none; }

.legal-layout { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 22px; }
.legal-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.legal-sidebar h2 { margin: 0 0 6px; color: var(--navy-950); font-size: 20px; }
.legal-sidebar > p { margin: 0 0 18px; color: var(--slate-500); font-size: 13px; }
.doc-menu { display: grid; gap: 9px; }
.doc-button {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  background: var(--white);
  color: var(--slate-700);
  text-align: left;
}
.doc-button:hover,
.doc-button.is-active { border-color: #bdd2e9; background: #f6fbff; color: var(--navy-950); }
.doc-button__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--slate-100); }
.doc-button strong { display: block; font-size: 13px; }
.doc-button small { color: var(--slate-500); font-size: 11px; }
.doc-button__arrow { color: var(--blue-600); font-weight: 900; }
.legal-viewer {
  overflow: hidden;
  min-height: 760px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.legal-viewer__bar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--slate-200);
}
.legal-viewer__title strong { display: block; color: var(--navy-950); }
.legal-viewer__title span { color: var(--slate-500); font-size: 12px; }
.legal-viewer iframe { width: 100%; height: 760px; border: 0; background: var(--surface); }
.legal-image-wrap { display: grid; place-items: center; min-height: 760px; padding: 24px; background: var(--surface); }
.legal-image-wrap img { max-height: 700px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.legal-empty { min-height: 760px; display: grid; place-items: center; padding: 40px; text-align: center; background: var(--surface); }
.legal-empty__box { max-width: 440px; }
.legal-empty__icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 22px; background: var(--white); color: var(--blue-600); font-size: 28px; box-shadow: var(--shadow-sm); }

.footer {
  padding: 64px 0 24px;
  background: var(--navy-950);
  color: var(--white);
}
.footer__grid { display: grid; grid-template-columns: 1.2fr .65fr .65fr .9fr; gap: 40px; }
.footer__brand { display: flex; align-items: center; gap: 13px; }
.footer__brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 14px; background: var(--white); }
.footer__brand strong { font-size: 17px; }
.footer__about { margin: 18px 0 0; max-width: 620px; color: rgba(255,255,255,.62); font-size: 13px; }
.footer h3 { margin: 0 0 16px; color: var(--gold-400); font-size: 14px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a,
.footer__links span { color: rgba(255,255,255,.65); font-size: 13px; text-decoration: none; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.46);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: #16a86a;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(17,132,91,.34);
}
.whatsapp-float__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 19px; }
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 890;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(7,20,38,.94);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 96vw); max-height: 86vh; border-radius: 16px; box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 24px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 4000;
  width: min(440px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 140%);
  transition: transform .25s ease;
  font-size: 13px;
}
.toast.is-visible { transform: translate(-50%, 0); }

/* Full-width layout: uses the complete viewport with responsive safe gutters. */
@media (min-width: 1440px) {
  .section { padding-block: 100px; }
  .hero { padding-block: 76px 88px; }
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(520px, .88fr); gap: clamp(48px, 4vw, 92px); }
  .hero h1 { font-size: clamp(58px, 5vw, 88px); }
  .hero__image { aspect-ratio: 5 / 4; }
  .about-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(56px, 5vw, 104px); }
  .card-grid { gap: 26px; }
  .service-card { min-height: 340px; padding: 34px; }
  .fleet-grid { gap: 24px; }
  .fleet-card, .fleet-card img { min-height: 410px; }
  .process-grid { gap: 22px; }
  .compliance-grid { gap: 28px; }
  .footer__grid { grid-template-columns: 1.35fr .55fr .65fr .9fr; gap: clamp(36px, 4vw, 82px); }
}

@media (max-width: 1050px) {
  .nav__actions .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr .85fr; gap: 34px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .nav { min-height: 70px; }
  .nav-toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    overflow: auto;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    border-top: 1px solid var(--slate-200);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .24s ease, visibility .24s ease;
  }
  .nav__menu.is-open { transform: translateY(0); visibility: visible; }
  .nav__menu a { padding: 16px 4px; border-bottom: 1px solid var(--slate-100); }
  .nav__menu a::after { display: none; }
  .hero { padding-top: 42px; }
  .hero__grid,
  .about-grid,
  .compliance-grid,
  .contact-grid,
  .legal-layout { grid-template-columns: 1fr; }
  .hero__visual { max-width: 620px; }
  .hero__image { aspect-ratio: 16 / 11; }
  .hero__seal { left: 18px; top: 18px; }
  .hero__card { right: 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .card-grid,
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__grid,
  .page-hero__grid { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}

@media (max-width: 620px) {
  .container { width: 100%; padding-inline: var(--page-gutter-mobile); }
  .section { padding: 66px 0; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__name { font-size: 14px; }
  .brand__tagline { max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
  .hero h1 { font-size: 43px; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { grid-template-columns: 1fr; gap: 12px; }
  .hero__image { aspect-ratio: 4 / 5; }
  .hero__card { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .hero__seal { width: 78px; height: 78px; border-width: 6px; font-size: 10px; }
  .trust-strip { margin-top: -10px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--slate-200); }
  .trust-item::after { display: none; }
  .about-media { grid-template-columns: 1fr; }
  .about-media__primary { min-height: 360px; }
  .about-media__stack { grid-template-columns: 1fr 1fr; }
  .about-media__stack img { min-height: 180px; }
  .card-grid,
  .fleet-grid,
  .process-grid,
  .compliance-points,
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-band { padding: 30px 22px; }
  .cta-band__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; padding-right: 12px; }
  .whatsapp-float span:last-child { display: none; }
  .back-to-top { right: 16px; bottom: 76px; }
  .legal-viewer,
  .legal-viewer iframe,
  .legal-image-wrap,
  .legal-empty { min-height: 560px; height: 560px; }
  .legal-viewer__bar { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Revision 3.0: professional forms, protected documents, and long-form content */
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-field label { display: flex; align-items: flex-start; gap: 11px; font-weight: 500; line-height: 1.55; color: var(--slate-700); }
.consent-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy); flex: 0 0 auto; }
.consent-field a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.submit-status { min-height: 22px; margin: 12px 0 0; color: var(--slate-600); font-size: 13px; }
.btn:disabled { cursor: wait; opacity: .68; transform: none !important; }
.document-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.document-card { position: relative; min-height: 270px; padding: 30px 26px; border: 1px solid var(--slate-200); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.document-card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 28px; border-radius: 15px; background: var(--navy); color: var(--white); font-weight: 800; }
.document-card__status { position: absolute; top: 20px; right: 20px; padding: 6px 10px; border-radius: 999px; background: #e9f8ef; color: #17683a; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.document-card__status--verify { background: #fff4d6; color: #795600; }
.document-card h3 { margin: 0 0 12px; font-size: 20px; }
.document-card p { margin: 0; color: var(--slate-600); line-height: 1.75; }
.prose-card { max-width: 900px; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--slate-200); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-md); }
.prose-card h2 { margin: 34px 0 12px; font-size: clamp(24px, 3vw, 34px); }
.prose-card h2:first-child { margin-top: 0; }
.prose-card p { margin: 0 0 18px; color: var(--slate-600); line-height: 1.85; }
.prose-card a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.lightbox[aria-hidden="false"] { display: grid; }
@media (max-width: 1080px) { .document-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .document-grid { grid-template-columns: 1fr; } .document-card { min-height: auto; } }

/* =========================================================
   VERSION 5 — HD / RETINA LARGE-SCREEN VISUAL UPGRADE
   ========================================================= */
img {
  image-rendering: auto;
  backface-visibility: hidden;
}

@media (min-width: 1280px) {
  :root { --page-gutter: clamp(34px, 3.6vw, 84px); }
  .nav { min-height: 90px; }
  .brand__mark { width: 66px; height: 66px; border-radius: 18px; }
  .brand__name { font-size: 20px; }
  .brand__tagline { font-size: 12px; }
  .nav__menu { gap: clamp(20px, 1.8vw, 36px); }
  .nav__menu a { font-size: 15px; padding-block: 31px; }
  .btn { min-height: 52px; padding: 14px 24px; font-size: 15px; }
  .hero { min-height: calc(100vh - 128px); display: grid; align-items: center; padding-block: 84px 102px; }
  .hero__grid { grid-template-columns: minmax(0, 1.04fr) minmax(560px, .96fr); gap: clamp(62px, 5vw, 112px); }
  .hero h1 { max-width: 1180px; font-size: clamp(64px, 5.35vw, 96px); line-height: .99; }
  .hero__lead { max-width: 980px; font-size: clamp(19px, 1.4vw, 23px); }
  .hero__badge { padding: 11px 16px; font-size: 13px; }
  .hero__image { min-height: 650px; max-height: 820px; aspect-ratio: 4 / 5; border-radius: 42px; }
  .hero__card { right: -28px; bottom: 38px; width: min(390px, calc(100% - 28px)); padding: 26px; border-radius: 24px; }
  .hero__card h3 { font-size: 24px; }
  .hero__card p { font-size: 15px; }
  .hero__seal { width: 112px; height: 112px; font-size: 14px; border-width: 9px; }
  .hero__meta strong { font-size: 17px; }
  .hero__meta span { font-size: 13px; }
  .section { padding-block: 112px; }
  .section-heading { margin-bottom: 48px; gap: 58px; }
  .section-heading h2 { max-width: 1180px; font-size: clamp(44px, 3.8vw, 68px); }
  .section-heading p { font-size: 19px; }
  .about-grid { gap: clamp(70px, 6vw, 130px); }
  .about-media__primary { min-height: 690px; }
  .about-media__stack img { min-height: 338px; }
  .about-copy h2 { font-size: clamp(45px, 3.7vw, 66px); }
  .about-copy > p { font-size: 19px; }
  .card-grid { gap: 28px; }
  .service-card { min-height: 380px; padding: 38px; border-radius: 26px; }
  .service-card__icon { width: 64px; height: 64px; font-size: 28px; }
  .service-card h3 { font-size: 26px; }
  .service-card p { font-size: 17px; }
  .process-card { min-height: 260px; padding: 32px 27px; border-radius: 22px; }
  .process-card h3 { font-size: 20px; }
  .process-card p { font-size: 15px; }
  .fleet-grid { gap: 30px; }
  .fleet-card, .fleet-card img { min-height: 500px; }
  .fleet-card { border-radius: 28px; }
  .fleet-card__overlay { padding: 90px 28px 28px; }
  .fleet-card__overlay strong { font-size: 21px; }
  .fleet-card__overlay span { font-size: 14px; }
  .cta-band { padding: 68px; border-radius: 36px; }
  .cta-band h2 { font-size: clamp(42px, 3.8vw, 66px); }
  .cta-band p { font-size: 18px; }
  .contact-panel, .form-panel { padding: 42px; border-radius: 28px; }
  .contact-panel h3, .form-panel h3 { font-size: 32px; }
  .field input, .field select, .field textarea { min-height: 54px; padding: 14px 16px; font-size: 16px; }
  .field textarea { min-height: 150px; }
  .footer { padding-top: 82px; }
  .footer__brand img { width: 72px; height: 72px; }
  .footer__brand strong { font-size: 20px; }
}

@media (min-width: 1800px) {
  :root { --page-gutter: clamp(72px, 5vw, 120px); }
  .hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(680px, .92fr); }
  .hero__image { min-height: 760px; max-height: 920px; }
  .hero h1 { font-size: clamp(82px, 5vw, 112px); }
  .fleet-card, .fleet-card img { min-height: 590px; }
  .about-media__primary { min-height: 780px; }
  .about-media__stack img { min-height: 382px; }
}

@media (max-width: 1279px) and (min-width: 861px) {
  .hero__image { min-height: 560px; }
}

@media (max-width: 860px) {
  .hero__image { min-height: 420px; }
}

@media (max-width: 620px) {
  .hero__image { min-height: 390px; }
  .fleet-card, .fleet-card img { min-height: 380px; }
}

/* =========================================================
   VERSION 6 — ASTRA-INSPIRED CORPORATE THEME
   Concept: Black / Yellow / Red, bright and professional
   ========================================================= */
:root {
  --navy-950: #111111;
  --navy-900: #171717;
  --navy-800: #262626;
  --blue-600: #d71920;
  --gold-500: #ffc400;
  --gold-400: #ffd54a;
  --red-600: #d71920;
  --green-600: #d71920;
  --surface: #f7f7f7;
  --shadow-sm: 0 10px 30px rgba(17,17,17,.07);
  --shadow-lg: 0 26px 70px rgba(17,17,17,.15);
}

body { color: #171717; background: #fff; }
.topbar { background: #fafafa; color: #2b2b2b; border-bottom: 1px solid #ececec; }
.topbar a:hover { color: var(--red-600); }
.status-dot::before { background: var(--red-600); box-shadow: 0 0 0 5px rgba(215,25,32,.10); }
.site-header { background: rgba(255,255,255,.97); border-bottom-color: rgba(17,17,17,.09); }
.brand__mark { border: 0; box-shadow: none; background: transparent; }
.brand__name { color: #151515; }
.nav__menu a { color: #303030; }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--red-600); }
.nav__menu a::after { background: var(--red-600); }

.btn { border-radius: 8px; }
.btn--dark, .btn--primary {
  background: linear-gradient(135deg, #d71920 0%, #ee252d 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(215,25,32,.22);
}
.btn--dark:hover, .btn--primary:hover { background: #b90f15; }
.btn--outline { border-color: #d7d7d7; color: #171717; }
.btn--outline:hover { border-color: var(--red-600); color: var(--red-600); background: #fff7f7; }

.hero {
  padding-top: 56px;
  background:
    radial-gradient(circle at 79% 18%, rgba(255,196,0,.18), transparent 28%),
    linear-gradient(120deg, #fff 0%, #fff 56%, #fff8df 100%);
}
.hero::after { border-color: rgba(215,25,32,.035); }
.hero__grid { grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: clamp(44px, 5vw, 92px); }
.hero__badge { background: #fff8e1; border-color: #ffe49a; color: #b20f15; }
.hero__badge::before { background: var(--red-600); }
.hero h1 { color: #151515; max-width: 900px; font-size: clamp(48px, 4.8vw, 78px); line-height: 1.03; }
.hero h1 span { color: var(--red-600); }
.hero__lead { color: #515151; max-width: 760px; }
.hero__visual { min-height: 560px; }
.hero__image {
  min-height: 560px;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  box-shadow: 0 30px 75px rgba(17,17,17,.18);
  background: #eee;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero__seal { background: #151515; color: #ffc400; border-color: #fff; box-shadow: 0 12px 30px rgba(17,17,17,.22); }
.hero__card { border-radius: 12px; border-top: 4px solid var(--gold-500); }
.hero__card small { color: var(--red-600); }
.hero__meta { border-top-color: #e5e5e5; }
.hero__meta strong { color: #171717; }

.trust-strip { position: relative; z-index: 3; }
.trust-strip__grid { border-radius: 12px; box-shadow: 0 16px 45px rgba(17,17,17,.10); }
.trust-item__icon { background: #fff8dc; color: #151515; border: 1px solid #ffe38d; }

.eyebrow { color: var(--red-600); }
.eyebrow::before { background: var(--gold-500); }
.section-heading h2, .about-copy h2 { color: #171717; }
.section--muted { background: #f8f8f8; }
.section--dark { background: #151515; }

.service-card, .process-card, .compliance-card, .contact-panel, .form-panel {
  border-radius: 12px;
  border-color: #e8e8e8;
  box-shadow: 0 8px 28px rgba(17,17,17,.055);
}
.service-card:hover, .fleet-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(17,17,17,.12); }
.service-card__icon { color: var(--red-600); background: #fff3f3; border: 1px solid #ffd9db; }
.service-card::after { background: var(--gold-500); }
.process-card::before { background: #151515; color: var(--gold-500); }
.process-card::after { border-top-color: #e7b000; }
.compliance-card--accent { background: linear-gradient(145deg, #151515, #262626); border-color: #151515; }
.compliance-card--accent .eyebrow, .compliance-card--accent h3 { color: var(--gold-500); }

.fleet-card { border-radius: 12px; }
.fleet-card__overlay { background: linear-gradient(180deg, transparent, rgba(0,0,0,.90)); }

.cta-band { border-radius: 14px; background: linear-gradient(110deg, #151515 0%, #151515 55%, #d71920 100%); }
.cta-band::before { border-color: rgba(255,196,0,.16); }
.cta-band .btn--primary { background: var(--gold-500); color: #151515; box-shadow: 0 12px 28px rgba(255,196,0,.25); }
.cta-band .btn--primary:hover { background: #ffd54a; }

.contact-item__icon { background: #fff7db; color: #171717; border: 1px solid #ffe28a; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red-600); box-shadow: 0 0 0 4px rgba(215,25,32,.09); }
.footer { background: #111; }
.footer a:hover { color: var(--gold-500); }
.whatsapp-float { background: #d71920; }
.back-to-top { background: #151515; color: var(--gold-500); }

@media (min-width: 1280px) {
  .hero { min-height: auto; padding-block: 72px 90px; }
  .hero__grid { grid-template-columns: minmax(0, .9fr) minmax(610px, 1.1fr); }
  .hero h1 { font-size: clamp(58px, 4.6vw, 84px); }
  .hero__image { min-height: 620px; max-height: 720px; aspect-ratio: 16 / 10.5; border-radius: 16px; }
  .service-card { min-height: 310px; border-radius: 14px; }
  .fleet-card { border-radius: 14px; }
}

@media (max-width: 1050px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero__visual, .hero__image { min-height: 500px; }
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: none; min-height: 460px; }
  .hero__image { min-height: 460px; aspect-ratio: 16 / 11; }
}
@media (max-width: 620px) {
  .hero h1 { font-size: 42px; }
  .hero__visual, .hero__image { min-height: 430px; }
  .hero__image { aspect-ratio: 4 / 5; }
  .hero__image img { object-position: center top; }
}


/* =========================================================
   ASTRA CORPORATE — KUNING · HITAM · MERAH (v7)
   ========================================================= */
:root {
  --navy-950: #111111;
  --navy-900: #171717;
  --navy-800: #262626;
  --blue-600: #d71920;
  --gold-500: #f6c400;
  --gold-400: #ffd83d;
  --red-600: #d71920;
  --green-600: #d71920;
  --slate-900: #171717;
  --slate-700: #333333;
  --slate-600: #555555;
  --slate-500: #6f6f6f;
  --slate-300: #d8d8d8;
  --slate-200: #e9e9e9;
  --slate-100: #f7f7f7;
  --surface: #fafafa;
  --shadow-sm: 0 10px 30px rgba(0,0,0,.07);
  --shadow-lg: 0 28px 80px rgba(0,0,0,.16);
}

body { background:#fff; color:#171717; }
.topbar { background:#111; border-bottom:3px solid #f6c400; }
.topbar, .topbar a { color:#fff; }
.topbar a:hover { color:#f6c400; }
.status-dot::before { background:#f6c400; box-shadow:0 0 0 5px rgba(246,196,0,.16); }

.site-header { background:rgba(255,255,255,.97); border-bottom:1px solid #e8e8e8; box-shadow:0 8px 24px rgba(0,0,0,.04); }
.brand__name { color:#151515; letter-spacing:.01em; }
.brand__tagline { color:#6d6d6d; }
.nav__menu a { color:#292929; font-weight:700; }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color:#d71920; }
.nav__menu a::after { background:#f6c400; height:3px; }
.nav__actions .btn--dark { background:#d71920; color:#fff; box-shadow:0 12px 28px rgba(215,25,32,.22); }
.nav__actions .btn--dark:hover { background:#b81118; transform:translateY(-2px); }

.hero { background:
  radial-gradient(circle at 78% 20%, rgba(246,196,0,.19), transparent 28%),
  linear-gradient(115deg,#fff 0%,#fff 52%,#faf8f2 100%); }
.hero::before { background:linear-gradient(90deg,#f6c400 0 34%,#d71920 34% 67%,#111 67%); height:5px; opacity:1; }
.hero__badge { background:#fff8d8; color:#a71116; border-color:#f0df98; }
.hero h1 { color:#151515; }
.hero h1 span { color:#d71920; }
.hero__lead { color:#515151; }
.hero__seal { background:#111; color:#f6c400; border:7px solid #fff; box-shadow:0 14px 35px rgba(0,0,0,.22); }
.hero__card { background:linear-gradient(135deg,#111,#272727); border-left:5px solid #f6c400; }
.hero__card small { color:#f6c400; }
.hero__image { background:#f2f2f2; border:1px solid #ececec; }
.hero__image::after { content:""; position:absolute; inset:auto 0 0; height:7px; background:linear-gradient(90deg,#f6c400 0 48%,#d71920 48% 72%,#111 72%); }

.btn--primary { background:#d71920; color:#fff; box-shadow:0 12px 28px rgba(215,25,32,.22); }
.btn--primary:hover { background:#b81118; }
.btn--dark { background:#111; color:#fff; }
.btn--dark:hover { background:#282828; }
.btn--outline { border-color:#cfcfcf; color:#171717; }
.btn--outline:hover { border-color:#f6c400; background:#fff9d9; }
.eyebrow { color:#d71920; }
.eyebrow::before { background:#f6c400; }

.trust-strip { background:#fff; }
.trust-strip__grid { border-top:4px solid #f6c400; }
.trust-item__icon { background:#fff8d5; color:#d71920; border-color:#efd459; }

.about-media__label { background:#111; color:#fff; border-left:5px solid #f6c400; }
.check-list li::before { background:#f6c400; color:#111; }

.service-card { background:#fff; border:1px solid #e7e7e7; }
.service-card:hover { border-color:#f6c400; box-shadow:0 20px 50px rgba(0,0,0,.10); }
.service-card::after { background:linear-gradient(90deg,#f6c400,#d71920); }
.service-card__icon { background:#fff8d6; color:#111; }
.service-card h3 { color:#171717; }

.section--dark { background:linear-gradient(135deg,#111 0%,#1b1b1b 60%,#2d090a 100%); }
.section--dark::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 85% 15%,rgba(215,25,32,.18),transparent 30%); }
.section--dark .eyebrow { color:#f6c400; }
.process-card { border-color:rgba(255,255,255,.16); background:rgba(255,255,255,.055); }
.process-card::before { color:#f6c400; }
.process-card:hover { border-color:#f6c400; background:rgba(246,196,0,.08); }

.fleet-card { border-color:#e6e6e6; }
.fleet-card:hover { border-color:#f6c400; }
.fleet-card__overlay { background:linear-gradient(180deg,transparent,rgba(0,0,0,.92)); }

.cta-band { background:linear-gradient(110deg,#111 0%,#181818 50%,#d71920 100%); border-bottom:7px solid #f6c400; }
.cta-band::after { content:""; position:absolute; right:0; top:0; width:34%; height:100%; background:linear-gradient(135deg,transparent 18%,rgba(246,196,0,.12)); pointer-events:none; }
.cta-band .btn--primary { background:#f6c400; color:#111; box-shadow:none; }
.cta-band .btn--primary:hover { background:#ffd83d; }

.contact-panel { background:#111; color:#fff; border-top:6px solid #f6c400; }
.contact-panel h3 { color:#fff; }
.contact-item__icon { background:#f6c400; color:#111; }
.form-panel { border-top:6px solid #d71920; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:#d71920; box-shadow:0 0 0 4px rgba(215,25,32,.10); }

.faq-item { border-left:4px solid transparent; }
.faq-item:has(button[aria-expanded="true"]) { border-left-color:#f6c400; }
.faq-item button:hover { color:#d71920; }

.footer { background:#111; border-top:6px solid #f6c400; }
.footer h3 { color:#f6c400; }
.footer__links a:hover { color:#f6c400; }
.footer__bottom { border-top-color:rgba(255,255,255,.13); }
.whatsapp-float { background:#d71920; color:#fff; box-shadow:0 15px 35px rgba(215,25,32,.28); }
.whatsapp-float:hover { background:#b81118; }
.back-to-top { background:#111; border:2px solid #f6c400; color:#f6c400; }

@media (min-width: 1280px) {
  .hero__grid { min-height:700px; align-items:center; }
  .hero h1 { font-size:clamp(58px,4.6vw,86px); max-width:900px; }
  .hero__lead { max-width:760px; font-size:19px; }
}

@media (max-width: 860px) {
  .nav__menu { border-top:4px solid #f6c400; }
  .hero { background:linear-gradient(180deg,#fff,#fffaf0); }
  .hero h1 { font-size:clamp(40px,11vw,62px); }
  .hero__seal { background:#111; color:#f6c400; }
}
