:root {
  --navy: #12263f;
  --navy2: #21445f;
  --coral: #ff6b55;
  --ink: #1c3045;
  --muted: #687d90;
  --line: #dce5eb;
  --soft: #f5f8fa;
  --green: #2d9b6b;
  --white: #fff;
  --shadow: 0 18px 45px rgba(14, 37, 58, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 9px;
  font-size: 13px;
  font-weight: 700;
}
.header {
  height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
}
.brand-icon span {
  width: 25px;
  height: 19px;
  border-radius: 5px;
  background: var(--coral);
  position: relative;
}
.brand-icon span:after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 6px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 0 #fff;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #6d8294;
  margin-top: 7px;
}
.links {
  display: flex;
  gap: 26px;
  font-weight: 700;
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 850;
  cursor: pointer;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-outline {
  border: 1px solid #b7c8d4;
  color: #fff;
  background: transparent;
}
.hero {
  margin: 32px auto 64px;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(
      110deg,
      var(--navy) 0 45%,
      rgba(18, 38, 63, 0.9) 57%,
      rgba(18, 38, 63, 0.08) 78%
    ),
    url("/assets/storefront.png") center/cover;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}
.hero-copy {
  width: 58%;
  padding: 62px;
  color: #fff;
}
.eyebrow {
  display: inline-block;
  background: #2e536f;
  color: #fff;
  border-radius: 99px;
  padding: 9px 14px;
  font-size: 12px;
  letter-spacing: 1.3px;
  font-weight: 850;
}
.hero h1 {
  font-size: clamp(43px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 24px 0;
}
.hero p {
  font-size: 18px;
  line-height: 1.65;
  color: #d8e4eb;
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 14px;
  margin: 30px 0;
}
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}
.checks span:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
}
.section {
  padding: 72px 0;
}
.section.soft {
  background: var(--soft);
}
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-title .kicker {
  color: var(--coral);
  font-weight: 850;
  letter-spacing: 1.6px;
  font-size: 12px;
}
.section-title h2 {
  font-size: 38px;
  margin: 12px 0;
}
.section-title p {
  color: var(--muted);
  line-height: 1.7;
}
.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(20, 43, 63, 0.06);
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff0ed;
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}
.card h3 {
  margin: 18px 0 8px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.card .link {
  color: #dc503e;
  font-weight: 850;
  font-size: 13px;
}
.product-card {
  padding: 0;
  overflow: hidden;
}
.product-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--soft);
}
.product-card .card-copy {
  padding: 22px 24px 25px;
}
.product-card h3 {
  margin-top: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  margin: 0 auto;
}
.step h3 {
  margin: 18px 0 8px;
}
.step p {
  color: var(--muted);
  line-height: 1.6;
}
.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 {
  font-size: 34px;
  margin: 0 0 10px;
}
.cta p {
  color: #cfdae2;
  margin: 0;
}
.footer {
  background: #0d2034;
  color: #d2dde5;
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: #fff;
}
.footer a {
  display: block;
  margin: 10px 0;
  color: #c2d0da;
}
.legal {
  border-top: 1px solid #294056;
  margin-top: 32px;
  padding-top: 22px;
  font-size: 12px;
  color: #91a3b2;
}
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 68px 0;
}
.page-hero h1 {
  font-size: 48px;
  margin: 0 0 12px;
}
.page-hero p {
  color: #d5e0e7;
  max-width: 720px;
  line-height: 1.7;
}
.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.product-visual {
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  border-radius: 22px;
  min-height: 480px;
  color: #fff;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}
.product-visual .mock {
  flex: 1;
  display: grid;
  place-items: center;
}
.product-visual .mock span {
  display: grid;
  place-items: center;
  width: 78%;
  height: 180px;
  background: var(--coral);
  border: 8px solid #e8f1f5;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}
.product-visual .product-photo {
  display: block;
  width: calc(100% + 84px);
  height: auto;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: -42px -42px 26px;
  border-radius: 22px 22px 0 0;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 22px 0 30px;
}
.progress span {
  height: 6px;
  border-radius: 6px;
  background: #dde6ec;
}
.progress span.active {
  background: var(--coral);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid #d4dfe7;
  border-radius: 10px;
  padding: 15px;
  color: var(--ink);
  background: #fff;
}
.field textarea {
  min-height: 105px;
  resize: vertical;
}
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.option {
  border: 1.5px solid #d4dfe7;
  border-radius: 10px;
  padding: 13px 15px;
  cursor: pointer;
}
.option:has(input:checked) {
  border-color: var(--coral);
  background: #fff2ef;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}
.notice {
  background: #eef5f7;
  border-radius: 10px;
  padding: 14px;
  color: #486075;
  font-size: 13px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  margin: 14px 0;
}
.form-message {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  background: #fff4e6;
  color: #7b5416;
}
.content {
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  color: #42596c;
}
.content h2 {
  color: var(--navy);
  margin-top: 36px;
}
@media (max-width: 900px) {
  .links {
    display: none;
  }
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    width: 78%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .header {
    height: 68px;
  }
  .brand strong {
    font-size: 13px;
  }
  .nav > .btn {
    display: none;
  }
  .hero {
    margin-top: 18px;
    min-height: 620px;
    background:
      linear-gradient(
        180deg,
        rgba(18, 38, 63, 0.97) 0 62%,
        rgba(18, 38, 63, 0.28)
      ),
      url("/assets/storefront.png") 64% center/cover;
  }
  .hero-copy {
    width: 100%;
    padding: 34px 24px;
    align-self: flex-start;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero p {
    font-size: 16px;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .checks {
    display: grid;
  }
  .category-grid,
  .product-grid,
  .steps,
  .fields {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 25px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .section {
    padding: 52px 0;
  }
  .form-card {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
