:root {
  --blue-950: #062443;
  --blue-900: #0a355f;
  --blue-700: #1267a8;
  --blue-600: #167bc2;
  --cyan: #36c4d6;
  --green: #19a974;
  --lime: #a9de65;
  --orange: #ff9f2f;
  --red: #e44b4b;
  --ink: #142033;
  --muted: #607083;
  --line: #d8e4ef;
  --bg: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(6, 36, 67, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(54, 196, 214, 0.12), transparent 28%),
    linear-gradient(200deg, rgba(25, 169, 116, 0.12), transparent 38%),
    #f5f9fc;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 228, 239, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 8px;
  font-weight: 800;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 112px;
  height: 38px;
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(6, 36, 67, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--blue-950);
  font-size: 14px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.header-call {
  padding: 10px 13px;
  color: var(--blue-950);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.section-pad {
  padding: clamp(58px, 8vw, 104px) clamp(16px, 5vw, 76px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding-top: clamp(36px, 7vw, 70px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 8px 12px;
  color: var(--blue-950);
  background: linear-gradient(180deg, #ffffff, #eef9ff);
  border: 1px solid rgba(18, 103, 168, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(6, 36, 67, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.96;
}

h2 {
  color: var(--blue-950);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.04;
}

h3 {
  color: var(--blue-950);
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-lead strong {
  color: var(--blue-700);
}

.hero-kit-panel {
  position: relative;
  max-width: 680px;
  margin: 26px 0 0;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 250, 255, 0.96)),
    var(--white);
  border: 1px solid rgba(18, 103, 168, 0.16);
  border-radius: 18px;
  box-shadow: 0 22px 65px rgba(6, 36, 67, 0.12);
}

.hero-kit-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 164, 46, 0.23), transparent 68%);
  border-radius: 50%;
}

.kit-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.kit-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  color: #7a3500;
  background: #ffe2b0;
  border: 1px solid #ffc66a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.kit-panel-head .sold-badge {
  gap: 4px;
  color: #7a3500;
  background: linear-gradient(180deg, #fff3d6, #ffdda2);
  box-shadow: 0 10px 28px rgba(255, 159, 28, 0.18);
  white-space: normal;
}

.sold-badge strong {
  color: var(--blue-950);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.28s ease, color 0.28s ease;
}

.sold-badge strong.bump {
  color: var(--red);
  transform: translateY(-1px) scale(1.08);
}

.kit-panel-head strong {
  color: var(--blue-950);
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
}

.hero-product-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-product-summary article {
  position: relative;
  overflow: hidden;
  padding: 15px 14px;
  background: linear-gradient(180deg, #ffffff, #f1f9fd);
  border: 1px solid rgba(18, 103, 168, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(6, 36, 67, 0.08);
}

.hero-product-summary article:nth-child(1) {
  border-top: 4px solid #ff9f1c;
}

.hero-product-summary article:nth-child(2) {
  border-top: 4px solid var(--blue-700);
}

.hero-product-summary article:nth-child(3) {
  border-top: 4px solid var(--green);
}

.hero-product-summary article::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 72px;
  height: 72px;
  background: rgba(54, 196, 214, 0.13);
  border-radius: 50%;
}

.hero-product-summary span,
.hero-product-summary small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-product-summary strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}

.hero-kit-foot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.hero-kit-foot span {
  display: grid;
  gap: 3px;
  min-height: 54px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
}

.hero-kit-foot strong {
  display: block;
  color: #fff2b8;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.1;
}

.hero-kit-note {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  padding: 10px 12px;
  color: var(--blue-950);
  background: rgba(25, 169, 116, 0.08);
  border: 1px solid rgba(25, 169, 116, 0.16);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.price-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 650px;
  margin: 28px 0 22px;
}

.price-strip > div,
.count-card,
.chosen-box {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(6, 36, 67, 0.08);
}

.price-strip span,
.count-card span,
.chosen-box span,
.yield-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.price-strip strong {
  display: block;
  color: var(--red);
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1;
}

.price-strip > div:first-child strong {
  color: var(--green);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
}

.price-strip small {
  color: var(--muted);
}

.hero-actions,
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--green));
  box-shadow: 0 16px 34px rgba(18, 103, 168, 0.28);
}

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

