/* ---------- Brand tokens ---------- */
:root {
  --brand-cta: #ea580c;
  --brand-cta-hover: #c4530b;
  --brand-cta-soft: #ffedd5;
  --brand-cta-tint: #fff7ed;
  --brand-ink: #1c1410;
  --brand-ink-2: #3d2e20;
  --brand-muted: #6b5846;
  --brand-faint: #9e8e7e;
  --brand-bg: #faf7f4;
  --brand-bg-2: #fffbf7;
  --brand-surface: #ffffff;
  --brand-beige: #f0ebe3;
  --brand-border: #e5e1da;
  --brand-border-soft: #f0ebe3;
  --brand-yellow: #fbbf24;
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;
  --wa-bubble-out: #dcf8c6;
  --wa-bubble-in: #ffffff;
  --wa-chat-bg: #ece5dd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--brand-bg);
  color: var(--brand-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  line-height: 1.5;
}
h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.025em;
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 91199px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 14px 26px;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--brand-cta);
  color: #fff;
  box-shadow:
    0 10px 24px -10px rgba(234, 88, 12, 0.55),
    0 2px 6px -2px rgba(234, 88, 12, 0.4);
}
.btn-primary:hover {
  background: var(--brand-cta-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-ink);
  border: 2px solid rgba(28, 20, 16, 0.15);
  padding: 12px 22px;
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--brand-ink);
  background: #fff;
}
.btn-ghost {
  background: #fff;
  color: var(--brand-ink);
  border: 1.5px solid var(--brand-border);
  padding: 12px 20px;
  font-weight: 600;
}
.btn-ghost:hover {
  border-color: var(--brand-ink);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f0ea;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-ink);
  transition: color 0.15s;
}
.nav a:hover {
  color: var(--brand-cta);
}
.nav .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
}
.menu-btn {
  display: inline-grid;
  place-items: center;
  padding: 8px;
  color: #3d2e20;
}
.mobile-menu {
  display: none;
  padding: 16px 20px;
  border-top: 1px solid #f3f0ea;
  background: #fff;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 8px 0;
  font-weight: 600;
  color: var(--brand-ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-bg);
}
.bg-radial-orange {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 10%,
      rgba(234, 88, 12, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(234, 88, 12, 0.1),
      transparent 60%
    );
}
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 20, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 20, 16, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 30%,
    black 30%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 30%,
    black 30%,
    transparent 75%
  );
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 40px 20px 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 91199px;
  background: var(--brand-cta-soft);
  color: var(--brand-cta-hover);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(234, 88, 12, 0.15);
}
.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cta);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--brand-ink);
  text-align: center;
}
.hero h1 .hl {
  background: var(--brand-cta-soft);
  color: var(--brand-cta-hover);
  padding: 0 8px;
  border-radius: 6px;
}
.hero h1 .price {
  color: var(--brand-cta);
  white-space: nowrap;
}
.hero-left {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.benefits {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--brand-ink);
}
.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: var(--brand-ink);
}
.check {
  width: 20px;
  height: 20px;
  border-radius: 91199px;
  background: var(--brand-cta-soft);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.check svg {
  width: 12px;
  height: 12px;
}
.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;
}

