:root {
  --ink: #0c2631;
  --ink-soft: #486068;
  --navy: #082f3b;
  --navy-deep: #05252f;
  --teal: #0a7482;
  --teal-soft: #dff4f1;
  --mint: #effaf7;
  --orange: #ff5a2f;
  --orange-dark: #e54721;
  --orange-soft: #fff0e9;
  --yellow: #ffc857;
  --cream: #fffaf5;
  --white: #ffffff;
  --line: #dce8e8;
  --success: #14805e;
  --danger: #c8372d;
  --shadow-sm: 0 8px 28px rgba(7, 47, 59, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 47, 59, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans Bengali", "Hind Siliguri", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.form-busy {
  cursor: progress;
}

img,
svg {
  display: block;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 47, 0.35);
  outline-offset: 3px;
}

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

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  color: rgba(255, 255, 255, 0.92);
  background: var(--navy-deep);
  font-size: 13px;
}

.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.announcement-inner a {
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
}

.announcement-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(12, 38, 49, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 16px rgba(7, 47, 59, 0.14);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #36515a;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-track {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding: 16px 25px;
  font-size: 16px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff683e, var(--orange));
  box-shadow: 0 13px 28px rgba(255, 90, 47, 0.26);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 34px rgba(255, 90, 47, 0.34);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: #cbdcdd;
}

.button-outline:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.button-outline-dark {
  color: var(--navy);
  background: transparent;
  border-color: #b8cfd0;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 76% 10%, rgba(255, 200, 87, 0.18), transparent 27%),
    linear-gradient(145deg, #f2fbf8 0%, #fffaf4 58%, #fff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -190px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(8, 47, 59, 0.06);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  left: -130px;
  width: 260px;
  height: 260px;
  background: rgba(10, 116, 130, 0.07);
}

.hero-glow-two {
  right: 18%;
  bottom: 15%;
  width: 120px;
  height: 120px;
  background: rgba(255, 90, 47, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.eyebrow-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #cae6e2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  position: relative;
  border-radius: 50%;
  background: #16a676;
  box-shadow: 0 0 0 5px rgba(22, 166, 118, 0.12);
}

.hero h1 {
  max-width: 660px;
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.048em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.35;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding: 9px 12px 9px 31px;
  color: #24444c;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 116, 130, 0.14);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 11px;
  color: var(--success);
  font-weight: 900;
}

.hero-offer {
  max-width: 600px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  gap: 22px;
  margin: 25px 0 0;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid rgba(8, 47, 59, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.hero-offer > div:not(.offer-divider) {
  display: flex;
  flex-direction: column;
}

.offer-caption {
  margin-bottom: 3px;
  color: #75878c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-price {
  color: var(--orange);
  font-size: 31px;
  line-height: 1.15;
}

.hero-offer > div:last-child strong {
  color: var(--navy);
  font-size: 15px;
}

.offer-divider {
  align-self: stretch;
  background: var(--line);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-top: 26px;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.call-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 50%;
  font-size: 19px;
}

.call-link span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.call-link small {
  color: #71858b;
  font-size: 10px;
}

.call-link strong {
  color: var(--navy);
  font-size: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 21px;
  color: #567078;
  font-size: 12px;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  max-width: 490px;
  margin-left: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 47, 59, 0.08);
  border-radius: 36px;
  box-shadow: 0 34px 80px rgba(7, 47, 59, 0.18);
  transform: rotate(1.4deg);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -18px 30px 45px -25px;
  z-index: -1;
  background: rgba(10, 116, 130, 0.1);
  border-radius: 44px;
  transform: rotate(-5deg);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 18 / 23;
  object-fit: cover;
  border-radius: 26px;
}

.image-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 47, 59, 0.08);
  border-radius: 14px;
  box-shadow: 0 15px 34px rgba(7, 47, 59, 0.18);
  transform: rotate(-1.4deg);
}

.image-tag span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.image-tag strong {
  font-size: 13px;
}

.image-tag small {
  margin-top: 3px;
  color: #667c83;
  font-size: 9px;
}

.image-tag-top {
  top: 34px;
  left: -46px;
}

.image-tag-bottom {
  right: -38px;
  bottom: 42px;
}

.tag-icon,
.tag-number {
  width: 35px;
  height: 35px;
  display: grid;
  flex: 0 0 35px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.tag-number {
  background: var(--orange);
}

.image-disclaimer {
  max-width: 470px;
  margin: 22px 0 0 auto;
  color: #74888e;
  font-size: 10px;
  text-align: center;
}

.trust-rail {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: 22px 0;
  background: var(--white);
  border-top: 1px solid #edf2f2;
  border-bottom: 1px solid #edf2f2;
}

.trust-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  color: var(--teal);
  background: var(--mint);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
}

.trust-item > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-item strong {
  color: var(--navy);
  font-size: 13px;
}

.trust-item small {
  margin-top: 4px;
  color: #76898e;
  font-size: 10px;
}

.problem-section {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: 88px;
}

.problem-media {
  position: relative;
}

.problem-media::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  bottom: 36px;
  left: 34px;
  z-index: 0;
  background: var(--orange-soft);
  border-radius: var(--radius-lg);
}

