:root {
  --bg: #fdfaf4;
  --surface: #ffffff;
  --text: #1d2738;
  --muted: #56627a;
  --brand: #e67e22;
  --accent: #1f9d66;
  --success: #0f9a5b;
  --border: #dbe3f0;
  --font-body: "Hind Siliguri", "Anek Bangla", "Noto Sans Bengali", sans-serif;
  --font-display:
    "Hind Siliguri", "Anek Bangla", "Noto Sans Bengali", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(230, 126, 34, 0.12) 0%,
      rgba(255, 183, 3, 0) 42%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(31, 157, 102, 0.1) 0%,
      rgba(31, 157, 102, 0) 48%
    ),
    radial-gradient(
      circle at 50% 92%,
      rgba(70, 122, 200, 0.09) 0%,
      rgba(66, 98, 255, 0) 46%
    ),
    linear-gradient(155deg, #fffdf8 0%, #fdfaf4 42%, #eef6ff 100%);
  background-size:
    150% 150%,
    150% 150%,
    170% 170%,
    100% 100%;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: bgShift 22s ease-in-out infinite alternate;
}

h1,
h2,
h3,
.btn,
.badge,
.cta-highlight h3 {
  font-family: var(--font-display);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(230, 126, 34, 0.34);
  }
  50% {
    box-shadow: 0 14px 28px rgba(230, 126, 34, 0.48);
  }
}

@keyframes ctaBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 22px rgba(230, 126, 34, 0.28);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 14px 30px rgba(230, 126, 34, 0.4);
  }
}

@keyframes ctaShine {
  0%,
  70%,
  100% {
    transform: translateX(-145%) skewX(-20deg);
    opacity: 0;
  }
  15%,
  30% {
    transform: translateX(145%) skewX(-20deg);
    opacity: 0.42;
  }
}

@keyframes bgShift {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      50% 100%,
      0% 0%;
  }
  50% {
    background-position:
      16% 12%,
      84% 20%,
      46% 86%,
      0% 0%;
  }
  100% {
    background-position:
      8% 18%,
      92% 10%,
      54% 76%,
      0% 0%;
  }
}