.btn.light {
  color: var(--blue-950);
  background: var(--white);
}

.btn.wide {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust-row li {
  padding: 8px 10px;
  color: var(--blue-900);
  background: rgba(54, 196, 214, 0.13);
  border: 1px solid rgba(54, 196, 214, 0.26);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(90vw, 520px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.95), transparent 16%),
    radial-gradient(circle at center, rgba(54, 196, 214, 0.22), rgba(25, 169, 116, 0.08) 55%, transparent 70%);
  border: 1px solid rgba(54, 196, 214, 0.24);
  border-radius: 50%;
}

.product-pack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(78vw, 340px);
  min-height: 455px;
  padding: 42px 28px 34px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #0b2f57 0%, #1267a8 52%, #0fa879 100%);
  border-radius: 22px 22px 46px 46px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.product-pack::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px 16px 38px 38px;
}

.pack-kicker {
  position: relative;
  width: fit-content;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-pack strong,
.product-pack em,
.product-pack small {
  position: relative;
  display: block;
}

.product-pack strong {
  max-width: 230px;
  font-size: 50px;
  line-height: 0.9;
}

.product-pack em {
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  color: var(--lime);
}

.product-pack small {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.yield-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(6, 36, 67, 0.16);
}

.yield-card strong {
  color: var(--blue-700);
  font-size: 22px;
}

.yield-one {
  top: 17%;
  right: 1%;
}

.yield-two {
  bottom: 14%;
  left: 4%;
}

.image-hero {
  align-items: center;
}

.hero-product-visual {
  min-height: 660px;
}

.hero-product-visual::before {
  width: min(92vw, 610px);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.95), transparent 14%),
    radial-gradient(circle at center, rgba(54, 196, 214, 0.28), rgba(25, 169, 116, 0.1) 56%, transparent 72%);
}

.hero-showcase-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(100%, 680px);
  min-height: 455px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 159, 28, 0.16), transparent 22%),
    radial-gradient(circle at 92% 86%, rgba(25, 169, 116, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 250, 255, 0.96)),
    var(--white);
  border: 1px solid rgba(54, 196, 214, 0.24);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(6, 36, 67, 0.18);
}

.hero-showcase-card::before {
  content: "Goi 200g";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 8px 11px;
  color: #7a3500;
  background: #ffe2b0;
  border: 1px solid #ffc66a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.showcase-product {
  position: relative;
  justify-self: center;
  width: min(245px, 42vw);
}

.showcase-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(6, 36, 67, 0.22);
}

.showcase-product span {
  position: absolute;
  top: -14px;
  left: -14px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--green));
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(18, 103, 168, 0.28);
  font-weight: 900;
}

.showcase-copy {
  padding-top: 22px;
}

.showcase-copy p {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: var(--blue-900);
  background: rgba(54, 196, 214, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-copy strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 0.98;
}

.showcase-copy small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.showcase-combos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.showcase-combos span {
  display: grid;
  gap: 4px;
  min-height: 56px;
  padding: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 103, 168, 0.14);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
}

.showcase-combos strong {
  color: var(--green);
  font-size: 18px;
  line-height: 1.05;
}

.showcase-price {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  border-radius: 14px;
}

.showcase-price span,
.showcase-price small {
  color: rgba(255, 255, 255, 0.78);
}

.showcase-price strong {
  color: #fff2b8;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.08;
}

.hero-context-photo {
  position: absolute;
  z-index: 2;
  left: -4%;
  bottom: 0;
  width: min(300px, 42vw);
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 62px rgba(6, 36, 67, 0.16);
}

