/* ================== RESET / BASE ================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    sans-serif;
  background: #faf7f4;
  color: #1c1410;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
  background: transparent;
  color: inherit;
}

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

::selection {
  background: #ea580c;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Outfit", "Manrope", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

.container.narrow {
  max-width: 840px;
}

/* color helpers */
.t-cta {
  color: #ea580c;
}

.t-success {
  color: #15803d;
}

.wa-ink {
  color: #128c7e;
}

.success {
  color: #15803d;
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 91199px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.btn:active {
  transform: translateY(0) !important;
}

.btn-cta {
  background: #ea580c;
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(234, 88, 12, 0.45);
}

.btn-cta:hover {
  background: #f97316;
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: #1c1410;
  border: 1px solid #e5e1da;
}

.btn-outline:hover {
  background: #fff7ed;
  border-color: #ea580c;
}

.btn-ghost {
  background: #fff;
  color: #1c1410;
  border: 1px solid #e5e1da;
}

.btn-ghost:hover {
  background: #fff7ed;
  border-color: #ea580c;
}

.btn-ghost .icon {
  color: #ea580c;
}

.btn-dark {
  background: #1c1410;
  color: #fff;
}

.btn-dark:hover {
  background: #3d2e20;
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-wa:hover {
  background: #128c7e;
}

.btn-block {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* ================== NAVBAR ================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.6) blur(14px);
  transition:
    box-shadow 0.2s,
    border 0.2s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 #e5e1da,
    0 4px 16px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  min-height: 72px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

@media (min-width: 640px) {
  .nav-logo img {
    height: 56px;
  }
}

.nav-links {
  display: none;
  gap: 28px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #3d2e20;
}

.nav-links a:hover {
  color: #1c1410;
}

.nav-ctas {
  display: none;
  gap: 10px;
}

@media (min-width: 1200px) {
  .nav-ctas {
    display: flex;
  }
}

.nav-toggle {
  display: inline-flex;
  padding: 8px;
  color: #3d2e20;
}

@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  border-top: 1px solid #e5e1da;
  background: #fff;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}

.nav-mobile a {
  padding: 12px;
  border-radius: 8px;
  font-weight: 400;
}

.nav-mobile a:hover {
  background: #f0ebe3;
}

.nav-mobile .btn {
  margin-top: 8px;
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: 120px 0 64px;
  overflow: hidden;
  background: #faf7f4;
}

@media (min-width: 640px) {
  .hero {
    padding: 128px 0 96px;
  }
}

.bg-radial-orange {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      60% 50% at 80% 0%,
      rgba(234, 88, 12, 0.14) 0%,
      rgba(234, 88, 12, 0) 60%
    ),
    radial-gradient(
      40% 35% at 0% 100%,
      rgba(234, 88, 12, 0.08) 0%,
      rgba(234, 88, 12, 0) 60%
    );
}

.bg-radial-orange-dark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background:
    radial-gradient(
      60% 50% at 80% 0%,
      rgba(234, 88, 12, 0.18) 0%,
      rgba(234, 88, 12, 0) 60%
    ),
    radial-gradient(
      40% 35% at 0% 100%,
      rgba(234, 88, 12, 0.12) 0%,
      rgba(234, 88, 12, 0) 60%
    );
}

.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(28, 20, 16, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 20, 16, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.grid-dark {
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
  }
}

.hero-content {
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 91199px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow .icon {
  width: 13px;
  height: 13px;
}

.eyebrow-cta {
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: #ea580c;
}

.eyebrow-cta-only {
  color: #ea580c;
  background: transparent;
  padding: 0;
}

.eyebrow-on-dark {
  background: rgba(234, 88, 12, 0.18);
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: #f97316;
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: #1c1410;
  letter-spacing: -0.02em;
}

.hero-title .hl {
  position: relative;
  display: inline-block;
}

.hero-title .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 12px;
  background: rgba(234, 88, 12, 0.25);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  margin-top: 18px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #6b5846;
  max-width: 560px;
  line-height: 1.55;
}

.hero-bullets {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 540px;
  font-weight: 400;
  color: #3d2e20;
  font-size: 15px;
}