@keyframes chatFloat {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes fabRingPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes chatBadgeBlink {
  0%,
  100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

@keyframes socialNudge {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-2px) scale(1.04);
  }
  70% {
    transform: translateY(0) scale(1);
  }
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.topbar {
  background: #ecf8f1;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.topbar-content span {
  color: #1f5f43;
  font-weight: 600;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}

.hero {
  padding: 3rem 0 2rem;
  background: radial-gradient(
    circle at top right,
    #f9ead8,
    #f6f9f1 50%,
    #fdfaf4 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 157, 102, 0.2);
  border-radius: 14px;
  padding: 1.2rem;
  animation: fadeUp 0.7s ease-out both;
}

.badge {
  display: inline-block;
  font-size: 0.85rem;
  color: #1f6d4a;
  background: rgba(31, 157, 102, 0.12);
  border: 1px solid rgba(31, 157, 102, 0.3);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

h1 {
  margin: 0.7rem 0 0.3rem;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.08px;
  font-weight: 700;
}

.subtitle {
  margin: 0;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 700;
}

.description {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 1rem;
  max-width: 60ch;
}

.hero-points {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #3a4456;
  display: grid;
  gap: 0.3rem;
}

.price-row {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-urgency {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-urgency span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #1f6b46;
  background: rgba(31, 157, 102, 0.1);
  border: 1px solid rgba(31, 157, 102, 0.25);
}

.micro-proof {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.3rem;
}

.micro-proof span {
  color: #2a6a4a;
  font-size: 0.86rem;
}

.old-price {
  margin: 0;
  text-decoration: line-through;
  color: #ad5d64;
}

.new-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.save-price {
  margin: 0.1rem 0 0;
  font-size: 0.92rem;
  color: #96f3be;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 0;
  padding: 0.8rem 1rem;
  font-weight: 800;
  letter-spacing: 0.15px;
  text-decoration: none;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid rgba(31, 157, 102, 0.28);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #f5b255, var(--brand));
  color: #2e1d00;
  border: 1px solid rgba(151, 84, 17, 0.24);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.28);
  position: relative;
  overflow: hidden;
  animation: ctaBreath 2.25s ease-in-out infinite;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 34%;
  height: 340%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-145%) skewX(-20deg);
  animation: ctaShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(0.97);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.94);
}

.btn-primary.full {
  min-height: 52px;
  font-size: 1rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(48, 57, 74, 0.13);
  animation: fadeUp 0.9s ease-out both;
}

.product-visual {
  min-height: 300px;
  border-radius: 12px;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, #faeedf, #f4ead9 55%, #eaf4e9);
  border: 1px solid rgba(152, 116, 71, 0.22);
}

.product-image {
  width: 100%;
  max-height: 391px;
  object-fit: cover;
  border-radius: 10px;
}

.image-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-card {
  margin-top: 0.75rem;
  background: #f8f3e8;
  border: 1px solid #dbcda9;
  border-radius: 10px;
  padding: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.offer-card p {
  margin: 0;
  color: #38445b;
}

.proof-strip {
  padding: 0.6rem 0 1rem;
}

.proof-grid {
  background: linear-gradient(145deg, #e7f7ee, #f4faed);
  border: 1px solid rgba(44, 132, 89, 0.22);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.9rem;
}

.proof-grid p {
  margin: 0;
  font-weight: 600;
  color: #275b3f;
  text-align: center;
  font-size: 0.95rem;
}

.decision-strip {
  padding: 0.3rem 0 1.1rem;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.decision-item {
  background: linear-gradient(150deg, #fdf7eb, #f3f5fa);
  border: 1px solid #d6dce8;
  border-radius: 12px;
  padding: 0.85rem;
}

.decision-item h3 {
  margin: 0;
  color: #2b6f4b;
  font-size: 1rem;
}

.decision-item p {
  margin: 0.42rem 0 0;
  color: #49556d;
  font-size: 0.9rem;
}

.brand-proof {
  padding: 0.25rem 0 1.2rem;
}

.brand-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-card {
  background: linear-gradient(160deg, #fffefb, #f4f7fd);
  border: 1px solid #d4dbea;
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 10px 22px rgba(53, 63, 79, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 183, 3, 0.55);
  box-shadow: 0 14px 30px rgba(57, 71, 95, 0.18);
}

.proof-title {
  margin: 0;
  color: #9d6206;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.proof-main {
  margin: 0.35rem 0 0;
  color: #283246;
  font-size: 1.03rem;
  font-weight: 700;
}

.proof-logo {
  margin-top: 0.5rem;
  /* width: min(220px, 100%); */
  border-radius: 10px;
  width: 74px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-sub {
  margin: 0.3rem 0 0;
  color: #68748a;
  font-size: 0.92rem;
}

.certification-card {
  background: linear-gradient(160deg, #fff8ea, #f5f8ff);
}

.cert-badges {
  margin-top: 0.55rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.cert-item {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.cert-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 999px;
  background: #f3f5fa;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px;
}

.cert-item figcaption {
  font-size: 0.74rem;
  font-weight: 700;
  color: #475670;
  letter-spacing: 0.2px;
}

.composition {
  padding: 0.5rem 0 1.7rem;
}

.composition h2 {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
}

.composition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.composition-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
}

.composition-item h3 {
  margin: 0;
  font-size: 1.02rem;
}

.composition-item p {
  margin: 0.4rem 0 0;
  color: #af6400;
  font-weight: 700;
}

.composition-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.benefits {
  padding: 2rem 0;
}

.benefits h2,
.video-copy h2,
.order h2 {
  letter-spacing: 0.2px;
}

.benefits h2,
.order h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.benefit-item:hover {
  border-color: rgba(255, 183, 3, 0.45);
  transform: translateY(-2px);
}

.benefit-item h3 {
  margin-top: 0;
}

.benefit-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  padding: 0.5rem 0 2rem;
}

.faq-section h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.7rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.video-section {
  padding: 1.5rem 0 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.video-copy,
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(55, 65, 83, 0.12);
}

.video-copy h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.video-copy p,
.video-copy li {
  color: var(--muted);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  display: block;
}

.promo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  display: block;
  background: #e7ebf3;
}

.audience {
  padding: 0.5rem 0 2rem;
}

.audience h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.7rem;
}

.audience-text {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
  max-width: 78ch;
}

.order {
  padding: 2rem 0 3rem;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(55, 65, 83, 0.12);
}

.order-info p,
.order-info li {
  color: var(--muted);
}

.cta-highlight {
  margin: 0.95rem 0 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 183, 3, 0.14),
    rgba(31, 157, 102, 0.06)
  );
  border: 1px solid rgba(230, 126, 34, 0.26);
}

.cta-kicker {
  margin: 0 0 0.35rem;
  color: #955f00;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-highlight h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #5f3d00;
}

.cta-highlight p:last-child {
  margin: 0.45rem 0 0;
}

.order-note {
  margin-top: 0.8rem;
  border-left: 3px solid var(--brand);
  padding-left: 0.7rem;
}

.order-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  box-shadow: 0 10px 24px rgba(55, 65, 83, 0.13);
  scroll-margin-top: 0.9rem;
}

.form-kicker {
  margin: 0;
  color: #9a6300;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-title {
  margin: 0.15rem 0 0.1rem;
  color: #624004;
  font-size: 1.2rem;
}

.form-trust-line {
  margin: 0 0 0.2rem;
  color: #3f5f52;
  font-size: 0.9rem;
}

.order-form label {
  font-weight: 600;
  margin-top: 0.4rem;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c7d1e3;
  background: #ffffff;
  color: var(--text);
  padding: 0.7rem;
  font: inherit;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: 2px solid rgba(31, 157, 102, 0.32);
  border-color: var(--accent);
}

.quantity-control {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.45rem;
  align-items: center;
}

.qty-btn {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #c7d1e3;
  background: #ffffff;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
}

.qty-btn:hover {
  border-color: var(--brand);
}

#quantity {
  text-align: center;
  font-weight: 700;
}

#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#quantity[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.price-summary {
  margin-top: 0.55rem;
  background: #f2fbf5;
  border: 1px solid #c8e7d5;
  border-radius: 10px;
  padding: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.price-summary p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--muted);
}