.trust-rating {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
}
.stars {
  display: flex;
}
.stars svg {
  width: 14px;
  height: 14px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.cta-row .btn {
  width: 100%;
}

.urgency-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--brand-border);
  font-size: 11px;
  width: 260px;
}
.countdown .label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-muted);
}
.countdown .seg {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.countdown .seg b {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 18px;
  text-align: center;
}
.countdown .seg span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-muted);
}
.countdown .sep {
  color: var(--brand-faint);
  font-size: 12px;
}
.activity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--brand-border);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--brand-ink);
}
.live-dot {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
}
.live-dot::before,
.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 91199px;
  background: var(--brand-cta);
}
.live-dot::before {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.6;
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ---------- Phone mockup ---------- */
.phone-wrap {
  display: flex;
  justify-content: center;
}
.phone {
  width: 290px;
  height: 580px;
  background: #1c1410;
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(28, 20, 16, 0.45),
    0 10px 30px -10px rgba(234, 88, 12, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #1c1410;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--wa-chat-bg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: var(--wa-green-dark);
  color: #fff;
  padding: 28px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  height: 36px;
  width: 36px;
  border-radius: 91199px;
  background: var(--brand-cta);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.wa-name {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wa-status {
  font-size: 10px;
  opacity: 0.8;
}
.wa-bg {
  flex: 1;
  padding: 14px 10px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--wa-chat-bg);
  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:
    22px 22px,
    14px 14px;
  background-position:
    0 0,
    7px 7px;
}
.day-pill {
  align-self: center;
  background: rgba(255, 255, 255, 0.7);
  color: #5a6b73;
  font-size: 9.5px;
  padding: 4px 10px;
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
.bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  position: relative;
  color: #0b141a;
  opacity: 0;
  animation: pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
}
.bubble.in {
  background: var(--wa-bubble-in);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.bubble.out {
  background: var(--wa-bubble-out);
  align-self: flex-end;
  border-top-right-radius: 4px;
}
.bubble .time {
  display: block;
  text-align: right;
  font-size: 9px;
  color: #5a6b73;
  margin-top: 4px;
}
.bubble .title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}
.typing {
  background: var(--wa-bubble-in);
  align-self: flex-start;
  border-top-left-radius: 4px;
  max-width: 88%;
  padding: 10px 16px;
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 5px;
  align-items: center;
  height: 36px;
  opacity: 0;
  animation: pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
}
.typing.out {
  background: var(--wa-bubble-out);
  align-self: flex-end;
  border-top-left-radius: 14px;
  border-top-right-radius: 4px;
}
.typing span {
  width: 6px;
  height: 6px;
  background: #a1a1aa;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing span:nth-child(1) {
  animation-delay: -0.32s;
}
.typing span:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes typingBounce {
  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.wa-input {
  background: #f0f2f5;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.wa-input-box {
  flex: 1;
  background: #fff;
  border-radius: 91199px;
  height: 28px;
  padding: 0 12px;
  font-size: 10px;
  color: #8a99a3;
  display: flex;
  align-items: center;
}
.wa-send {
  height: 28px;
  width: 28px;
  border-radius: 91199px;
  background: var(--wa-green);
  display: grid;
  place-items: center;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: #fff;
  border-top: 1px solid #f3f0ea;
  border-bottom: 1px solid #f3f0ea;
  padding: 24px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--brand-bg);
  border: 1px solid #f3f0ea;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-ink);
  min-height: 64px;
}
.trust-item svg {
  color: var(--brand-cta-hover);
  flex-shrink: 0;
}

/* ---------- Our Clients ---------- */
.clients-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--brand-border);
}
.strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand-faint);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
  margin-top: 24px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 48px;
  transition: all 0.3s ease;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------- Sections ---------- */
.section {
  padding: 56px 0;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-cta-hover);
}
.section-title {
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--brand-ink);
}

/* Pricing */
.pricing-card {
  position: relative;
  max-width: 720px;
  margin: 32px auto 0;
  background: #fff;
  border: 2px solid var(--brand-cta);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 30px 60px -20px rgba(234, 88, 12, 0.18),
    0 10px 24px -8px rgba(28, 20, 16, 0.08);
}
.ribbon {
  position: absolute;
  top: -14px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 91199px;
}
.ribbon svg {
  color: var(--brand-yellow);
}
.pricing-overline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-muted);
}
.pricing-name {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-ink);
}
.pricing-price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-price b {
  font-size: 52px;
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: -0.03em;
}
.pricing-price span {
  font-size: 14px;
  color: var(--brand-muted);
  font-weight: 500;
}
.pricing-sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--brand-muted);
}
.pricing-divider {
  height: 1px;
  background: #f3f0ea;
  margin: 28px 0;
}
.includes {
  display: grid;
  gap: 12px;
}
.includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--brand-ink);
}
.includes .check {
  margin-top: 1px;
}
.pricing-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-cta .btn {
  flex: 1;
}
.pricing-fine {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--brand-muted);
  text-align: center;
}