.problem-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.problem-callout {
  position: absolute;
  right: -38px;
  bottom: 30px;
  z-index: 2;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.problem-callout strong {
  font-size: 15px;
}

.problem-callout span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow.light {
  color: var(--yellow);
}

.problem-copy h2,
.section-heading h2,
.how-copy h2,
.order-offer h2,
.policy-card h2,
.faq-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.problem-copy h2 span,
.order-offer h2 span {
  color: var(--orange);
}

.section-lead {
  margin: 19px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.odor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 23px 0;
}

.odor-list span {
  padding: 8px 11px;
  color: #35565e;
  background: var(--mint);
  border: 1px solid #d8eeea;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  padding: 12px 14px;
  color: #486168;
  font-size: 12px;
}

.comparison-row > div + div {
  background: rgba(239, 250, 247, 0.72);
  border-left: 1px solid var(--line);
}

.comparison-head > div {
  color: var(--navy);
  background: #f6f9f9;
  font-size: 12px;
  font-weight: 900;
}

.comparison-head > div + div {
  color: var(--teal);
  background: #e9f8f5;
}

.minus,
.plus {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 5px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.minus {
  color: var(--danger);
  background: #fff0ee;
}

.plus {
  color: var(--success);
  background: #e8f7f1;
}

.honest-note {
  margin: 20px 0 0;
  padding: 15px 17px;
  color: #5a6e74;
  background: var(--cream);
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  font-size: 12px;
}

.benefits-section {
  background: #f6faf9;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px 23px;
  background: var(--white);
  border: 1px solid #e2eded;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(7, 47, 59, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-number {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #d7e4e4;
  font-size: 24px;
  font-weight: 900;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--mint);
  border-radius: 15px;
  font-size: 25px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 23px 0 9px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: #60767d;
  font-size: 13px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.22fr 0.89fr 0.89fr;
  gap: 16px;
  margin-top: 58px;
}

.product-gallery figure {
  position: relative;
  overflow: hidden;
  height: 410px;
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-gallery figure:hover img {
  transform: scale(1.04);
}

.product-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(5, 37, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.how-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.how-section::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 120px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(350px, 0.82fr);
  align-items: center;
  gap: 94px;
}

.how-copy h2 {
  color: var(--white);
}

.steps {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}

.steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 14px;
}

.steps p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.care-tip {
  margin-top: 16px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 200, 87, 0.08);
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  font-size: 11px;
}

.care-tip strong {
  color: var(--yellow);
}

.how-media {
  position: relative;
}

.how-media::before {
  content: "";
  position: absolute;
  inset: 30px -25px -25px 35px;
  z-index: 0;
  background: var(--teal);
  border-radius: var(--radius-lg);
  transform: rotate(4deg);
}

