:root {
  --navy: #111111;
  --ink: #111111;
  --muted: #505050;
  --line: #e7e7e7;
  --mist: #f7f7f7;
  --white: #ffffff;
  --safety: #d99a22;
  --safety-bright: #f0b43a;
  --shadow: 0 18px 60px rgba(17, 22, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img,
iframe {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.section {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 300px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 900;
}

.nav-links a:hover {
  color: var(--safety);
}

.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header.nav-open .nav-links {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 25;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header.nav-open .nav-links a {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.site-header.nav-open .nav-links a:last-child {
  border-bottom: 0;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--safety);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(217, 154, 34, 0.18);
  transition: transform 0.18s ease, background 0.18s ease;
}

.icon-button:hover {
  background: var(--safety-bright);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.section {
  padding: 56px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 154, 34, 0.45), transparent 24%),
    linear-gradient(135deg, #ffffff, #ffffff 50%, #f7f1e5);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  gap: 40px;
  padding: 54px 0;
}

.eyebrow {
  margin: 0;
  color: var(--safety);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 7vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.hero p,
.page-hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero h1,
.page-hero h1 {
  color: var(--ink);
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 13px 20px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--safety);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(246, 178, 26, 0.22);
}

.btn-primary:hover {
  background: var(--safety-bright);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-card,
.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11, 31, 51, 0.04);
}

.hero-card {
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card p {
  color: var(--muted);
}

.hero-summary {
  padding: 30px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--safety);
  color: var(--navy);
  content: "✓";
  font-size: 14px;
  font-weight: 950;
}

.summary-panel {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.summary-panel strong {
  color: var(--ink);
  font-size: 22px;
}

.summary-panel span {
  color: var(--muted);
  line-height: 1.6;
}

.summary-panel .btn {
  justify-self: start;
}

.report-preview {
  display: grid;
  gap: 28px;
  align-items: center;
}

.report-mockup {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
}

.report-page {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(var(--mist), var(--mist)) 24px 88px / 72% 12px no-repeat,
    linear-gradient(var(--mist), var(--mist)) 24px 120px / 86% 10px no-repeat,
    linear-gradient(var(--mist), var(--mist)) 24px 146px / 78% 10px no-repeat,
    linear-gradient(var(--mist), var(--mist)) 24px 216px / 88% 10px no-repeat,
    linear-gradient(var(--mist), var(--mist)) 24px 244px / 68% 10px no-repeat,
    linear-gradient(var(--safety), var(--safety)) 24px 182px / 46% 12px no-repeat,
    #ffffff;
  padding: 24px;
}

.report-page strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.report-page span {
  display: inline-block;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(217, 154, 34, 0.14);
  padding: 8px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid,
.card-grid,
.service-grid,
.steps-grid,
.contact-grid,
.about-grid {
  display: grid;
  gap: 16px;
}

.trust-grid {
  margin-top: 28px;
}

.trust-grid span {
  border-radius: 8px;
  background: var(--mist);
  padding: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
}

.card {
  padding: 24px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.card-carousel,
.service-carousel {
  display: grid;
  gap: 18px;
}

.card-carousel__viewport,
.service-carousel__viewport {
  overflow: hidden;
}

.card-carousel__track,
.service-carousel__track {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.card-carousel__track::-webkit-scrollbar,
.service-carousel__track::-webkit-scrollbar {
  display: none;
}

.card-carousel__track > .card,
.service-carousel__track > .card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  height: auto;
}

.card-carousel__controls,
.service-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.carousel-button:hover {
  border-color: var(--safety);
  background: var(--mist);
  transform: translateY(-1px);
}

.carousel-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .card-carousel__track,
  .service-carousel__track {
    scroll-behavior: auto;
  }
}

.white-band {
  background: var(--white);
}

.mist-band {
  background: var(--mist);
}

.split {
  display: grid;
  gap: 28px;
}

.area-van {
  margin: 0;
}

.area-van img {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

details summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.cta {
  background: var(--white);
  color: var(--ink);
  text-align: center;
  border-top: 1px solid var(--line);
}

.cta h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--ink);
}

.cta .lead {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted);
}

.page-hero {
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.page-hero .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 880px;
}

.feature-panel {
  border-radius: 10px;
  background: var(--mist);
  padding: 26px;
}

.about-story {
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-story > div > p:not(.eyebrow):not(.lead),
.about-market > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-summary {
  border-left: 4px solid var(--safety);
  background: var(--navy);
  color: var(--white);
  padding: 26px;
}

.about-summary strong {
  display: block;
  margin-bottom: 18px;
  color: var(--safety-bright);
  font-size: 20px;
}

.about-summary .check-list {
  margin: 0;
}

.about-summary .check-list li {
  color: #e8eef2;
}

.about-values {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.about-market {
  display: grid;
  gap: 22px;
}

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

.about-audience span {
  border: 1px solid var(--line);
  border-left: 4px solid var(--safety);
  border-radius: 8px;
  background: var(--white);
  padding: 14px 16px;
  font-weight: 900;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 20px 0 0;
}

.contact-list dt {
  color: var(--navy);
  font-weight: 900;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-grid {
  align-items: stretch;
}

.contact-grid > .trust-grid {
  height: 100%;
  margin-top: 0;
  align-items: stretch;
}

.contact-grid > .card,
.contact-grid > .trust-grid > .card {
  height: 100%;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--safety);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdce3;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--safety);
  box-shadow: 0 0 0 4px rgba(246, 178, 26, 0.2);
}

.form-status {
  max-width: 760px;
  margin: 48px auto;
}

.form-status h1 {
  margin-top: 0;
}

.form-status p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.form-status-success {
  border-left: 4px solid var(--safety);
}

.form-status-error {
  border-left: 4px solid #b42318;
}

.map {
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(11, 31, 51, 0.08);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--safety);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  padding-top: 38px;
  padding-bottom: 116px;
}

.site-footer p,
.site-footer a {
  color: #cbd7df;
}

.site-footer a {
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: var(--safety-bright);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--safety);
  font-size: 18px;
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.footer-links,
.footer-details,
.footer-details > div {
  display: grid;
  gap: 10px;
}

.footer-links {
  align-content: start;
  font-weight: 800;
}

.footer-details {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
}

.footer-details a,
.footer-details p {
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.footer-details p {
  margin: 0;
}

.footer-logo {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.hero-logo {
  display: block;
  width: min(100%, 360px);
  height: 120px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 18px;
  border-radius: 8px;
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  border-radius: 8px;
  background: var(--safety);
  padding: 16px 20px;
  color: var(--navy);
  text-align: center;
  font-weight: 950;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .card-carousel__track > .card,
  .service-carousel__track > .card {
    flex-basis: calc((100% - 16px) / 2);
  }

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

  .about-values,
  .about-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
    gap: 30px;
  }

  .footer-details {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .nav-links,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .site-header.nav-open .nav-links {
    position: static;
    display: flex;
    gap: 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .site-header.nav-open .nav-links a {
    padding: 0;
    border-bottom: 0;
  }

  .nav-wrap {
    gap: 28px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .about-grid,
  .about-story,
  .report-preview {
    grid-template-columns: 1fr 1fr;
  }

  .area-van {
    margin-top: 31px;
  }

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

  .service-carousel__track > .card {
    flex-basis: calc((100% - 32px) / 3);
  }

  .why-carousel .card-carousel__track > .card {
    flex-basis: calc((100% - 48px) / 4);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-market {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
  }

  .about-market > p {
    grid-column: 2;
    margin: 0;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.35fr) minmax(0, 2.15fr);
    gap: 34px;
    padding-bottom: 38px;
  }

  .footer-details {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-call {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 235px;
    height: 68px;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 285px;
  }
}
