@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg-1: #fff9f6;
  --bg-2: #f6f0ff;
  --bg-3: #eef6ff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(112, 93, 124, 0.14);
  --text: #1e2231;
  --muted: #667085;
  --accent: #c65b77;
  --accent-2: #f2a05b;
  --accent-3: #7f86ff;
  --success: #2f8a6b;
  --danger: #b84f67;
  --shadow: 0 22px 60px rgba(55, 38, 72, 0.12);
  --shadow-soft: 0 12px 30px rgba(55, 38, 72, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-1: #1a1620;
    --bg-2: #221a2b;
    --bg-3: #132033;
    --surface: rgba(20, 19, 26, 0.78);
    --surface-strong: rgba(23, 22, 29, 0.94);
    --line: rgba(255, 255, 255, 0.08);
    --text: #f5f2fb;
    --muted: #b3b2c0;
    --accent: #f38aa7;
    --accent-2: #ffbc73;
    --accent-3: #a0a6ff;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.22);
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.b2b-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(920px 520px at 8% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 62%),
    radial-gradient(760px 460px at 96% 8%, color-mix(in srgb, var(--accent-3) 16%, transparent), transparent 60%),
    radial-gradient(900px 420px at 50% 110%, color-mix(in srgb, var(--accent-2) 16%, transparent), transparent 66%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2) 44%, var(--bg-3));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.b2b-page a {
  color: inherit;
  text-decoration: none;
}

body.b2b-page a:hover {
  text-decoration: none;
}

body.b2b-page button,
body.b2b-page input,
body.b2b-page textarea {
  font: inherit;
}

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

.b2b-shell {
  position: relative;
  isolation: isolate;
}

.b2b-shell::before {
  content: "";
  position: fixed;
  inset: -20% auto auto -12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  opacity: 0.65;
  z-index: -1;
}

.b2b-shell::after {
  content: "";
  position: fixed;
  inset: auto -14% -14% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.28), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}

.b2b-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(1.15);
  background: color-mix(in srgb, var(--surface-strong) 74%, transparent);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.topnav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
}

.topnav a:hover {
  color: var(--text);
}

.topnav a:focus-visible,
.button:focus-visible,
.button-link:focus-visible,
.trust-chip:focus-visible,
.faq-item summary:focus-visible,
.consent-row a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-3) 55%, white);
  outline-offset: 3px;
  border-radius: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-2) 72%, var(--accent)));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--accent) 28%, transparent);
}

.button-secondary {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.topbar-cta {
  min-height: 46px;
  padding-inline: 16px;
}

.section {
  padding: 28px 0;
}

.hero-section {
  padding-top: 38px;
}

.hero-grid,
.split-grid,
.request-grid,
.trust-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}

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

.hero-copy,
.hero-visual,
.request-copy,
.form-card,
.callout-card {
  min-width: 0;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(198, 91, 119, 0.12);
  color: color-mix(in srgb, var(--accent) 82%, var(--text));
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-soft {
  background: color-mix(in srgb, var(--accent-3) 12%, transparent);
  color: color-mix(in srgb, var(--accent-3) 78%, var(--text));
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 10.5ch;
  text-wrap: balance;
}

.section-heading h2,
.request-copy h2,
.final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.lead,
.request-copy p,
.trust-copy,
.callout-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.7;
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.point-card,
.step-card,
.info-card,
.mini-feature,
.audience-card,
.trust-card,
.faq-item,
.success-banner,
.error-banner,
.final-cta,
.callout-card,
.form-card {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.point-card {
  padding: 18px;
  min-width: 0;
}

.point-card strong,
.info-card h3,
.mini-feature strong,
.audience-card h3,
.trust-card strong,
.step-card h3,
.callout-card h3 {
  display: block;
  font-size: 1.06rem;
  line-height: 1.25;
  margin-bottom: 8px;
  text-wrap: balance;
}

.point-card span,
.info-card p,
.mini-feature p,
.audience-card p,
.trust-card p,
.step-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

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

.hero-art-shell {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 90%, transparent), color-mix(in srgb, var(--surface) 84%, transparent));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-art-shell::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.34), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  object-position: center 50%;
}

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