.hero-context-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-context-photo figcaption {
  padding: 9px 11px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.hero-photo-card,
.wide-image,
.field-proof-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  transform: rotate(1.2deg);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3.12;
  object-fit: cover;
}

.hero-photo-card figcaption,
.field-proof-grid figcaption {
  padding: 11px 13px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.product-float-card {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: 7%;
  width: min(210px, 44vw);
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 62px rgba(6, 36, 67, 0.24);
}

.product-float-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.product-float-card strong,
.product-float-card span {
  display: block;
}

.product-float-card strong {
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 14px;
  line-height: 1.25;
}

.product-float-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.promo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(16px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700), var(--green));
}

.promo-band strong,
.promo-band span {
  display: block;
}

.promo-band strong {
  font-size: 22px;
}

.promo-band span {
  opacity: 0.9;
}

.promo-visual {
  padding-top: clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg, #ffffff, #eef7fb);
}

.wide-image img {
  width: 100%;
  height: auto;
}

.promo-image {
  max-width: 1180px;
  margin-inline: auto;
}

.guide-image {
  max-width: 1180px;
  margin: clamp(24px, 4vw, 38px) auto 0;
}

.field-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  margin-top: 18px;
}

.field-proof-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.field-proof-grid figure:first-child img {
  height: 360px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-heading p:last-child {
  font-size: 17px;
}

.pain-grid,
.capability-grid,
.legal-grid,
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pain-grid article,
.capability-grid article,
.combo-card,
.doc-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(6, 36, 67, 0.07);
}

.pain-grid article,
.capability-grid article {
  padding: 22px;
}

.pain-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-weight: 900;
}

.dark {
  color: var(--white);
  background:
    linear-gradient(rgba(6, 36, 67, 0.94), rgba(6, 36, 67, 0.94)),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.dark h2,
.dark h3 {
  color: var(--white);
}

.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.dark .eyebrow {
  color: var(--cyan);
}

.capability-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.company-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

.company-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.company-photo-grid img:first-child {
  grid-row: span 2;
}

.company-layout .capability-grid {
  grid-template-columns: 1fr;
}

.icon-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(169, 222, 101, 0.13);
}

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

.step {
  position: relative;
  min-height: 210px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(6, 36, 67, 0.07);
}

.step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 999px;
  font-weight: 900;
}

.step strong {
  display: block;
  color: var(--blue-950);
  font-size: 20px;
}

.step.highlight {
  border-color: rgba(25, 169, 116, 0.45);
  background: linear-gradient(180deg, #ffffff, #eefbf5);
}

.step.highlight span {
  background: var(--green);
}

.saving-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(54, 196, 214, 0.12), rgba(25, 169, 116, 0.1)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-form,
.order-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(22, 123, 194, 0.12);
}

input.invalid,
textarea.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(231, 65, 74, 0.12);
}

.field-error {
  display: none;
  margin-top: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.field-error.show {
  display: block;
}

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

.doc-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
}

.doc-card img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.doc-card strong {
  color: var(--blue-950);
  font-size: 15px;
}

.doc-card span {
  color: var(--muted);
  font-size: 13px;
}

.legal-note {
  margin-top: 16px;
  padding: 16px;
  color: var(--blue-950);
  background: #fff8e9;
  border: 1px solid #ffe2a8;
  border-radius: var(--radius);
}

.combo-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 24px;
  cursor: pointer;
  text-align: left;
}

.combo-card.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 169, 116, 0.13), 0 14px 44px rgba(6, 36, 67, 0.07);
}

.combo-card span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--blue-950);
  background: rgba(54, 196, 214, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.combo-card.best span {
  color: #6a3300;
  background: #ffe4b8;
}

.combo-card strong {
  color: var(--blue-950);
  font-size: 30px;
}

.combo-card em {
  color: var(--red);
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 28px;
  align-items: start;
  padding: clamp(20px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.chosen-box,
.count-card {
  margin-top: 14px;
}

.order-product-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 250, 255, 0.88)),
    var(--white);
  border: 1px solid rgba(18, 103, 168, 0.16);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(6, 36, 67, 0.08);
}