/* Features */
.features-grid {
  margin-top: 40px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.feature-card {
  background: var(--brand-bg);
  border: 1px solid #f3f0ea;
  border-radius: 16px;
  padding: 24px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    border-color 0.15s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.08);
  border-color: rgba(234, 88, 12, 0.3);
}
.feature-icon {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: var(--brand-cta-soft);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--brand-cta-hover);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-ink);
}
.feature-card p {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--brand-muted);
  line-height: 1.6;
}

/* Industries marquee */
.industries {
  background: var(--brand-bg);
  overflow: hidden;
}
.marquee-wrap {
  position: relative;
}
.marquee {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 8px 0;
  animation: marquee 28s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ind-card {
  min-width: 280px;
  background: #fff;
  border: 1px solid #f3f0ea;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.ind-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-cta-hover);
}
.ind-msg {
  margin-top: 12px;
  max-width: 90%;
  background: var(--wa-bubble-out);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  color: #0b141a;
}
.ind-time {
  margin-top: 8px;
  text-align: right;
  font-size: 10.5px;
  color: var(--brand-muted);
}

/* How it works */
.how {
  background: var(--brand-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--brand-cta);
  opacity: 0.1;
  filter: blur(40px);
  pointer-events: none;
}
.how-grid {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.how-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
}
.how-step .num {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-cta);
  letter-spacing: -0.04em;
}
.how-step h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.how-step p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.how-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}
.how-cta .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-cta);
}
.how-cta .title {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.how-cta .title .price {
  color: var(--brand-cta);
}

/* Testimonials */
.testi-grid {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.testi-card {
  background: var(--brand-bg);
  border: 1px solid #f3f0ea;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.testi-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-head img {
  height: 44px;
  width: 44px;
  border-radius: 91199px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.testi-head .name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-ink);
}
.testi-head .role {
  font-size: 12px;
  color: var(--brand-muted);
}
.testi-quote {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-ink);
}
.testi-stats {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f3f0ea;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.testi-stats div .v {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-cta-hover);
}
.testi-stats div .k {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-muted);
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid #f3f0ea;
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-ink);
  text-align: left;
}
.faq-q .chev {
  transition: transform 0.3s;
  color: var(--brand-muted);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
  color: var(--brand-cta-hover);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 320px;
}
.faq-a p {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: var(--brand-muted);
  line-height: 1.6;
}

/* Final CTA */
.final-cta-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f3f0ea;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(234, 88, 12, 0.18),
    0 10px 24px -8px rgba(28, 20, 16, 0.08);
}
.final-cta-price {
  margin-top: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.final-cta-price b {
  font-size: 56px;
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: -0.03em;
}
.final-cta-price span {
  font-size: 14px;
  color: var(--brand-muted);
}
.final-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  font-size: 12px;
  color: var(--brand-muted);
}
.final-cta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Footer */
.footer {
  background: var(--brand-ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 112px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.4);
}
.footer-logo img {
  height: 36px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--brand-cta);
}
.footer-bot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: space-between;
}

/* Sticky CTA */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 251, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid #e5e1da;
  padding: 12px 16px;
  box-shadow: 0 -8px 24px -12px rgba(28, 20, 16, 0.18);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.3s;
}
.sticky-cta.show {
  transform: none;
  pointer-events: auto;
}
.sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.sticky-price {
  flex-shrink: 0;
}
.sticky-price .label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-muted);
  line-height: 1;
}
.sticky-price .v {
  margin-top: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-ink);
  line-height: 1;
  letter-spacing: -0.025em;
}
.sticky-div {
  width: 1px;
  height: 36px;
  background: var(--brand-border);
}
.sticky-cta .btn {
  flex: 1;
  padding: 14px 20px;
}

