:root {
  --ink: #0b1726;
  --navy: #063a70;
  --blue: #075faf;
  --cyan: #00a9d6;
  --mint: #18b883;
  --lime: #b8ef63;
  --soft: #f4f9fb;
  --surface: #ffffff;
  --line: #d9e7ef;
  --muted: #5e6f80;
  --shadow: 0 24px 70px rgba(6, 58, 112, 0.12);
  --radius: 10px;
}

* {
  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: var(--surface);
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

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

.topbar {
  background: var(--navy);
  color: #dff7ff;
  font-size: 13px;
  font-weight: 750;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 231, 239, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: grid;
  grid-template-columns: 52px auto;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 950;
}

.brand img {
  width: 52px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 25px;
  line-height: 0.94;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #314a61;
  font-size: 14px;
  font-weight: 800;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 58, 112, 0.18);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.btn-accent {
  color: #fff;
  background: var(--mint);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(184, 239, 99, 0.22), transparent 27%),
    radial-gradient(circle at 80% 18%, rgba(0, 169, 214, 0.2), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 47%, rgba(255, 255, 255, 0.55) 100%),
    url("images/cleniza-refill-hero.png") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -92px;
  width: 520px;
  height: 520px;
  content: "";
  border: 54px solid rgba(0, 169, 214, 0.12);
  border-radius: 50%;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(6, 58, 112, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 58, 112, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 72px 0 54px;
}

.hero-copy-wrap {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin: 18px 0;
  font-size: clamp(50px, 7.6vw, 94px);
  line-height: 0.92;
  max-width: 780px;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 0;
  color: #324d65;
  font-size: 19px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 169, 214, 0.24);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(6, 58, 112, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
}

.proof {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(217, 231, 239, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(6, 58, 112, 0.07);
}

.proof strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.proof span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  align-self: center;
  min-height: 520px;
  isolation: isolate;
  transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0);
  transition: transform 0.2s ease-out;
}

.hero-stage::before {
  position: absolute;
  inset: 58px 4% 36px 8%;
  z-index: -2;
  content: "";
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(234, 250, 255, 0.54));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stage::after {
  position: absolute;
  left: 9%;
  right: 10%;
  bottom: 72px;
  z-index: -1;
  height: 32px;
  content: "";
  border-radius: 50%;
  background: rgba(6, 58, 112, 0.18);
  filter: blur(18px);
}

.hero-pack {
  position: absolute;
  left: 50%;
  bottom: 72px;
  width: min(680px, 112%);
  max-width: none;
  border-radius: 16px;
  transform: translateX(-50%);
  box-shadow: 0 22px 50px rgba(6, 58, 112, 0.16);
  animation: floatPack 5s ease-in-out infinite;
}