.problem-card,
.solution-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.problem-card {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.solution-card {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--surface-strong)), color-mix(in srgb, var(--accent-2) 12%, var(--surface-strong)));
}

.problem-card h3,
.solution-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin: 8px 0 10px;
  text-wrap: balance;
}

.problem-card p,
.solution-card p {
  color: var(--muted);
  line-height: 1.65;
}

.phone-mockup {
  position: relative;
  width: min(100%, 430px);
  margin-left: auto;
  border-radius: 40px;
  padding: 16px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 92%, transparent), color-mix(in srgb, var(--surface) 86%, transparent));
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.phone-notch {
  width: 160px;
  height: 26px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-screen {
  border-radius: 30px;
  padding: 20px;
  background:
    radial-gradient(520px 220px at 10% 0%, rgba(255, 176, 196, 0.26), transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 94%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 556px;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mock-kicker,
.mini-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-title {
  margin-top: 6px;
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.25;
  text-wrap: balance;
}

.qr-badge {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 18px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  box-shadow: 0 16px 28px rgba(127, 134, 255, 0.25);
}

.mock-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.18);
}

.bouquet-card {
  overflow: hidden;
  margin-bottom: 14px;
}

.bouquet-photo {
  min-height: 186px;
  display: grid;
  place-items: end start;
  padding: 16px;
  background:
    radial-gradient(circle at 25% 28%, rgba(255, 229, 235, 0.84), transparent 28%),
    radial-gradient(circle at 76% 22%, rgba(255, 205, 165, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(247, 206, 224, 0.95), rgba(255, 241, 226, 0.92));
}

.bouquet-photo span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
}

.bouquet-meta {
  padding: 16px 18px 18px;
}

.bouquet-meta p {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.mini-card {
  min-width: 0;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.38;
  text-wrap: balance;
}

.mini-card.highlight {
  background: linear-gradient(135deg, rgba(198, 91, 119, 0.18), rgba(247, 198, 110, 0.14));
}

.activation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.activation-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
  text-wrap: balance;
}

.mock-button {
  appearance: none;
  border: 0;
  padding: 12px 16px;
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.floating-card {
  position: absolute;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.35;
  font-size: 0.95rem;
}

.floating-card-top {
  top: 38px;
  right: -8px;
}

.floating-card-bottom {
  left: -12px;
  bottom: 26px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.steps-grid,
.benefits-grid,
.client-grid,
.audience-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.step-card,
.info-card,
.mini-feature,
.audience-card,
.trust-card,
.faq-item {
  padding: 20px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-3) 12%, transparent);
  color: color-mix(in srgb, var(--accent-3) 72%, var(--text));
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.callout-card {
  padding: 26px;
  display: grid;
  gap: 16px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), color-mix(in srgb, var(--success) 45%, var(--accent-3)));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.trust-grid {
  align-items: center;
}

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

.faq-item {
  min-width: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  line-height: 1.4;
  text-wrap: balance;
}

.faq-item summary:hover {
  color: var(--accent);
}

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

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.request-section {
  padding-bottom: 40px;
}

.request-copy {
  padding-top: 12px;
}

.request-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.request-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 78%, transparent);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}

.form-card {
  padding: 24px;
}

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

.b2b-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  min-width: 0;
}

.b2b-form label > span {
  color: var(--text);
}

.b2b-form input[type="text"],
.b2b-form input[type="tel"],
.b2b-form input[type="email"],
.b2b-form textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.b2b-form input::placeholder,
.b2b-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 76%, transparent);
}

.b2b-form input:focus,
.b2b-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

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

