:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #53606f;
  --line: #d8dde5;
  --paper: #f7f8fa;
  --panel: #ffffff;
  --steel: #6f7d8c;
  --blue: #1266f1;
  --cyan: #1aa6a6;
  --amber: #f2a900;
  --shadow: 0 18px 45px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
  color: var(--muted);
  font-size: 15px;
}

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

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: 84px clamp(20px, 5vw, 72px) 44px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(10, 18, 34, 0.95), rgba(17, 41, 69, 0.76) 52%, rgba(22, 85, 96, 0.58)),
    radial-gradient(circle at 76% 34%, rgba(242, 169, 0, 0.24), transparent 32%),
    #111827;
}

.hero-content {
  position: relative;
  max-width: 840px;
}

.hero-visual {
  position: relative;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: #08111f;
  background: var(--amber);
}

.button-primary:hover {
  background: #ffc342;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 56px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 84px clamp(20px, 5vw, 72px);
}

.media-proof {
  background: #fff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe5ec;
}

.product-gallery .media-card img {
  aspect-ratio: 1 / 1;
}

.media-card-wide {
  grid-column: span 2;
}

.media-card-wide img {
  aspect-ratio: 2 / 1;
}

.media-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--muted);
}

.media-card strong {
  color: var(--ink);
  font-size: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--ink);
  background: #f8fbff;
  font-weight: 800;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  background: #fff;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.intro p:last-child,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-copy .contact-email {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

.contact-email a {
  color: var(--blue);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.panel,
.quote-form,
.document-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-card p,
.panel li,
.process-list span,
.document-card p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: #fff;
  background: var(--cyan);
  border-radius: 6px;
  font-weight: 800;
}

.split {
  background: #eef2f6;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.panel {
  padding: 30px;
}

.panel-accent {
  border-color: rgba(18, 102, 241, 0.25);
  background: #f8fbff;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.process-list li {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-weight: 800;
}

.process-list strong,
.process-list span {
  display: block;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.document-card {
  min-height: 210px;
  padding: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 48px;
  align-items: start;
  background: #fff;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(18, 102, 241, 0.18);
  border-color: var(--blue);
}

.quote-form .button {
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--amber);
}

.image-credits {
  padding: 10px clamp(20px, 5vw, 72px);
  color: #6b7280;
  background: #0f172a;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .feature-grid,
  .process-list,
  .media-grid,
  .product-gallery,
  .document-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li:nth-child(2) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-stats,
  .feature-grid,
  .two-column,
  .process-list,
  .media-grid,
  .product-gallery,
  .document-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 260px;
  }

  .media-card-wide {
    grid-column: auto;
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