.sachet-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(5px, 1vw, 12px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.sachet-row img {
  flex: 1 1 0;
  min-width: 0;
  max-height: 360px;
  object-fit: contain;
}

.sachet-row.compact img {
  max-height: 300px;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(0, 169, 214, 0.34);
  border-radius: 999px;
  animation: spinSlow 18s linear infinite;
}

.orbit-one {
  width: 320px;
  height: 320px;
  right: 6%;
  top: 30px;
}

.orbit-two {
  width: 210px;
  height: 210px;
  left: 2%;
  bottom: 98px;
  border-color: rgba(24, 184, 131, 0.34);
  animation-duration: 24s;
  animation-direction: reverse;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 174px;
  padding: 16px;
  border: 1px solid rgba(217, 231, 239, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 45px rgba(6, 58, 112, 0.14);
  backdrop-filter: blur(16px);
}

.float-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.float-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.float-card-top {
  top: 76px;
  right: 2%;
}

.float-card-bottom {
  left: 4%;
  bottom: 130px;
}

@keyframes floatPack {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.benefit-bar {
  background: var(--navy);
  color: #fff;
}

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

.benefit {
  min-height: 96px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.benefit strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
}

.benefit span {
  color: #c7e8f4;
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 88px 0;
}

.section-compact {
  padding: 66px 0;
}

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

.section-dark {
  color: #fff;
  background: var(--navy);
}

.section-blue {
  color: #fff;
  background: var(--navy);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
}

.section-head p,
.lead {
  max-width: 700px;
  font-size: 17px;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-blue h2,
.section-blue h3,
.section-blue p {
  color: #fff;
}

.section-dark .lead,
.section-dark .section-head p,
.section-blue .lead,
.section-blue .section-head p {
  color: #c6e7f4;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 46px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(6, 58, 112, 0.08);
}

.panel-pad {
  padding: 30px;
}

.lineup-frame {
  padding: 16px;
  background: #fff;
}

.lineup-frame img,
.product-lineup img {
  border-radius: 8px;
}

.product-lineup {
  padding: 16px;
  background: #fff;
}

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

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

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

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

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

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

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

.product-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  min-height: 610px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px 18px;
  background: linear-gradient(180deg, #fff 0%, #f5fbfd 100%);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.product-card p {
  flex: 1;
}

.product-card .btn {
  width: 100%;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f8fd;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.clean-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.62;
}

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

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.advantage {
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.steps {
  counter-reset: step;
}

.step {
  min-height: 210px;
  padding: 28px;
  border-top: 4px solid var(--cyan);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 26px;
  color: var(--mint);
  font-size: 34px;
  font-weight: 950;
}

.audience-card {
  min-height: 194px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 42px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 58, 112, 0.98), rgba(0, 169, 214, 0.9));
}

.cta-band h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.cta-band p {
  max-width: 760px;
  color: #e3f9ff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.page-hero {
  padding: 76px 0;
  background: linear-gradient(180deg, #f7fcff 0%, #eff8fb 100%);
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.product-detail {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.product-detail img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.detail-block {
  margin-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
}

.contact-tile {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.contact-tile strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 17px;
}

.checkout-hero {
  overflow: hidden;
}

.checkout-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 40px;
  align-items: center;
}

.checkout-hero-grid > img,
.checkout-lineup {
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--mint);
  font-weight: 950;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.checkout-head {
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

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

.variant-card {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(6, 58, 112, 0.07);
}

.variant-card img {
  width: 98px;
  height: 104px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: #f8fbfd;
}

.variant-card h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.variant-card p {
  margin-bottom: 0;
  font-size: 13px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: 0;
  color: var(--navy);
  background: #f0f8fb;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.qty-control strong {
  text-align: center;
  color: var(--navy);
}

.order-summary {
  position: sticky;
  top: 94px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line span {
  color: var(--muted);
  font-weight: 800;
}

.summary-line strong {
  color: var(--navy);
}

.summary-list {
  min-height: 58px;
  margin: 16px 0;
  color: var(--muted);
  line-height: 1.7;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}

.checkout-status {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--navy);
  background: #eef9fd;
  font-weight: 850;
}

.checkout-status.ready {
  color: #09613f;
  background: #e7f8f0;
}

.checkout-form .btn {
  width: 100%;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

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

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.faq-item p {
  max-width: 820px;
}

.footer {
  padding: 54px 0 24px;
  color: #d3e8f2;
  background: #061f38;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer p {
  color: #b9d4e1;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: #d3e8f2;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9fbfce;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .hero-grid,
  .two-col,
  .product-detail,
  .contact-grid,
  .section-head,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      radial-gradient(circle at 20% 20%, rgba(184, 239, 99, 0.22), transparent 25%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86)),
      url("images/cleniza-refill-hero.png") center / cover no-repeat;
  }

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

  .hero-stage {
    min-height: 430px;
  }

  .hero-pack {
    width: min(620px, 105%);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .benefit-bar .container,
  .footer-grid,
  .checkout-hero-grid,
  .checkout-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout,
  .checkout-hero-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

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

  .nav {
    min-height: 66px;
  }

  .brand {
    grid-template-columns: 44px auto;
    gap: 9px;
  }

  .brand img {
    width: 44px;
    height: 36px;
  }

  .brand span {
    font-size: 22px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    inset: 66px 0 auto 0;
  }

  .topbar .container,
  .proof-row,
  .advantage-grid {
    display: block;
  }

  .topbar span {
    display: block;
    margin: 4px 0;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 46px 0;
  }

  .page-hero p,
  .lead,
  .section-head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.05;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .benefit-bar .container,
  .footer-grid,
  .variant-grid {
    grid-template-columns: 1fr;
  }

  .variant-card {
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 108px;
    padding: 12px;
  }

  .variant-card img {
    width: 70px;
    height: 86px;
  }

  .variant-card h3 {
    font-size: 16px;
  }

  .variant-card p {
    font-size: 12px;
  }

  .qty-control {
    width: max-content;
  }

  .proof,
  .advantage {
    margin-bottom: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-card {
    display: block;
    min-height: auto;
  }

  .product-card img {
    height: 360px;
    padding: 18px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  }

  .product-card .card-body {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 18px;
    background: #fff;
  }

  .product-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .product-card h3 {
    margin-bottom: 0;
    font-size: 24px;
  }

  .product-tag {
    width: max-content;
    max-width: 100%;
    margin-bottom: 0;
  }

  .product-card .btn {
    min-height: 48px;
    font-size: 14px;
  }

  .checkout-hero-grid {
    gap: 26px;
  }

  .checkout-hero-grid > img,
  .checkout-lineup {
    border-radius: 14px;
  }

  .checkout-layout {
    gap: 22px;
  }

  .order-summary {
    padding: 22px;
  }

  .price-pill {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-stage::before {
    inset: 46px 0 22px;
  }

  .hero-pack {
    bottom: 62px;
    width: 112%;
  }

  .float-card {
    width: 142px;
    padding: 12px;
  }

  .float-card-top {
    top: 58px;
    right: 0;
  }

  .float-card-bottom {
    left: 0;
    bottom: 96px;
  }

  .cta-band {
    padding: 28px;
  }
}