@media (min-width: 640px) {
  .hero-bullets {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.check::after {
  content: "";
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.check-orange {
  width: 20px;
  height: 20px;
  border-radius: 91199px;
  background: #ffedd5;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.check-orange svg {
  width: 12px;
  height: 12px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
  max-width: 560px;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #6b5846;
  font-size: 13.5px;
}
.hero-trust strong {
  color: #1c1410;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #15803d;
  box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.55);
  animation: pulseRing 1.8s infinite;
}

.live-dot.success {
  background: #15803d;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(21, 128, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0);
  }
}

.icon-star {
  color: #e09b0e;
  fill: #e09b0e;
}

.icon-shield {
  color: #15803d;
}

/* CLAIMS + COUNTDOWN cards */
.countdown-card {
  background: #fff7ed;
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
}

.countdown-card.center {
  display: inline-block;
}

.cc-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.cc-head svg {
  width: 13px;
  height: 13px;
  color: #ea580c;
  stroke: #ea580c;
  fill: none;
  stroke-width: 2;
}

.cc-head span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #ea580c;
  text-transform: uppercase;
}

.cc-units {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.cc-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
}

.cc-unit .n {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  font-size: 24px;
  color: #1c1410;
  font-variant-numeric: tabular-nums;
}

.cc-unit .l {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #9e8e7e;
  text-transform: uppercase;
  margin-top: 2px;
}