/* WhatsApp widget */
.wa-widget {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 40;
  height: 56px;
  width: 56px;
  border-radius: 91199px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px -8px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.15s,
    bottom 0.3s;
}
.wa-widget:hover {
  transform: scale(1.05);
}
.wa-widget:active {
  transform: scale(0.95);
}
.wa-widget.lift {
  bottom: 86px;
}

/* Popup */
.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;
}
.popup-mask.open {
  display: flex;
}
@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;
}
.popup-head {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--brand-border-soft);
}
.popup-head h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-ink);
  line-height: 1.25;
}
.popup-head .sub {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 2px;
}
.popup-close {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ink);
  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 20px 20px 20px;
  max-height: calc(85vh - 72px);
  overflow-y: auto;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-row + .form-row {
  margin-top: 12px;
}
.form-row label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-muted);
}
.input {
  width: 100%;
  border: 2px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-ink);
  outline: none;
  transition: border-color 0.15s;
}
.input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.input:focus {
  border-color: var(--brand-cta);
}
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5846' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.mobile-input {
  display: flex;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.mobile-input:focus-within {
  border-color: var(--brand-cta);
}
.mobile-input .prefix {
  padding: 0 14px;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-ink);
}
.mobile-input input {
  flex: 1;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-ink);
  outline: none;
}
.form-err {
  font-size: 12px;
  color: #dc2626;
  font-weight: 500;
  margin-top: 4px;
}
.popup-submit {
  width: 100%;
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 16px;
}
.popup-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-ink);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.trust-strip svg {
  color: var(--brand-cta-hover);
}
.popup-fine {
  margin-top: 12px;
  font-size: 10.5px;
  color: var(--brand-muted);
  text-align: center;
  line-height: 1.4;
}
.success {
  text-align: center;
  padding: 16px 0;
}
.success .check-big {
  height: 56px;
  width: 56px;
  border-radius: 91199px;
  background: var(--brand-cta-soft);
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: var(--brand-cta-hover);
}
.success h4 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-ink);
}
.success p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.6;
}
.success .pill {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 91199px;
  background: var(--brand-cta-soft);
  border: 1px solid rgba(234, 88, 12, 0.15);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-ink);
}
.success .pill svg {
  color: var(--brand-cta-hover);
}

/* @media (max-width: 615px) { */
.benefits {
  flex-direction: column;
  align-items: center;
}
/* } */
@media (min-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 4vw;
  }
  .hero h1 {
    font-size: 54px;
    text-align: left;
  }
  .hero-left {
    text-align: left;
    max-width: none;
    margin: 0;
  }
  .benefits {
    flex-direction: column;
    align-items: start;
  }
  .benefits li {
    justify-content: flex-start;
  }
  .trust-rating {
    justify-content: flex-start;
  }
  .cta-row {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }
  .cta-row .btn {
    width: auto;
  }
  .urgency-row {
    justify-content: flex-start;
  }

  .phone {
    width: 320px;
    height: 640px;
  }
  .trust-item {
    font-size: 13px;
  }
  .section-title {
    font-size: 36px;
  }
  .pricing-card {
    padding: 40px;
  }
  .includes {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .pricing-cta {
    flex-direction: row;
  }
  .pricing-fine {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .features-grid,
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 850px) {
  .how-cta {
    flex-direction: row;
  }

  .final-cta-card {
    padding: 56px 40px;
  }
  .footer-bot {
    flex-direction: row;
  }
  .wa-widget {
    right: 24px;
  }

  .popup-mask {
    align-items: center;
    padding: 24px;
  }
  .popup {
    border-radius: 24px;
  }
}

/* ================== GLOBAL MODALS (EXIT & TOAST) ================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#buyModal,
#talkModal {
  align-items: flex-end;
  padding: 0;
}

.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 slideUpBottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.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.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* 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;
  border: none;
  background: none;
}

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

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

.btn-dark:hover {
  background: #3d2e20;
}
.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(13px, 4.5vw, 22px);
  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-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;
  width: 100%;
}

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

.modal-meta .claims-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.modal-meta .countdown-card,
.modal-meta .claims-card {
  display: flex;
  align-items: center;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 8px 10px;
}

/* Force complete styling for mobile checkout form */
#buyModal .modal-head {
  padding: 24px 24px 14px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-bottom: 1px solid #f0ebe3;
}

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