.order-product-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: #f5fbff;
  border: 1px solid rgba(18, 103, 168, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(6, 36, 67, 0.12);
}

.order-product-card .chosen-box {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.order-combo-picker {
  margin-top: 14px;
}

.order-combo-picker > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 900;
}

.order-combo-list {
  display: grid;
  gap: 8px;
}

.order-combo-option {
  grid-template-columns: 96px 116px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px 12px 42px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  border-radius: 14px;
}

.order-combo-option::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(18, 103, 168, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
}

.order-combo-option.selected::before {
  background: radial-gradient(circle, var(--green) 0 46%, transparent 50%);
  border-color: var(--green);
}

.order-combo-option strong {
  font-size: 18px;
}

.order-combo-option em {
  color: var(--red);
  font-size: 18px;
}

.order-combo-option small {
  justify-self: end;
  padding: 6px 9px;
  color: var(--green);
  background: rgba(25, 169, 116, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.order-combo-option.best small {
  color: #7a3500;
  background: #ffe2b0;
}

.chosen-box strong,
.count-card strong {
  display: block;
  color: var(--blue-950);
  font-size: 28px;
}

.chosen-box em {
  color: var(--red);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

.count-card strong {
  color: var(--red);
}

.form-microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-950);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(16px, 5vw, 76px) 94px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-950);
}

.footer strong,
.footer a {
  color: var(--white);
}

.sticky-mobile {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 56px rgba(6, 36, 67, 0.18);
  backdrop-filter: blur(14px);
}

.sticky-mobile a {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
  font-weight: 900;
}

.sticky-mobile a:nth-child(2) {
  background: var(--green);
}

.sticky-mobile a:nth-child(3) {
  background: var(--red);
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 65;
  display: grid;
  gap: 10px;
}

.quick-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  min-height: 56px;
  padding: 8px 12px 8px 8px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 228, 239, 0.95);
  border-radius: 999px;
  box-shadow: 0 18px 56px rgba(6, 36, 67, 0.18);
  backdrop-filter: blur(14px);
  animation: softBlink 2.8s ease-in-out infinite;
}

.quick-btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: rgba(22, 123, 194, 0.2);
  animation: contactPulse 2.8s ease-out infinite;
}

.quick-btn:nth-child(2) {
  animation-delay: 0.7s;
}

.quick-btn:nth-child(2)::before {
  animation-delay: 0.7s;
  background: rgba(25, 169, 116, 0.2);
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-btn .quick-icon {
  background: #00a80d;
}

.quick-text {
  display: grid;
  gap: 1px;
}

.quick-text strong {
  color: var(--blue-950);
  font-size: 14px;
  line-height: 1.15;
}

.quick-text small {
  color: var(--muted);
  font-size: 12px;
}

@keyframes softBlink {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-2px);
    filter: brightness(1.04);
  }
}

