/* Header actions: theme toggle next to phone */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .theme-toggle.header-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 34px;
  border-radius: 30px;
}

.main-nav .theme-toggle.nav-theme-toggle {
  display: none;
}

@media (max-width: 1000px) {
  .site-header .theme-toggle.header-theme-toggle {
    display: none;
  }

  .main-nav .theme-toggle.nav-theme-toggle {
    display: inline-flex;
  }
}

:root {
  --ink: #0b1930;
  --green: #0b5bd3;
  --green-2: #09b9d4;
  --lime: #56ddff;
  --paper: #f3f5f8;
  --white: #fff;
  --muted: #647287;
  --line: rgba(11, 25, 48, 0.14);
  --red: #e4312b;
  --radius: 26px;
  --shadow: 0 22px 60px rgba(7, 31, 73, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

em {
  color: var(--green);
  font-style: normal;
}

.site-header {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 5vw, 76px);
  background: rgba(243, 245, 248, 0.9);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-family: Unbounded, sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.brand small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -7px;
  background: var(--green);
  transition: 0.25s;
}

.main-nav a:hover:after {
  right: 0;
}

.header-phone-container {
  display: flex;
  align-items: center;
}

.call-button-header {
  background: var(--red);
  color: white;
  height: 48px;
  padding: 0 20px 0 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(228, 49, 43, 0.3);
  transition: 0.2s;
}

.call-button-header:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(228, 49, 43, 0.4);
}

.call-button-header svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.call-button-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.call-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.call-number {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}

.hero {
  min-height: calc(100vh - 86px);
  padding: clamp(70px, 8vw, 115px) clamp(22px, 7vw, 110px) 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  column-gap: 8vw;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%,
      rgba(86, 221, 255, 0.25),
      transparent 29%),
    linear-gradient(112deg, transparent 64%, rgba(11, 91, 211, 0.06) 64%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 36px;
  height: 8px;
  border-radius: 10px;
  background: var(--lime);
  border: 1px solid rgba(11, 25, 48, 0.15);
}

h1,
h2 {
  font-family: Unbounded, sans-serif;
  letter-spacing: -0.055em;
  margin: 0;
  line-height: 0.97;
}

h1 {
  font-size: clamp(50px, 6vw, 100px);
  margin: 26px 0 28px;
  font-weight: 600;
}

.hero-copy>p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  max-width: 660px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-primary span {
  color: var(--lime);
  font-size: 18px;
}

.button-ghost {
  border-color: var(--ink);
}

.button-ghost:hover {
  background: var(--white);
}

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  background: var(--ink);
  color: var(--white);
  padding: 26px;
  border-radius: 36px;
  transform: rotate(2.5deg);
  box-shadow: var(--shadow);
}

.hero-panel>img {
  width: 72%;
  margin: 16px auto -10px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.25));
}

.panel-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c9d5d0;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 221, 255, 0.12);
}

.license-number {
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
  border-radius: 20px;
}

.license-number small {
  color: #aebcb6;
  display: block;
  margin-bottom: 7px;
}

.license-number strong {
  font-family: Unbounded, sans-serif;
  line-height: 1.45;
  font-size: clamp(17px, 1.7vw, 25px);
}

.panel-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #99aaa3;
  padding: 17px 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stats {
  grid-column: 1/-1;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}

.hero-stats>div+div {
  border-left: 1px solid var(--line);
  padding-left: 2.2vw;
}

.hero-stats strong {
  font-family: Unbounded, sans-serif;
  font-size: 28px;
  white-space: nowrap;
}