.how-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center top;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.how-badge {
  position: absolute;
  right: -34px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 14px 17px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  line-height: 1.25;
}

.how-badge strong {
  font-size: 13px;
}

.how-badge span {
  margin-top: 4px;
  font-size: 10px;
}

.order-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 0, rgba(20, 156, 158, 0.3), transparent 34%),
    linear-gradient(145deg, #0c4550, #062b36 58%, #05242d);
}

.order-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.order-orb-one {
  top: 80px;
  left: -120px;
  width: 260px;
  height: 260px;
  border: 50px solid rgba(255, 255, 255, 0.025);
}

.order-orb-two {
  right: 18%;
  bottom: 60px;
  width: 170px;
  height: 170px;
  background: rgba(255, 90, 47, 0.07);
}

.order-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(450px, 1.13fr);
  align-items: start;
  gap: 78px;
}

.order-offer {
  position: sticky;
  top: 120px;
  padding-top: 18px;
}

.order-offer h2 {
  color: var(--white);
}

.order-offer > p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.package-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.package-thumb {
  overflow: hidden;
  height: 92px;
  border-radius: 12px;
}

.package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.package-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.package-copy span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-copy strong {
  margin-top: 5px;
  font-size: 14px;
}

.package-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.price-lockup {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.price-lockup > div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.price-lockup span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.price-lockup strong {
  margin-top: 4px;
  color: var(--yellow);
  font-size: 42px;
}

.price-lockup p {
  max-width: 230px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  text-align: right;
}

.offer-points {
  display: grid;
  gap: 10px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.offer-points li {
  position: relative;
  padding-left: 29px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.offer-points li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.support-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.support-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
}

.support-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.support-card small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.support-card strong {
  margin-top: 3px;
  font-size: 13px;
}

.support-card a {
  padding: 7px 11px;
  color: var(--yellow);
  border: 1px solid rgba(255, 200, 87, 0.32);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.order-form-card {
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 26px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.24);
}

.form-heading > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 6px 0 3px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.25;
}

.form-heading p {
  margin: 0;
  color: #6e8288;
  font-size: 11px;
}

.form-alert {
  margin: 16px 0 0;
  padding: 12px 14px;
  color: #8f2721;
  background: #fff1ef;
  border: 1px solid #ffd1cc;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}

.form-alert.is-success {
  color: #0a6648;
  background: #ebfaf4;
  border-color: #bcebd9;
}

#orderForm {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field > span,
.field-group legend,
.quantity-label {
  color: #28464e;
  font-size: 11px;
  font-weight: 900;
}

.field b,
.field-group b {
  color: var(--orange);
}

.field em {
  color: #85969b;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid #d8e5e5;
  border-radius: 11px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input {
  height: 47px;
  padding: 0 13px;
}

.field textarea {
  min-height: 82px;
  padding: 11px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a0afb3;
}

.field input:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 116, 130, 0.09);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #e66c63;
  box-shadow: 0 0 0 4px rgba(200, 55, 45, 0.08);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 9px;
}

.field.is-invalid .field-error {
  display: block;
}

.field-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-group legend {
  margin-bottom: 7px;
}

.area-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.area-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  background: #fbfdfd;
  border: 1px solid #d8e5e5;
  border-radius: 11px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.area-card:has(input:checked) {
  background: #effaf7;
  border-color: var(--teal);
}

.area-card input {
  position: absolute;
  opacity: 0;
}

.area-card > span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.area-card strong {
  color: var(--navy);
  font-size: 11px;
}

.area-card small {
  margin-top: 3px;
  color: #6f8389;
  font-size: 9px;
}

.area-card i {
  width: 18px;
  height: 18px;
  position: relative;
  border: 2px solid #b6c9ca;
  border-radius: 50%;
}

.area-card input:checked ~ i {
  border-color: var(--teal);
}

.area-card input:checked ~ i::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--teal);
  border-radius: 50%;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 13px;
  background: #f7fbfa;
  border: 1px solid #dfeaea;
  border-radius: 12px;
}

