:root {
  --ink: #151515;
  --muted: #5f646b;
  --line: #e3e6ea;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --soft-2: #edf4f4;
  --accent: #f28b2e;
  --accent-dark: #b95516;
  --cyan: #35a9b4;
  --graphite: #202124;
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 16px;
}

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

.nav-wrap,
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 13px;
  color: #27292c;
}

.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.button.primary {
  background: var(--accent);
  color: #141414;
  box-shadow: 0 10px 26px rgba(242, 139, 46, 0.25);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--graphite);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 12, 12, 0.88), rgba(12, 12, 12, 0.56), rgba(12, 12, 12, 0.16)), var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
  z-index: -1;
}

.hero-content {
  width: min(760px, 100%);
  padding: 96px 0 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  max-width: 760px;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: 1.2rem;
}

.hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.17rem;
  margin: 22px 0 0;
}

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 46px;
  width: min(940px, 100%);
}

.hero-strip div {
  background: rgba(0, 0, 0, 0.36);
  padding: 18px 16px;
}

.hero-strip strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-strip span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

.section.tight {
  padding: 58px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0;
}

.section-head .eyebrow {
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card p,
.feature p,
.step p,
.plain-list p {
  color: var(--muted);
  margin: 10px 0 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  background: #ececec;
}

.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--soft-2);
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1fr);
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ddd;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

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

.list-check li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  color: #2d3034;
}

.list-check li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent) 0 45%, rgba(242, 139, 46, 0.18) 48%);
}

.process {
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 10px;
}

.band {
  background: var(--graphite);
  color: #fff;
  padding: 72px 0;
}

.band h2,
.band h3 {
  color: #fff;
}

.band p,
.band .lead {
  color: rgba(255, 255, 255, 0.74);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.stat {
  border-top: 2px solid var(--accent);
  padding-top: 18px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.cta {
  background: linear-gradient(135deg, #1f1f1f, #303030);
  color: #fff;
  border-radius: 8px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 12px 0 0;
}

.page-hero {
  background: var(--graphite);
  color: #fff;
  padding: 84px 0 70px;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td {
  border-bottom: 0;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}

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

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 14px 0 0;
}

.contact-list {
  display: grid;
  gap: 16px;
}

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

.contact-item strong {
  display: block;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
}

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

.faq-item h3 {
  max-width: 850px;
}

.faq-item p {
  max-width: 880px;
  color: var(--muted);
  margin: 10px 0 0;
}

.legal {
  max-width: 900px;
}

.legal h2 {
  font-size: 1.8rem;
  margin-top: 36px;
}

.legal p,
.legal li {
  color: var(--muted);
}

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

.sitemap-list a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: var(--paper);
  font-weight: 800;
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.55fr));
  gap: 38px;
}

.site-footer img {
  width: 174px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .nav-wrap {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-strip,
  .section-head,
  .grid.cols-3,
  .grid.cols-4,
  .split,
  .split.reverse,
  .stat-grid,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 145px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding: 70px 0 58px;
  }

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

  .section {
    padding: 64px 0;
  }

  .grid.cols-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 30px 22px;
  }

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