.cc-sep {
  font-size: 18px;
  color: #9e8e7e;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}

.claims-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.claims-card.mini {
  padding: 8px 10px;
}
.claims-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(21, 128, 61, 0.15);
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.claims-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.claims-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #1c1410;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
}
.digit-col {
  display: inline-flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.digit-track {
  display: inline-flex;
  flex-direction: column;
  will-change: transform;
}
.digit-char {
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.claims-card.mini .claims-num {
  font-size: 18px;
}
.claims-label {
  font-size: 11.5px;
  color: #6b5846;
  margin-top: 3px;
}

/* ================== PHONE MOCKUP ================== */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 310px;
}
.phone-glow {
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(
      60% 50% at 60% 30%,
      rgba(234, 88, 12, 0.25),
      transparent 70%
    ),
    radial-gradient(
      50% 60% at 30% 70%,
      rgba(37, 211, 102, 0.18),
      transparent 70%
    );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.phone {
  position: relative;
  width: 100%;
  max-width: 310px;
  z-index: 1;
}
.phone-bezel {
  background: #0c0a09;
  padding: 10px;
  border-radius: 48px;
  box-shadow:
    0 22px 60px -20px rgba(28, 20, 16, 0.35),
    inset 0 0 0 1px #333;
  position: relative;
}
.hw-btn {
  position: absolute;
  background: #1c1410;
  border-radius: 4px;
  width: 3px;
  box-shadow: inset -1px 0 1px rgba(255, 255, 255, 0.15);
}
.hw-ringer {
  height: 26px;
  left: -3px;
  top: 90px;
}
.hw-vol-up {
  height: 54px;
  left: -3px;
  top: 140px;
}
.hw-vol-down {
  height: 54px;
  left: -3px;
  top: 204px;
}
.hw-power {
  height: 76px;
  right: -3px;
  top: 160px;
}
.phone-screen {
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: #ece5dd;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.dynamic-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #000;
  border-radius: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.15);
}
.di-lens {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2c2c2c;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
}
.di-lens::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1b1b3a;
  filter: blur(1px);
}
.di-sensor {
  width: 70px;
  height: 12px;
  border-radius: 40px;
  background: #1c1c1c;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #075e54;
  color: #fff;
  padding: 46px 14px 10px;
  position: relative;
  z-index: 10;
}
.wa-header .icon {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
}
.wa-meta {
  flex: 1;
  min-width: 0;
}
.wa-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}
.wa-verified {
  width: 14px;
  height: 14px;
}
.wa-status {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}
.wa-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
}
.chat {
  background: #ece5dd;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size:
    18px 18px,
    32px 32px;
  background-position:
    0 0,
    9px 9px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 430px;
  overflow: hidden;
}
.chat-day {
  align-self: center;
  background: rgba(255, 255, 255, 0.82);
  color: #6b5846;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.bubble-out,
.bubble-in {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  font-size: 12.5px;
  color: #1c1410;
  line-height: 1.4;
}
.bubble-out {
  align-self: flex-end;
  background: #e7f8f0;
  border: 1px solid rgba(167, 243, 208, 0.6);
  border-top-right-radius: 2px;
}
.bubble-in {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #f0ebe3;
  border-top-left-radius: 2px;
  max-width: 78%;
}
.bub-title {
  font-weight: 600;
  font-size: 11.5px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bub-title.success {
  color: #15803d;
}
.bubble-out ul {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 11.5px;
  color: #3d2e20;
}
.bub-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 4px;
  font-size: 9px;
  color: #9e8e7e;
}
.tick {
  width: 11px;
  height: 11px;
  color: #25d366;
  stroke: #25d366;
  stroke-width: 2.5;
  fill: none;
}
.wa-input {
  background: #f0f0f0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-input-box {
  flex: 1;
  background: #fff;
  border-radius: 99px;
  padding: 6px 12px;
  font-size: 11px;
  color: #9e8e7e;
}
.wa-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-send svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}
.home-ind {
  height: 20px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-ind::after {
  content: "";
  width: 120px;
  height: 4.5px;
  background: #b0b0b0;
  border-radius: 99px;
  margin-bottom: 6px;
}
.float-tag {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e1da;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.float-tag-left {
  top: 96px;
  left: -50px;
}
.float-tag-right {
  top: 260px;
  right: -40px;
}
@media (min-width: 640px) {
  .float-tag-left {
    left: -90px;
  }
  .float-tag-right {
    right: -80px;
  }
}
.ft-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ft-eyebrow {
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #9e8e7e;
  text-transform: uppercase;
}
.ft-value {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #1c1410;
}

/* ================== OUR CLIENTS ================== */
.clients-section {
  padding: 60px 0;
  border-bottom: 1px solid #e5e1da;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  margin-top: 32px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

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

@media (min-width: 768px) {
  .clients-grid {
    gap: 40px 64px;
  }
  .client-logo {
    width: 160px;
    height: 70px;
  }
}

/* ================== STRIP / INDUSTRY PILLS ================== */
.strip-section {
  background: #faf7f4;
  border-block: 1px solid #e5e1da;
  padding: 40px 0;
}

.strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #9e8e7e;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 91199px;
  background: #fff;
  border: 1px solid #e5e1da;
  font-weight: 800;
  color: #1c1410;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pill:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: #ea580c;
  background: #fff7ed;
  box-shadow: 0 12px 28px -10px rgba(234, 88, 12, 0.25);
}

.pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.pill:hover .pill-icon {
  background: #ea580c;
}

.pill-icon svg {
  width: 14px;
  height: 14px;
  color: #ea580c;
  stroke: #ea580c;
  fill: none;
  stroke-width: 2;
  transition: color 0.3s;
}

.pill:hover .pill-icon svg {
  color: #fff;
  stroke: #fff;
}

/* ================== TRUST STRIP ================== */
.trust-strip {
  background: #faf7f4;
  padding: 36px 0;
  border-bottom: 1px solid #e5e1da;
}

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

@media (min-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ti-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ti-icon svg {
  width: 17px;
  height: 17px;
  color: #ea580c;
  stroke: #ea580c;
  fill: none;
  stroke-width: 2;
}

.trust-item p {
  font-size: 12.5px;
  font-weight: 600;
  color: #3d2e20;
  line-height: 1.3;
}

/* ================== SECTION HEAD ================== */
.section {
  padding: 80px 0;
}

@media (min-width: 1200px) {
  .section {
    padding: 104px 0;
  }
}

.bg-canvas {
  background: #faf7f4;
}

.bg-beige {
  background: #f0ebe3;
}

.section-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-head.center {
  text-align: center;
}

.section-title {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #1c1410;
}

.section-sub {
  margin-top: 18px;
  font-size: 18px;
  color: #6b5846;
}

/* ================== PRICING ================== */
.pricing {
  background: #f0ebe3;
}
.pricing-meta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.claims-hero {
  margin: 20px auto 0;
  text-align: center;
  padding: 22px 28px;
  background: #fffbf7;
  border: 1px solid #a7f3d0;
  border-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.claims-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #15803d;
  text-transform: uppercase;
}
.claims-hero-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 64px);
  color: #1c1410;
  line-height: 1;
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.claims-hero-label {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #6b5846;
}
.pricing-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 2fr 3fr;
  }
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 2px solid #ea580c;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 22px 50px -25px rgba(234, 88, 12, 0.3);
}
.pop-tag {
  position: absolute;
  top: -12px;
  left: 26px;
  background: #ea580c;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}
.pc-title {
  font-size: 22px;
  font-weight: 800;
  color: #1c1410;
}
.pc-price {
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #1c1410;
  line-height: 1;
}
.pc-price span {
  font-size: 15px;
  font-weight: 400;
  color: #6b5846;
}
.pc-sub {
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #6b5846;
}
.pc-trust {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}
.pct {
  padding: 8px 6px;
  border-radius: 8px;
  border: 1px solid #e5e1da;
  background: #fffbf7;
}
.pct strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #1c1410;
}
.pct span {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: #9e8e7e;
  text-transform: uppercase;
}
.pc-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #3d2e20;
}
.pc-list .icon {
  width: 14px;
  height: 14px;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .includes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.includes-grid li {
  background: #fffbf7;
  border: 1px solid #e5e1da;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  color: #3d2e20;
  font-size: 14px;
}
.ic-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #15803d;
  flex-shrink: 0;
  position: relative;
}
.ic-check::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.ic-wide {
  grid-column: 1/-1;
  background: #1c1410;
  border-color: #1c1410;
  color: #fff;
  align-items: center;
}
.ic-wide span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}
.ic-wide svg {
  width: 20px;
  height: 20px;
  color: #f97316;
  stroke: #f97316;
  flex-shrink: 0;
}