@keyframes contactPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.toast,
.exit-popup {
  position: fixed;
  z-index: 70;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.toast {
  left: 18px;
  bottom: 92px;
  max-width: 310px;
  padding: 13px 14px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.exit-popup {
  right: 18px;
  bottom: 92px;
  width: min(360px, calc(100vw - 36px));
  padding: 18px;
  display: none;
}

.exit-popup.show {
  display: block;
}

.exit-popup strong {
  color: var(--blue-950);
}

.exit-popup p {
  margin: 8px 0 14px;
  font-size: 14px;
}

#popupClose,
.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.doc-modal {
  width: min(920px, 92vw);
  padding: 16px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.doc-modal::backdrop {
  background: rgba(6, 36, 67, 0.66);
}

.doc-modal img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.thanks-wrap {
  width: min(780px, 100%);
}

.thanks-card {
  margin-top: 26px;
  padding: clamp(24px, 6vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(34px, 5vw, 58px);
}

@media (max-width: 1050px) {
  .hero,
  .saving-card,
  .order-panel,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 530px;
    order: 0;
    justify-self: center;
    width: min(100%, 720px);
  }

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

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

  .field-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field-proof-grid figure:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav,
  .header-call {
    display: none;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 92px;
    height: 34px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 10px;
  }

  .section-pad {
    padding: 48px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-kit-panel {
    padding: 13px;
    border-radius: 16px;
  }

  .kit-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .kit-panel-head strong {
    text-align: left;
  }

  .hero-product-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-product-summary article {
    min-height: 104px;
    padding: 12px 8px;
  }

  .hero-product-summary span,
  .hero-product-summary small {
    font-size: 10px;
    line-height: 1.25;
  }

  .hero-product-summary strong {
    font-size: 28px;
  }

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

  .price-strip,
  .pain-grid,
  .capability-grid,
  .combo-grid,
  .field-proof-grid,
  .company-photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-product-visual {
    display: grid;
    gap: 12px;
  }

  .hero-showcase-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .hero-showcase-card::before {
    top: 12px;
    right: 12px;
  }

  .showcase-product {
    width: min(228px, 72vw);
  }

  .showcase-copy {
    padding-top: 0;
  }

  .showcase-copy strong {
    font-size: 32px;
  }

  .showcase-combos {
    grid-template-columns: 1fr;
  }

  .showcase-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-context-photo {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .yield-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .yield-one,
  .yield-two {
    display: inline-grid;
    width: fit-content;
    justify-self: start;
  }

  .hero-photo-card {
    transform: none;
  }

  .product-float-card {
    right: 12px;
    bottom: 0;
    width: 154px;
  }

  .field-proof-grid figure:first-child {
    grid-column: auto;
  }

  .field-proof-grid img,
  .field-proof-grid figure:first-child img {
    height: 230px;
  }

  .company-photo-grid {
    grid-template-rows: none;
  }

  .company-photo-grid img,
  .company-photo-grid img:first-child {
    grid-row: auto;
    min-height: 220px;
  }

  .product-pack {
    width: min(78vw, 278px);
    min-height: 362px;
    padding: 32px 22px 26px;
  }

  .product-pack strong {
    font-size: 39px;
  }

  .product-pack em {
    font-size: 23px;
  }

  .yield-card {
    padding: 10px 12px;
  }

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

  .promo-band {
    display: grid;
  }

  .timeline,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .saving-card,
  .order-panel {
    padding: 18px;
  }

  .order-product-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .order-product-card img {
    width: 78px;
    height: 78px;
    border-radius: 12px;
  }

  .order-product-card .chosen-box strong {
    font-size: 24px;
  }

  .order-combo-option {
    grid-template-columns: 76px minmax(92px, 1fr);
    gap: 4px 8px;
    min-height: 72px;
    padding: 11px 11px 11px 38px;
  }

  .order-combo-option strong {
    font-size: 16px;
  }

  .order-combo-option em {
    font-size: 16px;
  }

  .order-combo-option small {
    grid-column: 1 / -1;
    justify-self: start;
    font-size: 11px;
  }

  .sticky-mobile {
    display: grid;
  }

  .quick-contact {
    right: 12px;
    bottom: 82px;
    gap: 8px;
  }

  .quick-btn {
    min-width: 0;
    min-height: 48px;
    width: 48px;
    height: 48px;
    padding: 4px;
    box-shadow: 0 14px 38px rgba(6, 36, 67, 0.2);
  }

  .quick-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .quick-text {
    position: absolute;
    right: 56px;
    min-width: 116px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(6, 36, 67, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .quick-btn:hover .quick-text,
  .quick-btn:focus-visible .quick-text {
    opacity: 1;
    transform: translateX(0);
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 82px;
    max-width: none;
  }
}