#buyModal .countdown-card {
  flex: 1.1;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 10px 14px;
}

#buyModal .cc-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

#buyModal .cc-head svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

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

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

#buyModal .cc-unit .n {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1c1410;
  line-height: 1;
}

#buyModal .cc-unit .l {
  font-size: 10px;
  color: #6b5846;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

#buyModal .cc-sep {
  font-size: 18px;
  font-weight: 800;
  color: #c4baa9;
  margin-top: 2px;
}

#buyModal .claims-card {
  flex: 1;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#buyModal .claims-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(21, 128, 61, 0.15);
  color: #15803d;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#buyModal .claims-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}

#buyModal .claims-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #15803d;
  line-height: 1;
}

#buyModal .claims-label {
  font-size: 11px;
  color: #166534;
  font-weight: 600;
  margin-top: 2px;
}

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

#buyModal .modal-form label {
  display: flex;
  flex-direction: column;
  font-size: 11.5px;
  font-weight: 600;
  color: #3d2e20;
  gap: 6px;
  font-family: "Outfit", sans-serif;
}

#buyModal .modal-form input,
#buyModal .modal-form select {
  padding: 9px 12px;
  border: 2px solid #e5e1da;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #1c1410;
  font-weight: 500;
  width: 100%;
  font-family: inherit;
}

#buyModal .form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* On slightly larger mobile screens, put phone/email side-by-side */
@media (min-width: 400px) {
  #buyModal .form-row {
    flex-direction: row;
  }
  #buyModal .form-row > label {
    flex: 1;
  }
}

/* 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: 461px) {
  .popup-mask {
    align-items: center;
    padding: 24px;
  }
  #buyModal,
  #talkModal {
    align-items: center;
    padding: 0;
  }
  .modal-panel {
    border-radius: 18px !important;
  }
}
.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: 461px) {
  .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: 24px 20px 20px 20px;
  border-bottom: 1px solid #e5e1da;
}
.popup-head h3 {
  font-size: 15px;
  font-weight: 800;
  color: #1c1410;
  line-height: 1.25;
}
.popup-head .sub {
  font-size: 12px;
  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 20px 20px 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: 6px;
  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: 6px;
  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;
  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 {
  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;
}

/* --- COPIED FROM STYLE.CSS FOR DESKTOP MODALS ON MOBILE --- */
.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%;
}

.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 18px 0px 0px;
  max-width: 460px;
  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(13px, 4.5vw, 22px);
  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;
}

.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(13px, 4.5vw, 22px);
  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);
}

/* --- UTILITIES FROM STYLE.CSS --- */
.btn-cta {
  background: #ea580c;
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(234, 88, 12, 0.45);
}
.btn-block {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
}
.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;
}
.t-success {
  color: #15803d;
}
.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.btn-cta:hover {
  background: #f97316;
  transform: translateY(-1px);
}
.rail-tag .icon {
  width: 11px;
  height: 11px;
}

/* 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);
  margin-bottom: 10px;
}
.meta-partner-badge img {
  height: 16px;
  width: auto;
}

/* Hide offer popup on mobile view */
#exitModal {
  display: none !important;
}