/* ================== INDUSTRIES ================== */
.industries-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ind-card {
  background: #fff;
  border: 1px solid #e5e1da;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: default;
}

.ind-card:hover {
  border-color: #ea580c;
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -25px rgba(234, 88, 12, 0.2);
}

.ind-img {
  position: relative;
  aspect-ratio: 4/3;
  background: #f0ebe3;
  overflow: hidden;
}

.ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ind-card:hover .ind-img img {
  transform: scale(1.05);
}

.ind-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 20, 16, 0.85),
    rgba(28, 20, 16, 0.3) 50%,
    rgba(28, 20, 16, 0.1)
  );
}

.ind-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
  color: #fff;
}

.ind-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.ind-name {
  margin-top: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.ind-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.ind-card:hover .ind-arrow {
  background: #ea580c;
  color: #fff;
}

.ind-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.ind-sample {
  padding: 12px;
  background: #ece5dd;
}

.ind-sample p {
  background: #fff;
  border: 1px solid #e5e1da;
  border-top-left-radius: 2px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: #1c1410;
  border-radius: 8px;
  border-top-left-radius: 2px;
}

/* ================== HOW IT WORKS ================== */
.how-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 640px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.how-step {
  text-align: center;
}

.how-bub {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 24px -10px rgba(234, 88, 12, 0.2);
}

.how-bub svg {
  width: 28px;
  height: 28px;
  color: #ea580c;
  stroke: #ea580c;
  fill: none;
  stroke-width: 2;
}

.how-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1c1410;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h3 {
  margin-top: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #1c1410;
  font-size: 18px;
}

.how-step p {
  margin-top: 4px;
  font-size: 13.5px;
  color: #6b5846;
  line-height: 1.5;
}

.how-cta {
  margin-top: 48px;
  text-align: center;
}

/* ================== ROI ================== */
.roi-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1024px) {
  .roi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.roi-inputs {
  background: #fffbf7;
  border: 1px solid #e5e1da;
  border-radius: 18px;
  padding: 26px;
}

.roi-h {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #1c1410;
}

.roi-h.light {
  color: #fff;
}

.slider-row {
  margin-top: 24px;
}

.sr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sr-head label {
  font-size: 14px;
  font-weight: 600;
  color: #3d2e20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sr-val {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  color: #1c1410;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin-top: 14px;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #ffedd5;
  border-radius: 99px;
}

input[type="range"]::-moz-range-track {
  height: 6px;
  background: #ffedd5;
  border-radius: 99px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ea580c;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.4);
  margin-top: -7px;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ea580c;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.4);
  cursor: pointer;
}

.sr-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9e8e7e;
  font-family: "JetBrains Mono", monospace;
  margin-top: 6px;
}

.roi-foot {
  margin-top: 24px;
  font-size: 12px;
  color: #6b5846;
  line-height: 1.5;
}

.roi-output {
  position: relative;
  background: #1c1410;
  color: #fff;
  border-radius: 18px;
  padding: 26px;
  overflow: hidden;
}