.price-summary strong {
  color: var(--text);
}

.price-summary .grand-total {
  margin-top: 0.3rem;
  padding-top: 0.45rem;
  border-top: 1px dashed #b5c1da;
  font-weight: 700;
}

.price-summary .grand-total strong {
  color: var(--brand);
}

.form-decision-note {
  margin: 0.2rem 0 0;
  color: #2a6d4b;
  font-size: 0.88rem;
  text-align: center;
}

.full {
  width: 100%;
  margin-top: 0.65rem;
}

.order-action-points {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.22rem;
}

.order-action-points p {
  margin: 0;
  color: #4a5770;
  font-size: 0.84rem;
}

.submit-note {
  margin: -0.05rem 0 0;
  color: #61718f;
  font-size: 0.86rem;
  text-align: center;
}

.form-message {
  min-height: 1.2rem;
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: #ff8f8f;
}

.submit-instruction {
  margin: 0.05rem 0 0;
  color: #4f5c74;
  font-size: 0.84rem;
  text-align: center;
}

.footer {
  border-top: 1px solid var(--border);
  background: #ecf8f1;
}

.footer-content {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: var(--brand);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.mobile-sticky-copy {
  display: grid;
  gap: 0.1rem;
}

.mobile-sticky-copy strong {
  color: #7a4700;
  font-size: 1rem;
  line-height: 1.1;
}

.mobile-sticky-copy span {
  color: #36574a;
  font-size: 0.78rem;
}

.contact-fab {
  position: fixed;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 1180;
  display: grid;
  gap: 0.6rem;
}

.fab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  border-radius: 999px;
  padding: 0.62rem 0.8rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(39, 51, 74, 0.2);
  animation: socialNudge 2.65s ease-in-out infinite;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.fab-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.fab-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.fab-link.whatsapp {
  background: linear-gradient(135deg, #1ea85a, #25d366);
}

.fab-link.messenger {
  background: linear-gradient(135deg, #0676ff, #00a3ff);
  animation-delay: 0.35s;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 5.5rem;
  }

  .hero {
    padding-top: 1rem;
  }

  h1 {
    font-size: clamp(1.55rem, 6.2vw, 2rem);
    line-height: 1.14;
  }

  h2,
  .benefits h2,
  .faq-section h2,
  .video-copy h2,
  .order h2,
  .audience h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  h3,
  .form-title,
  .decision-item h3,
  .faq-item h3,
  .benefit-item h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .topbar {
    font-size: 0.9rem;
  }

  .topbar-content {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.22rem;
    padding: 0.4rem 0;
  }

  .topbar-content span {
    width: 100%;
    line-height: 1.35;
  }

  .hero-grid,
  .order-grid,
  .benefit-grid,
  .video-grid,
  .faq-grid,
  .proof-grid,
  .composition-grid,
  .brand-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .order-info,
  .order-form {
    border-radius: 16px;
  }

  .price-row {
    align-items: stretch;
  }

  .price-row .btn {
    width: 100%;
    min-height: 54px;
    font-size: 1.02rem;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(230, 126, 34, 0.28);
    animation: pulseGlow 1.7s ease-in-out infinite;
  }

  .hero-urgency {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .hero-urgency span {
    justify-content: center;
    font-weight: 700;
  }

  .order-info p,
  .order-info li {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .order-form {
    border: 1px solid rgba(31, 157, 102, 0.3);
    box-shadow: 0 14px 28px rgba(31, 157, 102, 0.12);
    scroll-margin-top: 5.4rem;
  }

  .order-form label {
    font-size: 0.96rem;
  }

  .order-form input,
  .order-form textarea,
  .order-form select {
    min-height: 48px;
  }

  .qty-btn {
    height: 48px;
    border-radius: 12px;
  }

  .order-form .btn-primary.full {
    min-height: 56px;
    font-size: 1.06rem;
    letter-spacing: 0.2px;
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(230, 126, 34, 0.32);
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.16rem;
    padding: 0.22rem 0.42rem calc(0.22rem + env(safe-area-inset-bottom));
    background: linear-gradient(
      180deg,
      rgba(253, 250, 244, 0.65),
      rgba(253, 250, 244, 0.95) 45%,
      rgba(253, 250, 244, 0.99)
    );
    border-top: 1px solid rgba(31, 157, 102, 0.26);
    box-shadow: 0 -8px 22px rgba(21, 41, 71, 0.12);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }

  .mobile-sticky-cta .btn {
    flex: 0 0 auto;
    min-width: 140px;
    min-height: 26px;
    border-radius: 12px;
    font-size: 0.82rem;
    box-shadow: 0 10px 24px rgba(230, 126, 34, 0.32);
    animation: pulseGlow 1.6s ease-in-out infinite;
  }

  .mobile-sticky-copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  .contact-fab {
    left: 0.34rem;
    right: 0.34rem;
    bottom: calc(2.75rem + env(safe-area-inset-bottom));
    top: auto;
    transform: none;
    gap: 0;
    z-index: 1250;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none;
  }

  .contact-fab::before {
    content: none;
  }

  .fab-link {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 16px;
    font-size: 0.84rem;
    box-shadow: 0 10px 22px rgba(24, 43, 67, 0.24);
  }

  .fab-link::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    border: 2px solid rgba(31, 157, 102, 0.28);
    animation: fabRingPulse 1.9s ease-out infinite;
    pointer-events: none;
  }

  .fab-link.messenger::after {
    border-color: rgba(6, 118, 255, 0.26);
    animation-delay: 0.28s;
  }

  .fab-link span {
    display: none;
  }

  .fab-link svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 5.35rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2,
  .benefits h2,
  .faq-section h2,
  .video-copy h2,
  .order h2,
  .audience h2 {
    font-size: 1.24rem;
  }

  h3,
  .form-title,
  .decision-item h3,
  .faq-item h3,
  .benefit-item h3 {
    font-size: 0.95rem;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .mobile-sticky-cta {
    gap: 0.12rem;
    padding: 0.2rem 0.36rem calc(0.2rem + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .mobile-sticky-cta .btn {
    min-width: 0;
    width: 100%;
    padding-inline: 0.56rem;
    min-height: 24px;
    font-size: 0.8rem;
  }

  .mobile-sticky-copy {
    text-align: center;
  }

  .mobile-sticky-copy strong {
    font-size: 0.73rem;
  }

  .mobile-sticky-copy span {
    font-size: 0.56rem;
  }

  .contact-fab {
    left: 0.2rem;
    right: 0.2rem;
    bottom: calc(3.75rem + env(safe-area-inset-bottom));
    padding: 0;
  }

  .fab-link::after {
    inset: -3px;
  }

  .fab-link {
    width: 36px;
    height: 36px;
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