.consent-row {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding-top: 6px;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent-row span {
  font-weight: 600;
  line-height: 1.55;
  color: var(--muted);
}

.consent-row a {
  color: color-mix(in srgb, var(--accent) 82%, var(--text));
  font-weight: 700;
}

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

.button-submit {
  width: 100%;
}

.form-hint {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.success-banner,
.error-banner,
.final-cta {
  padding: 24px;
}

.success-banner,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.success-banner h2,
.final-cta h2 {
  margin-top: 10px;
}

.error-banner {
  color: var(--danger);
  font-weight: 700;
}

.final-cta-section {
  padding-top: 8px;
}

.store-section {
  padding-top: 8px;
}

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

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.store-badge-primary {
  color: var(--text);
}

.store-badge-primary:hover {
  transform: translateY(-1px);
}

.store-badge-muted {
  opacity: 0.74;
}

.store-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(198, 91, 119, 0.16), rgba(127, 134, 255, 0.14));
  color: var(--accent);
}

.store-icon svg {
  width: 28px;
  height: 28px;
}

.store-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.store-copy strong {
  font-size: 1.03rem;
  line-height: 1.2;
}

.store-copy span {
  color: var(--muted);
  line-height: 1.4;
}

.b2b-footer {
  padding: 22px 0 34px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-inner a:hover {
  color: var(--text);
}

.section-inner,
.hero-grid,
.split-grid,
.request-grid,
.trust-grid,
.benefits-grid,
.audience-grid,
.steps-grid,
.client-grid,
.faq-grid,
.hero-points,
.trust-cards,
.mock-grid,
.form-row {
  min-width: 0;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .request-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .benefits-grid,
  .audience-grid,
  .faq-grid,
  .trust-cards,
  .problem-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-mockup {
    margin: 0 auto;
  }

  .hero-art-shell {
    margin: 0 auto;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 760px) {
  .section-inner {
    width: min(100%, calc(100% - 24px));
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .topnav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topbar-cta {
    width: 100%;
  }

  .topnav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 24px;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 249, 246, 0.86) 0%, rgba(255, 249, 246, 0.78) 44%, rgba(255, 249, 246, 0.92) 100%),
      url("/static/b2b-hero.jpg") center / cover no-repeat;
    opacity: 1;
    transform: scale(1.03);
    filter: saturate(0.96) contrast(1.02);
    pointer-events: none;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(680px 380px at 50% 0%, rgba(255, 255, 255, 0.34), transparent 70%);
    pointer-events: none;
  }

  .hero-section .section-inner {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    gap: 20px;
  }

  .section {
    padding: 18px 0;
  }

  .hero-actions,
  .trust-bar,
  .request-points,
  .success-banner,
  .final-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .benefits-grid,
  .audience-grid,
  .faq-grid,
  .trust-cards,
  .problem-solution-grid,
  .client-grid,
  .mock-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .trust-chip {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup {
    width: 100%;
    padding: 12px;
    border-radius: 32px;
  }

  .hero-art-shell {
    display: none;
  }

  .phone-screen {
    min-height: auto;
    padding: 16px;
  }

  .activation-card {
    flex-direction: column;
    align-items: stretch;
  }

  .section-heading h2,
  .request-copy h2,
  .final-cta h2 {
    line-height: 1.08;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(2.1rem, 13vw, 3rem);
    max-width: 100%;
  }

  .hero-art-shell {
    padding: 6px;
    border-radius: 24px;
  }

  .hero-art {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    object-position: 78% 48%;
  }

  .mock-title,
  .point-card strong,
  .info-card h3,
  .mini-feature strong,
  .audience-card h3,
  .trust-card strong,
  .step-card h3,
  .callout-card h3 {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .phone-notch {
    width: 124px;
    height: 22px;
  }

  .b2b-form input[type="text"],
  .b2b-form input[type="tel"],
  .b2b-form input[type="email"],
  .b2b-form textarea {
    padding: 13px 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