.roi-output::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(234, 88, 12, 0.3);
  filter: blur(60px);
  border-radius: 50%;
}

.roi-output > * {
  position: relative;
  z-index: 1;
}

.roi-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin-top: 4px;
}

.roi-stat {
  display: flex;
  gap: 16px;
  padding: 14px;
  margin-top: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.roi-stat.highlight {
  background: rgba(234, 88, 12, 0.18);
  border-color: rgba(234, 88, 12, 0.4);
}

.rs-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-stat.highlight .rs-icon {
  background: #ea580c;
  color: #fff;
}

.rs-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.rs-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.rs-value {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.rs-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
}

.roi-roi {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rr-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(234, 88, 12, 0.25);
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rr-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.rr-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.rr-value {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.roi-roi .btn {
  margin-left: auto;
}

/* ================== TESTIMONIALS ================== */
.testi-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1200px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testi-card {
  background: #fffbf7;
  border: 1px solid #e5e1da;
  border-radius: 18px;
  padding: 24px;
  transition: box-shadow 0.25s;
}
.testi-card:hover {
  box-shadow: 0 22px 50px -25px rgba(0, 0, 0, 0.18);
}
.testi-stars {
  display: flex;
  gap: 2px;
  color: #e09b0e;
}
.testi-stars svg {
  width: 14px;
  height: 14px;
  fill: #e09b0e;
  stroke: #e09b0e;
}
.testi-quote {
  font-size: 14px;
  color: #3d2e20;
  line-height: 1.55;
  margin-top: 14px;
  position: relative;
  text-align: center;
}
.testi-quote::before {
  content: "\201C";
  display: block;
  font-size: 42px;
  font-family: Georgia, serif;
  color: rgba(234, 88, 12, 0.4);
  line-height: 0.6;
  margin-bottom: 6px;
  text-align: left;
}
.testi-quote::after {
  content: "\201D";
  display: block;
  font-size: 42px;
  font-family: Georgia, serif;
  color: rgba(234, 88, 12, 0.4);
  line-height: 0.6;
  margin-top: 6px;
  text-align: right;
  height: 14px;
}
.testi-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid #e5e1da;
  padding-top: 18px;
}
.ts-v {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1c1410;
  line-height: 1;
}
.ts-k {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: #9e8e7e;
  text-transform: uppercase;
  margin-top: 4px;
}
.testi-foot {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-foot img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.tf-name {
  font-size: 14px;
  font-weight: 600;
  color: #1c1410;
}
.tf-role {
  font-size: 12px;
  color: #9e8e7e;
}

/* ================== FAQ ================== */
.faq {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #e5e1da;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-bottom: 1px solid #f0ebe3;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #1c1410;
  font-size: 16px;
  text-align: left;
  gap: 12px;
}

.faq-q .chev {
  width: 18px;
  height: 18px;
  color: #9e8e7e;
  transition: transform 0.25s;
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #3d2e20;
  font-size: 14.5px;
  line-height: 1.55;
  padding: 0 16px;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 18px;
}

.faq-foot {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.faq-foot p {
  font-size: 14px;
  color: #6b5846;
}

@media (min-width: 640px) {
  .faq-foot {
    flex-direction: row;
  }
}

/* ================== FINAL CTA ================== */
.final-cta {
  position: relative;
  background: #1c1410;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .final-cta {
    padding: 104px 0;
  }
}
.fc-title {
  margin-top: 18px;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}
.fc-sub {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.fc-card {
  position: relative;
  margin-top: 40px;
  background: #fff;
  color: #1c1410;
  border-radius: 18px;
  padding: 36px 40px;
  max-width: 680px;
  margin-inline: auto;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}
.fc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ebe3;
  margin-bottom: 24px;
}
.pre-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #9e8e7e;
  text-transform: uppercase;
}
.fc-price {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1c1410;
  margin-top: 4px;
}
.fc-price span {
  font-size: 14px;
  font-weight: 400;
  color: #6b5846;
}
.fc-claims {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3d2e20;
}
.fc-bullets {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .fc-bullets {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
}
.fc-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #3d2e20;
}
.fc-bullets .check {
  width: 18px;
  height: 18px;
}
.fc-bullets .check::after {
  width: 5px;
  height: 9px;
  border-width: 0 2px 2px 0;
  margin-top: -1px;
}
.fc-card .btn-cta {
  margin-top: 32px;
}
.fc-card .btn-outline {
  margin-top: 12px;
}
.fc-tiny {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #9e8e7e;
}
.fc-tiny .icon {
  width: 14px;
  height: 14px;
  color: #15803d;
}
.eyebrow-on-dark {
  margin: 0 auto;
  display: inline-flex;
}
.fc-card .countdown-card {
  background: #fff7ed;
  border-color: rgba(234, 88, 12, 0.25);
}

/* ================== FOOTER ================== */
.site-footer {
  background: #faf7f4;
  border-top: 1px solid #e5e1da;
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1200px) {
  .footer-grid {
    grid-template-columns: 6fr 3fr 3fr;
    gap: 40px;
  }
}

.footer-logo {
  height: 48px;
  width: auto;
}

.f-desc {
  margin-top: 16px;
  font-size: 14.5px;
  color: #6b5846;
  line-height: 1.55;
  max-width: 560px;
}

.f-desc strong {
  color: #1c1410;
}

.f-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 99px;
  text-transform: uppercase;
}

.f-badge .icon {
  width: 11px;
  height: 11px;
}

.f-badge.orange {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffedd5;
}

.f-badge.green {
  background: #ecfdf5;
  color: #15803d;
  border: 1px solid #a7f3d0;
}

.f-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #3d2e20;
}