.hero-stats span {
  font-size: 12px;
  color: var(--muted);
  max-width: 120px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(11, 91, 211, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 560px;
  height: 560px;
  right: -210px;
  top: -160px;
}

.orbit-two {
  width: 310px;
  height: 310px;
  right: -60px;
  top: -35px;
}

.section {
  padding: clamp(50px, 7vw, 80px) clamp(22px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 62px;
}

.kicker {
  color: var(--green);
  display: block;
  margin-bottom: 26px;
}

.section-heading h2,
.license-intro h2,
.process-heading h2,
.request-copy h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.section-heading>p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 430px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.service-card {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.58);
  padding: 28px;
  min-height: 340px;
  border: 1px solid rgba(11, 25, 48, 0.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.service-card.featured {
  grid-column: span 3;
  background: var(--green);
  color: white;
}

.service-card:nth-child(2) {
  grid-column: span 3;
}

.service-index {
  font-size: 11px;
  color: var(--muted);
}

.featured .service-index,
.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
  opacity: 0.9;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.featured .service-icon {
  color: #fff;
}

.service-card h3 {
  font-size: 23px;
  margin: 20px 0 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.service-card small {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.license-section {
  background: var(--ink);
  color: var(--white);
  padding: clamp(50px, 7vw, 80px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
  align-items: center;
}

.kicker.light {
  color: var(--lime);
}

.license-intro p {
  color: #aab8b3;
  line-height: 1.7;
  max-width: 430px;
  margin: 30px 0;
}

.license-intro em {
  color: var(--lime);
}

.text-link {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  padding-bottom: 12px;
  border-bottom: 1px solid #4f5f59;
  font-weight: 800;
  font-size: 13px;
}

.license-card {
  background: #f8f6ef;
  color: var(--ink);
  padding: 34px;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg);
}

.license-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.license-card-head>div {
  display: flex;
  flex-direction: column;
}

.license-card-head small {
  color: var(--muted);
}

.license-card-head strong {
  font-family: Unbounded, sans-serif;
  font-size: 29px;
  margin-top: 7px;
}

.license-card-head>span {
  background: #dcecff;
  color: #174f9e;
  padding: 9px 13px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
}

.license-card dl {
  margin: 18px 0;
}

.license-card dl div {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.license-card dt {
  font-size: 12px;
  color: var(--muted);
}

.license-card dd {
  margin: 0;
  font-weight: 800;
  font-size: 13px;
}

.license-seal {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.license-seal img {
  width: 45px;
}

.license-seal span {
  font-size: 11px;
  color: var(--muted);
  max-width: 260px;
}

.location-list {
  border-top: 1px solid var(--line);
}

.location {
  display: grid;
  grid-template-columns: 80px 1.2fr 0.8fr;
  gap: 30px;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #f0f0f0;
}

@media (max-width: 950px) {
  .location {
    grid-template-columns: 80px 1fr;
    padding: 35px 0;
  }
  .map-container {
    grid-column: 1 / -1;
    margin-top: 15px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .location {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 20px;
  }
  .location > span {
    display: inline-block;
    margin-bottom: -10px;
  }
  .location h3 {
    font-size: 24px;
  }
  .map-container {
    height: 180px;
    margin-top: 5px;
  }
}

.location>span {
  font-family: Unbounded, sans-serif;
  color: var(--green);
  font-size: 13px;
}

.location small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 10px;
}

.location h3 {
  font-family: Unbounded, sans-serif;
  font-size: clamp(24px, 3.3vw, 50px);
  letter-spacing: -0.04em;
  margin: 12px 0;
}

.location p {
  color: var(--muted);
  line-height: 1.6;
}

.process-band {
  margin: 0 clamp(14px, 2vw, 30px);
  border-radius: 40px;
  background: var(--green);
  color: white;
  padding: clamp(40px, 6vw, 70px) clamp(22px, 6vw, 90px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.process-heading h2 {
  font-size: clamp(38px, 4.6vw, 65px);
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.process-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-title span {
  color: var(--lime);
  font-family: Unbounded, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(163, 230, 53, 0.15);
  padding: 4px 8px;
  border-radius: 6px;
}

.process-steps strong {
  font-size: 18px;
  line-height: 1.3;
}

.process-steps p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.company {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
}

.company-story h2 {
  font-size: clamp(36px, 4.8vw, 68px);
  margin-bottom: 26px;
}

.company-story .lead {
  font-size: 20px;
  line-height: 1.5;
}

.company-story p:not(.lead) {
  color: var(--muted);
  line-height: 1.7;
}

.company-docs {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.company-docs a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
}

.company-docs span {
  color: var(--green);
}

.details-card {
  background: var(--white);
  padding: 14px 34px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.detail strong {
  font-size: 14px;
  line-height: 1.5;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.request-section {
  background: #071326;
  color: var(--white);
  padding: clamp(50px, 7vw, 80px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9vw;
}

.request-copy p {
  color: #96a69f;
  line-height: 1.7;
  max-width: 440px;
}

.direct-contacts {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}

.direct-contacts a {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid #2d3a35;
}

.direct-contacts small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7f9088;
}

.direct-contacts strong {
  margin-top: 5px;
}

.request-form {
  background: #f5f2e9;
  color: var(--ink);
  padding: 34px;
  border-radius: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.request-form label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.request-form label>span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b9bdb8;
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
}

textarea {
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 22px;
}

.consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.consent span {
  font-size: 11px !important;
  line-height: 1.5;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
  background: var(--green);
  color: white;
}

.form-status {
  font-size: 12px;
  min-height: 20px;
  margin: 14px 0 0;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

footer {
  padding: 60px clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

footer .brand span strong {
  color: white;
}
footer .brand span small {
  color: rgba(255, 255, 255, 0.5);
}
footer .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

footer > p {
  text-align: center;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
}

footer > p a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer > p a:hover {
  color: white;
}

footer > div {
  display: flex;
  flex-direction: column;
  justify-self: end;
  text-align: right;
  font-size: 14px;
  font-family: Unbounded, sans-serif;
  font-weight: 500;
  gap: 8px;
}

footer > div a {
  color: white;
  transition: opacity 0.2s;
}

footer > div a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  footer {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 50px 22px;
  }
  footer .brand {
    justify-content: center;
  }
  footer > div {
    justify-self: center;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 25px;
    flex-direction: column;
    transform: translateY(-140%);
    transition: 0.3s;
    z-index: -1;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 6px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel {
    margin: 60px auto 0;
    max-width: 470px;
    width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card.featured,
  .service-card:nth-child(2) {
    grid-column: span 1;
  }

  .license-section,
  .process-band,
  .company,
  .request-section {
    grid-template-columns: 1fr;
  }

  .license-intro,
  .process-heading,
  .request-copy {
    max-width: 680px;
  }

  .license-card {
    max-width: 720px;
  }

  .process-band {
    gap: 60px;
  }

  .request-section {
    gap: 60px;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 74px;
    padding: 0 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    padding: 55px 18px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .hero-copy>p {
    font-size: 15px;
  }

  .hero-panel {
    border-radius: 26px;
    padding: 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .hero-stats>div+div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .section,
  .license-section,
  .company,
  .request-section {
    padding: 80px 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .license-intro h2,
  .process-heading h2,
  .request-copy h2 {
    font-size: 38px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 290px;
  }

  .license-section {
    gap: 50px;
  }

  .license-card {
    padding: 22px;
  }

  .license-card-head {
    flex-direction: column;
    gap: 14px;
  }

  .license-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .location {
    grid-template-columns: 45px 1fr;
  }

  .process-band {
    margin: 0 8px;
    border-radius: 28px;
    padding: 70px 18px;
  }

  .detail-row,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .details-card,
  .request-form {
    padding: 24px;
  }

  .company {
    gap: 50px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  footer .brand {
    margin: auto;
  }

  footer>div {
    justify-self: center;
    text-align: center;
  }

  .call-button {
    width: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    right: 16px;
    bottom: 16px;
  }

  .call-button span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 700px) {

  .hero,
  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 44px);
    overflow-wrap: normal;
  }

  .eyebrow {
    font-size: 9px;
    line-height: 1.5;
    align-items: flex-start;
  }

  .eyebrow span {
    flex: 0 0 28px;
    margin-top: 3px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero-orbit {
    display: none;
  }

  .section-heading>* {
    min-width: 0;
  }

  .section-heading h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }
}

/* Alternative palette based on the original logo from the commercial proposal */
.theme-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  height: 34px;
  padding: 0 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.theme-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #078847 0 48%, #d9e832 52% 100%);
  box-shadow: 0 0 0 3px rgba(7, 136, 71, 0.08);
}

body,
.site-header,
.hero-panel,
.license-section,
.process-band,
.request-section,
.service-card,
.button {
  transition:
    background-color 0.35s,
    color 0.35s,
    border-color 0.35s;
}

body.theme-legacy {
  --ink: #123d2d;
  --green: #078847;
  --green-2: #43ad65;
  --lime: #d9e832;
  --paper: #fbfaf0;
  --white: #fff;
  --muted: #61776b;
  --line: rgba(18, 61, 45, 0.14);
  --shadow: 0 22px 60px rgba(18, 61, 45, 0.13);
  background: #fbfaf0;
}

body.theme-legacy .site-header {
  background: rgba(251, 250, 240, 0.92);
}

body.theme-legacy .hero:before {
  background:
    radial-gradient(circle at 75% 30%,
      rgba(217, 232, 50, 0.22),
      transparent 29%),
    linear-gradient(112deg, transparent 64%, rgba(7, 136, 71, 0.06) 64%);
}

body.theme-legacy .hero-orbit {
  border-color: rgba(7, 136, 71, 0.15);
}

body.theme-legacy .license-section {
  background: #123d2d;
}

body.theme-legacy .request-section {
  background: #0b2a1e;
}

body.theme-legacy .license-card-head>span {
  background: #e4f5d4;
  color: #176534;
}

body.theme-legacy .theme-dot {
  background: linear-gradient(135deg, #0b5bd3 0 52%, #56ddff 55% 100%);
  box-shadow: 0 0 0 3px rgba(11, 91, 211, 0.08);
}

body.theme-legacy .hero-panel>img {
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.2)) saturate(0.95);
}

body.theme-legacy .brand img {
  filter: saturate(0.92) contrast(1.03);
}

@media (max-width: 1000px) {
  .theme-toggle {
    width: max-content;
  }

  .main-nav .theme-toggle {
    margin-top: 4px;
  }
}

/* Legacy theme service-card contrast refinements */
body.theme-legacy .service-card.featured {
  background: linear-gradient(145deg, #087c46 0%, #0b6840 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(18, 61, 45, 0.18);
}

body.theme-legacy .service-card.featured .service-index {
  color: #d9e832;
}

body.theme-legacy .service-card.featured p {
  color: #e1f2e7;
}

body.theme-legacy .service-card.featured small {
  color: #f4ffd7;
  opacity: 1;
  border-top-color: rgba(244, 255, 215, 0.48);
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

body.theme-legacy .service-card:not(.featured) {
  background: linear-gradient(145deg, #f5f5e6 0%, #e8f1e5 100%);
  border-color: rgba(7, 136, 71, 0.13);
  box-shadow: 0 12px 32px rgba(18, 61, 45, 0.055);
}

body.theme-legacy .service-card:not(.featured):hover {
  background: linear-gradient(145deg, #fbfaee 0%, #edf6e9 100%);
  border-color: rgba(7, 136, 71, 0.24);
}

body.theme-legacy .service-card:not(.featured) small {
  opacity: 0.78;
  color: #365f4d;
}

body.theme-legacy .direct-contacts a {
  border-bottom-color: rgba(255, 255, 255, 0.17);
}

body.theme-legacy .direct-contacts small {
  color: #a9c2b4;
}

/* Plain-language introduction based on client feedback */
.understand {
  padding-top: clamp(50px, 7vw, 80px);
}

.understand-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 52px;
}

.understand-heading h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.understand-heading>p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 470px;
  margin: 0;
}

.understand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.understand-card {
  min-height: 520px;
  padding: 18px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.understand-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 91, 211, 0.25);
  box-shadow: 0 22px 55px rgba(7, 31, 73, 0.13);
}

.understand-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 3px 0;
}

.understand-card-topline>span {
  font-family: Unbounded, sans-serif;
  color: var(--green);
  font-size: 12px;
}

.understand-card-topline>small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.understand-visual {
  height: 190px;
  flex: 0 0 190px;
  margin: 15px 0 25px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--surface, #f4f6f9);
}

.understand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  transition: transform 0.4s ease;
}

.understand-card:hover .understand-img {
  transform: scale(1.05);
}

.understand-card h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
  margin: 0 2px 13px;
}

.understand-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin: 0 2px;
}

.understand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 2px 0;
  padding-top: 18px;
}

.understand-tags span {
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(11, 91, 211, 0.08);
  color: #2e598c;
  font-size: 10px;
  font-weight: 800;
}

.understand-card.accent {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.understand-card.accent:hover {
  transform: translateY(-15px);
}

.understand-card.accent .understand-card-topline>span {
  color: var(--lime);
}

.understand-card.accent .understand-card-topline>small {
  color: rgba(255, 255, 255, 0.55);
}

.understand-card.accent p {
  color: rgba(255, 255, 255, 0.7);
}

.understand-card.accent .understand-tags span {
  color: #9beaff;
  background: rgba(86, 221, 255, 0.11);
}

/* Card 01: waste description */
.visual-task {
  background:
    radial-gradient(circle at 82% 20%, rgba(86, 221, 255, 0.55) 0 9%, transparent 10%),
    linear-gradient(145deg, #e5f1ff 0%, #d8f7f6 100%);
}

.visual-task:before,
.visual-task:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.visual-task:before {
  width: 120px;
  height: 120px;
  right: -38px;
  bottom: -45px;
}

.visual-task:after {
  width: 48px;
  height: 48px;
  left: 16px;
  top: 18px;
}

.visual-task-ground {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 23px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 25, 48, 0.1);
  filter: blur(3px);
}

.visual-task-bin {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 31px;
  width: 116px;
  height: 74px;
  transform: translateX(-50%);
  border: 3px solid #0b5bd3;
  border-radius: 7px 7px 15px 15px;
  background: linear-gradient(180deg, #3c8df0, #0b5bd3);
  box-shadow: 0 14px 24px rgba(11, 91, 211, 0.23);
}

.visual-task-bin:before {
  content: "";
  position: absolute;
  left: -9px;
  right: -9px;
  top: -13px;
  height: 12px;
  border-radius: 5px;
  background: #0b1930;
}

.visual-task-bin:after {
  content: "";
  position: absolute;
  inset: 13px 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.33);
  border-right: 2px solid rgba(255, 255, 255, 0.33);
}

.visual-task-bin i {
  position: absolute;
  top: -30px;
  width: 28px;
  height: 31px;
  border: 2px solid #0b1930;
  border-radius: 50% 50% 45% 45%;
  background: #f9cf4a;
}

.visual-task-bin i:nth-child(1) {
  left: 10px;
  transform: rotate(-12deg);
}

.visual-task-bin i:nth-child(2) {
  left: 43px;
  top: -37px;
  background: #56ddff;
}

.visual-task-bin i:nth-child(3) {
  right: 9px;
  transform: rotate(11deg);
  background: #fff;
}

.visual-info-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(7, 31, 73, 0.12);
  color: #24486f;
  font-size: 10px;
  font-weight: 800;
}

.visual-info-chip b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4efff;
  color: var(--green);
  font-size: 12px;
}

.visual-info-volume {
  top: 24px;
  right: 17px;
}

.visual-info-address {
  left: 17px;
  bottom: 31px;
}

/* Card 02: licence verification */
.visual-check {
  background:
    radial-gradient(circle at 15% 24%, rgba(86, 221, 255, 0.16) 0 12%, transparent 13%),
    linear-gradient(145deg, #12395a, #0e263e);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-document {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 112px;
  height: 145px;
  transform: translateX(-50%) rotate(-3deg);
  padding: 19px 15px;
  border-radius: 9px;
  background: #f7fbff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.visual-document small {
  color: #0b5bd3;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.visual-document i {
  display: block;
  height: 5px;
  margin-top: 12px;
  border-radius: 4px;
  background: #d7e2ed;
}

.visual-document i:nth-of-type(2) {
  width: 72%;
}

.visual-document i:nth-of-type(3) {
  width: 86%;
}

.visual-document b {
  position: absolute;
  right: 12px;
  bottom: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a86e;
  color: #fff;
  font-size: 20px;
}

.visual-magnifier {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  border: 8px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.visual-magnifier:after {
  content: "";
  position: absolute;
  width: 45px;
  height: 9px;
  right: -35px;
  bottom: -19px;
  border-radius: 6px;
  background: var(--lime);
  transform: rotate(48deg);
  transform-origin: left center;
}

.visual-check-stamp {
  position: absolute;
  left: 23px;
  bottom: 25px;
  padding: 8px 10px;
  border: 1px solid rgba(86, 221, 255, 0.55);
  border-radius: 9px;
  color: var(--lime);
  font-family: Unbounded, sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
}

/* Card 03: transport and completion */
.visual-action {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.75) 0 8%, transparent 9%),
    linear-gradient(180deg, #dff4ff 0 67%, #d5e3dc 68% 100%);
}

.visual-facility {
  position: absolute;
  right: 20px;
  bottom: 45px;
  width: 86px;
  height: 82px;
  border-radius: 5px 5px 0 0;
  background: #194d79;
}

.visual-facility:before {
  content: "";
  position: absolute;
  left: 11px;
  top: -34px;
  width: 19px;
  height: 36px;
  border-radius: 4px 4px 0 0;
  background: #0b1930;
  box-shadow: 36px 12px 0 #0b1930;
}

.visual-facility i {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 20px;
  margin: 17px 2px 0 7px;
  background: #56ddff;
  opacity: 0.78;
}

.visual-road {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 20px;
  height: 30px;
  background: #536171;
  transform: skewX(-15deg);
}

.visual-road i {
  display: inline-block;
  width: 38px;
  height: 3px;
  margin: 14px 7px;
  background: rgba(255, 255, 255, 0.8);
}

.visual-truck {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 42px;
  width: 140px;
  height: 67px;
}

.visual-truck-body {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 92px;
  height: 48px;
  border-radius: 7px 3px 3px 7px;
  background: linear-gradient(135deg, #ff8a34, #e84f24);
  box-shadow: inset -10px 0 rgba(127, 34, 17, 0.13);
}

.visual-truck-cab {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 51px;
  height: 42px;
  border-radius: 4px 12px 4px 3px;
  background: #0b5bd3;
}

.visual-truck-cab:before {
  content: "";
  position: absolute;
  right: 7px;
  top: 6px;
  width: 24px;
  height: 14px;
  border-radius: 3px 7px 2px 2px;
  background: #bfefff;
}

.visual-truck>i {
  position: absolute;
  z-index: 2;
  bottom: 3px;
  width: 25px;
  height: 25px;
  border: 6px solid #0b1930;
  border-radius: 50%;
  background: #aab5bf;
}

.visual-truck>i:first-of-type {
  left: 21px;
}

.visual-truck>i:last-of-type {
  right: 13px;
}

.understand-result {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.35);
}

.understand-result>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.understand-result small {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.understand-result strong {
  font-size: 17px;
  line-height: 1.4;
}

.process-note {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 430px;
  margin: 26px 0 0;
}

.services {
  padding-top: clamp(50px, 7vw, 80px);
}

body.theme-legacy .understand-card {
  background: linear-gradient(145deg, #f8f7e9 0%, #edf4e8 100%);
  border-color: rgba(7, 136, 71, 0.13);
}

body.theme-legacy .understand-card.accent {
  background: linear-gradient(145deg, #123d2d 0%, #0a6f43 100%);
  border-color: transparent;
}

body.theme-legacy .understand-result {
  background: rgba(232, 241, 229, 0.7);
  border-color: rgba(7, 136, 71, 0.14);
}

@media (max-width: 1000px) {
  .understand-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .understand-heading>p {
    max-width: 700px;
  }

  .understand-card {
    min-height: 330px;
  }

  .understand-result {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .understand-heading {
    margin-bottom: 34px;
  }

  .understand-heading h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .understand-grid {
    grid-template-columns: 1fr;
  }

  .understand-card,
  .understand-card.accent {
    min-height: 250px;
    transform: none;
  }

  .understand-result {
    flex-direction: column;
    padding: 22px;
  }

  .understand-result .button {
    width: 100%;
  }

  .service-card {
    min-height: 320px;
  }

  .process-note {
    font-size: 14px;
  }
}

/* Real transport and equipment gallery */
.fleet {
  padding-top: clamp(40px, 6vw, 70px);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.38) 100%);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.fleet-card {
  grid-column: span 4;
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  isolation: isolate;
  box-shadow: 0 16px 38px rgba(11, 25, 48, 0.1);
}

.fleet-card-wide {
  grid-column: span 8;
}

.fleet-card-full {
  grid-column: span 12;
  min-height: 560px;
}

.fleet-card-half {
  grid-column: span 6;
  min-height: 410px;
}

.fleet-card-duo {
  grid-column: span 12;
  min-height: 560px;
}

.fleet-card-duo-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--ink);
}

.fleet-card-duo .fleet-card-duo-images img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.fleet-card-duo .fleet-card-duo-images img:first-child {
  object-position: center;
}

.fleet-card-duo .fleet-card-duo-images img:last-child {
  object-position: 58% center;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}

.fleet-card:nth-child(1) img {
  object-position: 67% center;
}

.fleet-card:nth-child(2) img {
  object-position: center;
}

.fleet-card:nth-child(3) img {
  object-position: center center;
}

.fleet-card:nth-child(4) img {
  object-position: 67% center;
}

.fleet-card:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 18, 13, 0.02) 42%,
      rgba(5, 18, 13, 0.82) 100%);
  pointer-events: none;
}

.fleet-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.fleet-card figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: end;
  color: #fff;
}

.fleet-card figcaption>span {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Unbounded, sans-serif;
  font-size: 10px;
  color: var(--lime);
  backdrop-filter: blur(8px);
}

.fleet-card figcaption div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fleet-card figcaption strong {
  font-family: Unbounded, sans-serif;
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.fleet-card figcaption small {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
}

body.theme-legacy .fleet {
  background: linear-gradient(180deg,
      rgba(251, 250, 240, 0) 0%,
      rgba(226, 237, 222, 0.58) 100%);
}

body.theme-legacy .fleet-card {
  box-shadow: 0 18px 42px rgba(18, 61, 45, 0.14);
}

.equipment-showcase {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  align-items: stretch;
}

.equipment-photo {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #dceaf2;
  box-shadow: var(--shadow);
}

.equipment-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.equipment-photo:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 32, 0.82));
}

.equipment-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fff;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.equipment-photo figcaption>span {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Unbounded, sans-serif;
  font-size: 10px;
}

.equipment-photo figcaption strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.equipment-photo figcaption small {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.equipment-facts {
  padding: 38px;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-content: center;
  box-shadow: var(--shadow);
}

.equipment-facts-copy>span {
  display: block;
  color: var(--lime);
  font-family: Unbounded, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.equipment-facts-copy h3 {
  font-family: Unbounded, sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.equipment-facts-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.equipment-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.equipment-specs>div {
  padding: 12px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  display: flex;
  flex-direction: column;
}

.equipment-specs dt {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  min-height: 30px;
}

.equipment-specs dd {
  font-family: Unbounded, sans-serif;
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: -0.04em;
  margin: 16px 0 10px;
  color: #fff;
}

.equipment-specs small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.5;
  margin-top: auto;
}

.equipment-disclaimer {
  grid-column: 1/-1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.6;
}

body.theme-legacy .equipment-facts {
  background: linear-gradient(145deg, #123d2d 0%, #0a6f43 100%);
}

@media (max-width: 1000px) {

  .fleet-card,
  .fleet-card-half {
    grid-column: span 6;
    min-height: 460px;
  }

  .fleet-card-wide,
  .fleet-card-full,
  .fleet-card-duo {
    grid-column: span 12;
    min-height: 480px;
  }

  .equipment-showcase {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  }

  .equipment-photo {
    min-height: 620px;
  }

  .equipment-facts-copy {
    max-width: 700px;
  }

  .equipment-specs {
    grid-template-columns: 1fr;
  }

  .equipment-specs>div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    padding: 16px 0;
  }

  .equipment-specs dt {
    min-height: 0;
  }

  .equipment-specs dd {
    margin: 9px 0 6px;
  }
}

@media (max-width: 700px) {
  .fleet {
    padding-top: 72px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fleet-card,
  .fleet-card-wide,
  .fleet-card-full,
  .fleet-card-half,
  .fleet-card-duo {
    grid-column: 1;
    min-height: 360px;
    border-radius: 24px;
  }

  .fleet-card-wide,
  .fleet-card-full {
    min-height: 300px;
  }

  .fleet-card-duo {
    min-height: 420px;
  }

  .fleet-card figcaption {
    padding: 22px;
    grid-template-columns: 38px 1fr;
    gap: 11px;
  }

  .fleet-card figcaption>span {
    width: 32px;
    height: 32px;
  }

  .fleet-card figcaption strong {
    font-size: 18px;
  }

  .fleet-card-duo figcaption small {
    line-height: 1.45;
  }

  .fleet-card:nth-child(4) img {
    object-position: 67% center;
  }

  .equipment-showcase {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .equipment-photo {
    min-height: 500px;
    border-radius: 24px;
  }

  .equipment-photo figcaption {
    padding: 22px;
  }

  .equipment-photo figcaption strong {
    font-size: 20px;
  }

  .equipment-facts {
    padding: 26px 22px;
    border-radius: 24px;
    gap: 28px;
  }

  .equipment-specs {
    grid-template-columns: 1fr;
  }

  .equipment-specs>div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    padding: 20px 0;
  }

  .equipment-specs dt {
    min-height: 0;
  }

  .equipment-specs dd {
    margin: 10px 0 7px;
  }
}

/* Conversion, FKKO search, documents and FAQ */
.main-nav {
  gap: 26px;
}

section[id] {
  scroll-margin-top: 86px;
}

.hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  column-gap: clamp(40px, 6vw, 90px);
}

.hero h1 {
  font-size: clamp(44px, 5.25vw, 84px);
}

.hero-copy>p {
  max-width: 720px;
}

.hero-lead-card {
  position: relative;
  z-index: 2;
  align-self: center;
  background: var(--ink);
  color: #fff;
  padding: 30px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.quick-form-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.quick-form-heading .live-dot {
  margin-top: 7px;
  flex: 0 0 8px;
}

.quick-form-heading small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}

.quick-form-heading h2 {
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.quick-form label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.quick-form label>span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.quick-form input,
.quick-form textarea {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.quick-form input::placeholder,
.quick-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.quick-form input:focus,
.quick-form textarea:focus {
  border-color: var(--lime);
}

.quick-consent {
  margin: 4px 0 18px;
}

.quick-consent span {
  color: rgba(255, 255, 255, 0.57) !important;
}

.quick-consent a,
.request-form .consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-form .button-submit {
  background: var(--lime);
  color: var(--ink);
}

.quick-form .form-status.success {
  color: var(--lime);
}

.quick-trust {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-stats {
  margin-top: 58px;
}

body.theme-legacy .hero-lead-card {
  background: linear-gradient(145deg, #123d2d 0%, #075d39 100%);
}

.fkko-section {
  margin: 0 clamp(14px, 2vw, 30px);
  padding: clamp(40px, 6vw, 70px) clamp(22px, 6vw, 90px);
  border-radius: 40px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fkko-section:before {
  content: "3579";
  position: absolute;
  right: -30px;
  top: -45px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(130px, 22vw, 330px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.fkko-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7vw;
  align-items: end;
  position: relative;
  z-index: 1;
}

.fkko-heading h2 {
  font-size: clamp(38px, 4.8vw, 70px);
}

.fkko-heading h2 em {
  color: var(--lime);
}

.fkko-heading>p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.7;
  margin: 0;
}

.fkko-search-shell {
  position: relative;
  z-index: 1;
  background: #f6f6ed;
  color: var(--ink);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 32px;
  margin-top: 52px;
}

.fkko-search label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 12px;
}

.fkko-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.fkko-search-row input {
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0 20px;
  font-size: 16px;
}

.fkko-search-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(7, 136, 71, 0.09);
}

.fkko-search-row button {
  border: 0;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  padding: 0 27px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 30px;
}

.fkko-search-row button span {
  color: var(--lime);
  font-size: 18px;
}

.fkko-examples {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.fkko-examples>span {
  font-size: 10px;
  color: var(--muted);
  margin-right: 4px;
}

.fkko-examples button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 30px;
  padding: 7px 12px;
  font-size: 10px;
  cursor: pointer;
}

.fkko-examples button:hover {
  border-color: var(--green);
  color: var(--green);
}

.fkko-status {
  min-height: 22px;
  margin: 28px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.fkko-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fkko-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fkko-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.fkko-result code {
  font-family: Unbounded, sans-serif;
  font-size: 12px;
  color: var(--green);
  white-space: nowrap;
}

.fkko-result-head>span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(7, 136, 71, 0.09);
  color: var(--green);
  border-radius: 30px;
  padding: 7px 9px;
  white-space: nowrap;
}

.fkko-result h3 {
  font-size: 15px;
  line-height: 1.45;
  margin: 18px 0;
  overflow-wrap: anywhere;
}

.fkko-operations {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.fkko-operations span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 6px 8px;
  border-radius: 20px;
  background: var(--paper);
  color: var(--muted);
}

.fkko-result>small {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.fkko-empty {
  grid-column: 1/-1;
  border: 1px dashed rgba(7, 136, 71, 0.3);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fkko-empty span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fkko-empty a {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  margin-top: 6px;
}

.fkko-note {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
}

.fkko-note p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.6;
  margin: 0;
}

.button-light {
  background: #fff;
  color: var(--ink);
  white-space: nowrap;
}

body.theme-legacy .fkko-section {
  background: linear-gradient(145deg, #123d2d 0%, #075d39 100%);
}

.client-documents {
  padding-top: clamp(50px, 7vw, 80px);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.document-card {
  grid-column: span 2;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
}

.document-card:nth-child(4),
.document-card:nth-child(5) {
  grid-column: span 3;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}

.card-header > span {
  font-family: Unbounded, sans-serif;
  font-size: 10px;
  color: var(--green);
}

.svg-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
  opacity: 0.9;
}

.svg-icon svg {
  width: 100%;
  height: 100%;
}

.document-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 22px 0 12px;
}

.document-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.document-card-accent {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.document-card-accent .card-header > span {
  color: var(--lime);
}

.document-card-accent .svg-icon {
  color: #fff;
}

.document-card-accent p {
  color: rgba(255, 255, 255, 0.7);
}

.documents-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  padding: 24px 26px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}

.documents-summary strong {
  font-family: Unbounded, sans-serif;
  font-size: 13px;
}

.documents-summary span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.documents-summary a {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.faq-section {
  padding-top: clamp(50px, 7vw, 80px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 62px 1fr 36px;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary>span {
  font-family: Unbounded, sans-serif;
  color: var(--green);
  font-size: 10px;
}

.faq-item summary strong {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
}

.faq-item summary i {
  font-style: normal;
  font-size: 24px;
  color: var(--green);
  transition: transform 0.25s;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item>div {
  padding: 0 54px 27px 80px;
}

.faq-item p {
  max-width: 840px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.footer-policy {
  display: inline-block;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-main {
  padding-bottom: 90px;
}

.privacy-hero {
  padding: clamp(50px, 7vw, 80px) clamp(22px, 7vw, 110px) 70px;
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  font-size: clamp(42px, 6vw, 86px);
}

.privacy-hero>p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 28px 0;
}

.privacy-hero>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.privacy-hero>div a {
  color: var(--green);
  font-weight: 800;
}

.privacy-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 8vw;
  padding: 70px clamp(22px, 7vw, 110px);
}

.privacy-operator {
  position: sticky;
  top: 112px;
  align-self: start;
  background: var(--ink);
  color: #fff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.privacy-operator small {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 9px;
  margin-bottom: 10px;
}

.privacy-operator strong {
  font-family: Unbounded, sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.privacy-operator span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.55;
}

.privacy-operator a {
  color: var(--lime);
  font-size: 12px;
  margin-top: 8px;
}

.privacy-articles {
  border-top: 1px solid var(--line);
}

.privacy-articles article {
  display: grid;
  grid-template-columns: 50px 220px 1fr;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-articles article>span {
  font-family: Unbounded, sans-serif;
  color: var(--green);
  font-size: 10px;
}

.privacy-articles h2 {
  font-family: Unbounded, sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.privacy-articles p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 13px;
}

.privacy-articles p a {
  color: var(--green);
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-lead-card {
    margin: 48px 0 0;
    max-width: 720px;
    width: 100%;
  }

  .fkko-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fkko-heading>p {
    max-width: 700px;
  }

  .fkko-results {
    grid-template-columns: 1fr;
  }

  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .document-card,
  .document-card:nth-child(4),
  .document-card:nth-child(5) {
    grid-column: span 1;
  }

  .documents-summary {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    grid-template-columns: 1fr;
  }

  .privacy-operator {
    position: static;
    max-width: 520px;
  }

  .privacy-articles article {
    grid-template-columns: 45px 200px 1fr;
  }
}

@media (max-width: 700px) {
  section[id] {
    scroll-margin-top: 74px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 43px);
    line-height: 1.02;
  }

  .hero-copy>p {
    font-size: 14px;
  }

  .hero-lead-card {
    padding: 23px;
    border-radius: 26px;
    margin-top: 34px;
  }

  .quick-form-heading h2 {
    font-size: 19px;
  }

  .hero-stats {
    margin-top: 45px;
  }

  .fkko-section {
    margin: 0 8px;
    border-radius: 28px;
    padding: 70px 18px;
  }

  .fkko-heading h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .fkko-search-shell {
    padding: 20px 16px;
    border-radius: 24px;
    margin-top: 34px;
  }

  .fkko-search-row {
    grid-template-columns: 1fr;
  }

  .fkko-search-row input {
    height: 58px;
    font-size: 13px;
  }

  .fkko-search-row button {
    height: 54px;
    justify-content: space-between;
  }

  .fkko-results {
    grid-template-columns: 1fr;
  }

  .fkko-result {
    padding: 18px;
  }

  .fkko-result-head {
    align-items: flex-start;
  }

  .fkko-result code {
    font-size: 10px;
  }

  .fkko-note {
    flex-direction: column;
    align-items: stretch;
  }

  .fkko-note .button {
    white-space: normal;
    text-align: center;
  }

  .document-grid {
    grid-template-columns: 1fr;
  }

  .document-card {
    min-height: 280px;
  }

  .documents-summary {
    padding: 22px;
  }

  .faq-item summary {
    grid-template-columns: 36px 1fr 24px;
    gap: 10px;
    padding: 23px 0;
  }

  .faq-item>div {
    padding: 0 24px 24px 46px;
  }

  .faq-item p {
    font-size: 13px;
  }

  .privacy-hero {
    padding: 75px 18px 45px;
  }

  .privacy-hero h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .privacy-hero>p {
    font-size: 15px;
  }

  .privacy-hero>div {
    flex-direction: column;
  }

  .privacy-content {
    padding: 45px 18px;
  }

  .privacy-articles article {
    grid-template-columns: 35px 1fr;
    gap: 14px;
  }

  .privacy-articles h2 {
    grid-column: 2;
  }

  .privacy-articles p {
    grid-column: 2;
  }

  .privacy-main {
    padding-bottom: 40px;
}

.privacy-modal {
  padding: 0;
  border: none;
  border-radius: 26px;
  background: var(--paper, #fbfaf0);
  color: var(--ink, #0b1930);
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.privacy-modal::backdrop {
  background: rgba(11, 25, 48, 0.7);
  backdrop-filter: blur(4px);
}

.privacy-modal-header {
  position: sticky;
  top: 0;
  background: var(--paper, #fbfaf0);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.privacy-modal-header h2 {
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0 5px;
}

.close-modal:hover {
  color: var(--ink);
}

.privacy-modal .privacy-content {
  padding: 32px;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.privacy-modal .privacy-operator {
  top: 24px; /* sticky inside modal */
}

@media (max-width: 700px) {
  .privacy-modal {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .privacy-modal .privacy-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .privacy-modal-header {
    padding: 18px 20px;
  }
}