.quantity-row > div:first-child {
  display: flex;
  flex-direction: column;
}

.quantity-row small {
  color: #7c8e93;
  font-size: 9px;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #cddddd;
  border-radius: 10px;
}

.quantity-stepper button {
  height: 36px;
  padding: 0;
  color: var(--teal);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.quantity-stepper button:hover {
  background: var(--mint);
}

.quantity-stepper input {
  width: 38px;
  height: 36px;
  padding: 0;
  color: var(--navy);
  background: #f5fafa;
  border: 0;
  border-right: 1px solid #dbe7e7;
  border-left: 1px solid #dbe7e7;
  outline: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  appearance: textfield;
  -moz-appearance: textfield;
}

.quantity-stepper input::-webkit-inner-spin-button,
.quantity-stepper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 15px;
  background: linear-gradient(145deg, #f2f9f7, #fffaf5);
  border: 1px solid #dfe9e7;
  border-radius: 13px;
}

.checkout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #60767c;
  font-size: 11px;
}

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

.checkout-total {
  margin-top: 3px;
  padding-top: 10px;
  border-top: 1px dashed #c9dada;
}

.checkout-total span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.checkout-total strong {
  color: var(--orange);
  font-size: 22px;
}

.button-submit {
  width: 100%;
  min-height: 55px;
  padding: 14px 18px;
  border: 0;
  border-radius: 13px;
  font-size: 13px;
}

.button-submit:disabled {
  cursor: wait;
  filter: grayscale(0.45);
  opacity: 0.62;
  transform: none;
}

.form-privacy {
  margin: -4px 0 0;
  color: #839398;
  font-size: 9px;
  text-align: center;
}

.noscript {
  margin: 0;
  color: var(--danger);
  font-size: 11px;
  text-align: center;
}

.assurance-section {
  background: var(--cream);
}

.assurance-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
}

.policy-card,
.business-card {
  background: var(--white);
  border: 1px solid #eadfd5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.policy-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: start;
  gap: 25px;
  padding: 36px;
}

.policy-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(10, 116, 130, 0.23);
  font-size: 22px;
  font-weight: 900;
}

.policy-card h2 {
  font-size: clamp(27px, 3vw, 38px);
}

.policy-card p {
  margin: 13px 0 0;
  color: #62767c;
  font-size: 13px;
}

.policy-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.business-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.business-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  background: var(--mint);
  border-radius: 50%;
}

.verified-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-weight: 900;
}

.business-card h3 {
  margin: 17px 0 2px;
  color: var(--navy);
  font-size: 21px;
}

.business-card > p {
  margin: 0;
  color: #7b8c91;
  font-size: 10px;
}

.business-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.business-card dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 9px;
  padding-top: 9px;
  border-top: 1px solid #edf1f1;
  font-size: 10px;
}

.business-card dt {
  color: #89999e;
}

.business-card dd {
  margin: 0;
  color: #38555d;
  font-weight: 700;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 84px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  margin: 16px 0 23px;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: #fbfdfd;
  border: 1px solid #dfeaea;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  background: var(--white);
  border-color: #bed9d7;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--mint);
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 17px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 0;
  padding: 0 20px 20px;
  color: #61757b;
  font-size: 12px;
}