.f-contact a,
.f-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.f-contact .icon {
  width: 14px;
  height: 14px;
  color: #ea580c;
  flex-shrink: 0;
  margin-top: 3px;
}

.f-contact a:hover {
  color: #ea580c;
}

.f-h {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #9e8e7e;
  text-transform: uppercase;
}

.f-col ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-col a {
  color: #3d2e20;
  font-size: 14px;
}

.f-col a:hover {
  color: #ea580c;
}

.f-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e1da;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .f-bottom {
    flex-direction: row;
  }
}

.f-bottom p {
  font-size: 11.5px;
  color: #9e8e7e;
}

.f-pay {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pay-pill {
  padding: 5px 11px;
  border: 1px solid #e5e1da;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 800;
  color: #6b5846;
  background: #fff;
}

/* ================== STICKY MOBILE CTA ================== */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 12px calc(env(safe-area-inset-bottom, 12px) + 12px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid #e5e1da;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

.sticky-mobile.show {
  display: flex;
}

.sticky-mobile .btn {
  flex: 1;
  padding: 12px 12px;
  font-size: 13px;
}

@media (min-width: 1200px) {
  .sticky-mobile {
    display: none !important;
  }
}

/* ================== STICKY LEAD RAIL ================== */
.sticky-rail {
  display: none;
  position: fixed;
  top: 96px;
  right: 24px;
  width: 300px;
  z-index: 40;
  background: #fff;
  border: 1px solid #e5e1da;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.sticky-rail.show {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1600px) {
  .sticky-rail {
    display: block;
  }
}

.rail-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: #9e8e7e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.rail-close:hover {
  background: #fff7ed;
  color: #1c1410;
}

.rail-head {
  padding: 16px 16px 12px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-bottom: 1px solid #f0ebe3;
}

.rail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 99px;
  background: #fff7ed;
  color: #ea580c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #ffedd5;
}

.rail-tag .icon {
  width: 11px;
  height: 11px;
}

.rail-title {
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #1c1410;
  font-size: 15px;
  line-height: 1.25;
}

.rail-sub {
  font-size: 11px;
  color: #6b5846;
  margin-top: 2px;
}

.rail-form {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rail-form label,
.modal-form label {
  display: flex;
  flex-direction: column;
  font-size: 11.5px;
  font-weight: 600;
  color: #3d2e20;
  gap: 6px;
}

.rail-form input,
.modal-form input,
.modal-form select {
  padding: 9px 12px;
  border: 1px solid #e5e1da;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #1c1410;
  font-weight: 400;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.rail-form input:focus,
.modal-form input:focus,
.modal-form select:focus {
  outline: 0;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18);
}

.rail-form .btn {
  padding: 10px 12px;
  font-size: 13px;
  margin-top: 4px;
}

.rail-tiny {
  font-size: 10px;
  color: #9e8e7e;
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
}

.input-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.phone-prefix {
  position: absolute;
  left: 12px;
  color: #1c1410;
  font-weight: 400;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}
.input-phone-wrap input[type="tel"] {
  padding-left: 42px !important;
  width: 100%;
}

/* ================== WA WIDGET ================== */
.wa-widget {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 55;
}

@media (min-width: 1200px) {
  .wa-widget {
    bottom: 24px;
    right: 24px;
  }
}

.wa-fab {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.45);
  animation: waPulse 2s infinite;
}

