: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, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding-top: clamp(36px, 7vw, 70px);
}

.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);
}

.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 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-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);
}

.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);
}

.calc-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 850px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-result {
  display: grid;
  align-content: center;
  padding: 18px;
  background: var(--blue-950);
  border-radius: var(--radius);
}

.calc-result span,
.calc-result small {
  color: rgba(255, 255, 255, 0.72);
}

.calc-result strong {
  color: var(--lime);
  font-size: 38px;
}

.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;
}

.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: -1;
  }

  .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;
  }

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

  .hero-visual {
    min-height: auto;
    padding-bottom: 82px;
  }

  .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;
  }

  .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;
  }
}