.final-cta {
  padding: 40px 0;
  color: var(--white);
  background: var(--orange);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.final-cta-inner > div:first-child span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.final-cta h2 {
  margin: 2px 0 0;
  font-size: 30px;
  line-height: 1.2;
}

.final-price {
  display: flex;
  flex-direction: column;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.15;
}

.final-price small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.final-price strong {
  margin-top: 4px;
  font-size: 31px;
}

.site-footer {
  padding: 68px 0 22px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 1fr 0.8fr;
  gap: 60px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-brand strong {
  color: var(--white);
  font-size: 17px;
}

.footer-brand span {
  margin-top: 3px;
  color: var(--yellow);
  font-size: 9px;
}

.footer-brand p {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 11px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid a,
.footer-grid p,
.footer-grid address {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-style: normal;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-whatsapp {
  margin-top: 6px !important;
  padding: 8px 12px;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 9px;
}

.mobile-order-bar {
  display: none;
}

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

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

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    gap: 42px;
  }

  .image-tag-top {
    left: -18px;
  }

  .image-tag-bottom {
    right: -18px;
  }

  .trust-item {
    padding-inline: 16px;
  }

  .problem-grid,
  .how-grid {
    gap: 55px;
  }

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

  .benefit-card {
    min-height: 220px;
  }

  .order-grid {
    gap: 42px;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 58px 0 72px;
  }

  .hero-grid,
  .problem-grid,
  .how-grid,
  .order-grid,
  .assurance-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

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

  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }

  .hero-image-frame {
    max-width: 540px;
    margin: 0 auto;
  }

  .trust-rail-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .problem-grid {
    gap: 58px;
  }

  .problem-media {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .problem-media img {
    max-height: 570px;
  }

  .problem-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .product-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .product-gallery figure:last-child {
    grid-column: 1 / -1;
    height: 320px;
  }

  .how-grid {
    gap: 60px;
  }

  .how-copy {
    max-width: 720px;
  }

  .how-media {
    width: min(100%, 570px);
    margin: 0 auto;
  }

  .order-grid {
    gap: 50px;
  }

  .order-offer,
  .faq-intro {
    position: static;
  }

  .order-offer {
    max-width: 680px;
    padding-top: 0;
  }

  .order-form-card {
    max-width: 700px;
  }

  .assurance-grid {
    gap: 16px;
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-intro {
    max-width: 650px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr auto;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 650px) {
  html {
    scroll-padding-top: 75px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .announcement-inner {
    min-height: 32px;
    justify-content: center;
    gap: 7px;
    font-size: 10px;
  }

  .announcement-inner span:nth-child(3),
  .announcement-inner a {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

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

  .brand small {
    margin-top: 3px;
    font-size: 8px;
  }

  .header-track {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 11px;
  }

  .hero {
    padding: 42px 0 58px;
  }

  .hero-grid {
    gap: 42px;
  }

  .eyebrow-pill {
    padding: 7px 10px;
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -0.045em;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-benefits {
    display: grid;
    gap: 7px;
  }

  .hero-benefits li {
    width: fit-content;
    padding-block: 8px;
    font-size: 11px;
  }

  .hero-benefits li::before {
    top: 8px;
  }

  .hero-offer {
    gap: 14px;
    padding: 14px 15px;
  }

  .offer-caption {
    font-size: 9px;
  }

  .hero-price {
    font-size: 27px;
  }

  .hero-offer > div:last-child strong {
    font-size: 12px;
  }

  .hero-cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-cta-row .button {
    width: 100%;
  }

  .call-link {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    gap: 13px;
  }

  .hero-image-frame {
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 27px;
    transform: rotate(0.6deg);
  }

  .hero-image-frame img {
    border-radius: 21px;
  }

  .image-tag {
    padding: 9px 10px;
  }

  .image-tag-top {
    top: 23px;
    left: -9px;
  }

  .image-tag-bottom {
    right: -9px;
    bottom: 25px;
  }

  .image-tag strong {
    font-size: 10px;
  }

  .image-tag small {
    font-size: 7px;
  }

  .tag-icon,
  .tag-number {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 12px;
  }

  .image-disclaimer {
    padding-inline: 10px;
    font-size: 8px;
  }

  .trust-rail {
    padding: 16px 0;
  }

  .trust-rail-grid {
    gap: 14px 0;
  }

  .trust-item {
    gap: 8px;
    padding: 3px 9px;
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    font-size: 14px;
  }

  .trust-item strong {
    font-size: 10px;
  }

  .trust-item small {
    display: none;
  }

  .problem-media::before {
    top: -15px;
    right: -10px;
    bottom: 25px;
    left: 24px;
  }

  .problem-media img {
    max-height: 510px;
    border-radius: 24px;
  }

  .problem-callout {
    right: -5px;
    bottom: 20px;
    max-width: 250px;
    padding: 13px 15px;
  }

  .problem-callout strong {
    font-size: 12px;
  }

  .problem-callout span {
    font-size: 9px;
  }

  .section-eyebrow {
    font-size: 10px;
  }

  .problem-copy h2,
  .section-heading h2,
  .how-copy h2,
  .order-offer h2,
  .policy-card h2,
  .faq-intro h2 {
    font-size: 34px;
  }

  .section-lead {
    font-size: 14px;
  }

  .comparison-row > div {
    padding: 10px;
    font-size: 10px;
  }

  .comparison-head > div {
    font-size: 10px;
  }

  .honest-note {
    font-size: 10px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .benefit-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-card h3 {
    margin-top: 17px;
    font-size: 16px;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 40px;
  }

  .product-gallery figure,
  .product-gallery figure:last-child {
    height: 270px;
  }

  .product-gallery .gallery-feature {
    grid-column: 1 / -1;
    height: 330px;
  }

  .product-gallery figure:last-child {
    grid-column: auto;
  }

  .product-gallery figcaption {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 8px;
    font-size: 9px;
  }

  .steps li {
    grid-template-columns: 39px 1fr;
    padding: 12px;
  }

  .steps li > span {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .how-media::before {
    inset: 20px -10px -13px 24px;
  }

  .how-media img {
    max-height: 530px;
    border-width: 5px;
    border-radius: 24px;
  }

  .how-badge {
    right: -5px;
    bottom: 18px;
  }

  .order-grid {
    gap: 38px;
  }

  .package-card {
    grid-template-columns: 80px 1fr;
  }

  .package-thumb {
    height: 80px;
  }

  .price-lockup strong {
    font-size: 38px;
  }

  .price-lockup p {
    max-width: 180px;
    font-size: 9px;
  }

  .order-form-card {
    margin-inline: -3px;
    padding: 23px 18px;
    border-radius: 21px;
  }

  .form-heading h3 {
    font-size: 21px;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .area-card {
    padding: 10px;
  }

  .area-card strong {
    font-size: 10px;
  }

  .button-submit {
    font-size: 11px;
  }

  .policy-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px;
  }

  .policy-icon {
    width: 68px;
    height: 68px;
    font-size: 17px;
  }

  .business-card {
    padding: 25px;
  }

  .faq-grid {
    gap: 28px;
  }

  .faq-list summary {
    padding: 16px 48px 16px 15px;
    font-size: 12px;
  }

  .faq-list details p {
    padding: 0 15px 17px;
    font-size: 10px;
  }

  .final-cta {
    padding: 32px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .final-cta h2 {
    font-size: 23px;
  }

  .final-price {
    padding-right: 0;
    border-right: 0;
    text-align: right;
  }

  .final-price small {
    font-size: 8px;
  }

  .final-price strong {
    font-size: 25px;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }

  .mobile-order-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #dbe7e7;
    box-shadow: 0 -12px 30px rgba(7, 47, 59, 0.12);
    backdrop-filter: blur(15px);
    transform: translateY(0);
    transition: transform 0.25s ease;
  }

  .mobile-order-bar.is-hidden {
    transform: translateY(120%);
  }

  .mobile-order-bar > div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .mobile-order-bar small {
    color: #71858a;
    font-size: 8px;
  }

  .mobile-order-bar strong {
    margin-top: 3px;
    color: var(--orange);
    font-size: 21px;
  }

  .mobile-order-bar .button {
    min-height: 46px;
    padding: 11px 22px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