.wa-fab:hover {
  background: #128c7e;
}

.wa-logo {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {
  0% {
    box-shadow:
      0 14px 30px -8px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow:
      0 14px 30px -8px rgba(37, 211, 102, 0.45),
      0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 14px 30px -8px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-popover {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 288px;
  background: #fff;
  border: 1px solid #e5e1da;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-pop-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #128c7e;
  color: #fff;
}

.wa-pop-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-pop-avatar .wa-logo {
  width: 22px;
  height: 22px;
}

.wa-pop-meta {
  flex: 1;
  font-size: 13px;
}

.wa-pop-meta strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.wa-pop-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1px;
}

.wa-pop-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
}

.wa-pop-close {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
}

.wa-pop-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wa-pop-body {
  background: #ece5dd;
  padding: 14px;
}

.wa-pop-bubble {
  background: #fff;
  border: 1px solid #f0ebe3;
  border-top-left-radius: 2px;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  color: #1c1410;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-pop-foot {
  padding: 10px;
  border-top: 1px solid #f0ebe3;
  background: #fff;
}

/* ================== MODAL ================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 16, 0.65);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

.modal-panel {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: #3d2e20;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.modal-x:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal-x.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.modal-x.light:hover {
  background: rgba(255, 255, 255, 0.28);
}

.modal-head {
  padding: 24px 24px 14px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-bottom: 1px solid #f0ebe3;
}

.modal-head h3 {
  margin-top: 10px;
  font-size: clamp(12px, 4.5vw, 18px);
  font-weight: 800;
  color: #1c1410;
  letter-spacing: -0.01em;
}

.modal-head p {
  margin-top: 6px;
  font-size: 14px;
  color: #6b5846;
  line-height: 1.5;
}

.modal-meta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.modal-meta .countdown-card {
  flex: 1.1;
}

.modal-meta .claims-card {
  flex: 1;
  justify-content: center;
}

.modal-meta .cc-unit .n {
  font-size: clamp(17px, 6vw, 24px);
}

.modal-meta .claims-card.mini .claims-num {
  font-size: clamp(16px, 5vw, 30px);
}

@media (max-width: 639px) {
  .modal-meta {
    gap: 6px;
  }
  .modal-meta .countdown-card {
    padding: 8px 10px;
    flex: 1.2;
  }
  .modal-meta .cc-head {
    margin-bottom: 6px;
  }
  .modal-meta .cc-head span {
    font-size: 9px;
  }
  .modal-meta .cc-units {
    gap: 4px;
  }
  .modal-meta .cc-unit {
    min-width: 30px;
  }
  .modal-meta .cc-unit .l {
    font-size: 8px;
  }
  .modal-meta .cc-sep {
    margin-top: 0px;
  }
  .modal-meta .claims-card {
    padding: 8px 10px;
    gap: 8px;
    flex: 1;
    justify-content: center;
  }
  .modal-meta .claims-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .modal-meta .claims-icon svg {
    width: 16px;
    height: 16px;
  }
  .modal-meta .claims-label {
    font-size: 9.5px;
    margin-top: 1px;
  }
}

.modal-form {
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form .btn {
  margin-top: 6px;
}

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

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .modal-head {
    padding: 10px 14px 14px;
    background: linear-gradient(135deg, #fff7ed, #fff);
    border-bottom: 1px solid #f0ebe3;
  }
  .modal-form {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.form-tiny {
  margin-top: 10px;
  font-size: 11.5px;
  color: #9e8e7e;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.form-tiny .icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-tiny.center {
  justify-content: center;
}

.modal-success {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ms-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ms-check {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.18);
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-check svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.ms-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #1c1410;
}

.ms-contact {
  font-size: 13px;
  color: #6b5846;
  margin-top: 2px;
}

.ms-pay {
  border: 2px dashed #e5e1da;
  border-radius: 14px;
  padding: 18px;
  background: #faf7f4;
}

.ms-pay-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ms-amt {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1c1410;
  line-height: 1;
}

.ms-pills {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ms-pills span {
  padding: 2px 8px;
  border: 1px solid #e5e1da;
  border-radius: 4px;
  font-size: 11px;
  color: #9e8e7e;
}

/* exit panel */
.exit-panel {
  max-width: 420px;
}

.exit-head {
  background: linear-gradient(135deg, #ea580c, #c4530b);
  color: #fff;
  padding: 28px;
  text-align: center;
}

.exit-gift {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto;
}

.exit-eyebrow {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.9;
}

.exit-head h3 {
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.exit-head h3 span {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 4px;
}

.exit-sub {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.exit-body {
  padding: 24px;
  text-align: center;
}

.exit-dismiss {
  margin-top: 12px;
  font-size: 13px;
  color: #9e8e7e;
}

.exit-dismiss:hover {
  color: #1c1410;
  text-decoration: underline;
}

/* ================== TOAST ================== */
.toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1410;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  z-index: 100;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  animation: toastIn 0.25s ease;
}

.toast.success {
  background: #15803d;
}

.toast.error {
  background: #c0272d;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ================== LOADING OVERLAY ================== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-overlay[hidden] {
  display: none;
}

.spinner-ring {
  width: 52px;
  height: 52px;
  border: 4px solid #f0e8df;
  border-top-color: #ea580c;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 0 auto 18px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1c1410;
}

/* ================== UTILITY ================== */
.pre-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #9e8e7e;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .nav-mobile.open + main .hero {
    padding-top: 60px;
  }

  .float-tag-left,
  .float-tag-right {
    display: none;
  }

  .countdown-card {
    padding: 12px;
  }

  .cc-unit {
    min-width: 38px;
  }

  .cc-unit .n {
    font-size: 20px;
  }
}

@media (max-width: 639px) {
  .hide-sm {
    display: none !important;
  }
}

/* Popup - from bhash-landing.html */
.popup-mask {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: fadeIn 0.2s ease;
}
@media (min-width: 640px) {
  .popup-mask {
    align-items: center;
    padding: 24px;
  }
}
.popup-mask.open {
  display: flex !important;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.popup {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media (min-width: 640px) {
  .popup {
    border-radius: 24px;
  }
}
.popup-head {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 24px 24px;
  border-bottom: 1px solid #e5e1da;
}
.popup-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1c1410;
  line-height: 1.25;
}
.popup-head .sub {
  font-size: 13px;
  color: #6b5846;
  margin-top: 2px;
}
.popup-close {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1410;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
  margin-right: -8px;
  margin-top: -8px;
  opacity: 0.6;
}
.popup-close:hover {
  background: transparent;
  opacity: 1;
}
.popup-body {
  padding: 20px;
  max-height: calc(85vh - 72px);
  overflow-y: auto;
}
.popup-body .form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.popup-body .form-row + .form-row {
  margin-top: 12px;
}
.popup-body .form-row label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b5846;
}
.popup-body .input {
  width: 100%;
  border: 2px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1c1410;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.popup-body .input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.popup-body .input:focus {
  border-color: #ea580c;
}
.popup-body .mobile-input {
  display: flex;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
  height: 38px;
  box-sizing: border-box;
}
.popup-body .mobile-input:focus-within {
  border-color: #ea580c;
}
.popup-body .mobile-input .prefix {
  padding: 0 14px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1c1410;
}
.popup-body .mobile-input input {
  flex: 1;
  border: 0;
  height: 100%;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1c1410;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.popup-body .form-err {
  font-size: 12px;
  color: #dc2626;
  font-weight: 500;
  margin-top: 4px;
}
.popup-body .form-err:empty {
  display: none;
}
.popup-submit {
  width: 100%;
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  background-color: #ea580c;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.35);
}
.popup-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.popup-body .trust-strip {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #1c1410;
}
.popup-body .trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.popup-body .trust-strip svg {
  color: #c4530b;
}
.popup-fine {
  margin-top: 12px;
  font-size: 10.5px;
  color: #6b5846;
  text-align: center;
  line-height: 1.4;
}

/* Meta Business Partners Badge */
.meta-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 91199px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  color: #c4530b;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  box-shadow: 0 2px 10px -4px rgba(234, 88, 12, 0.15);
}
.meta-partner-badge img {
  height: 16px;
  width: auto;
}

/* Benefits Left List */
.benefits-left {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  list-style: none;
  padding: 0;
}
.benefits-left li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1c1410;
}
