:root {
  --bg: #eef6f4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-alt: rgba(240, 249, 247, 0.92);
  --text: #102132;
  --muted: #5c6d79;
  --line: rgba(108, 139, 156, 0.18);
  --line-strong: rgba(42, 95, 118, 0.24);
  --brand: #0f8b8d;
  --brand-hover: #0a7274;
  --brand-soft: rgba(15, 139, 141, 0.12);
  --brand-strong: #0c5f78;
  --accent: #f4a261;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(16, 33, 50, 0.08);
  --shadow-strong: 0 24px 60px rgba(9, 37, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 139, 141, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(12, 95, 120, 0.14), transparent 26%),
    linear-gradient(180deg, #f7fcfb 0%, var(--bg) 44%, #e6f1ef 100%);
  line-height: 1.5;
}

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

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 252, 251, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  color: #12314d;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.24rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.topbar-store {
  gap: 0.85rem;
}

.topbar-store .logo {
  flex: 0 0 auto;
}

.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 460px;
  margin-inline: auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.search-bar input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0.68rem 1rem;
  font-size: 0.92rem;
  background: transparent;
  font-family: inherit;
}

.search-bar button {
  border: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.68rem 1rem;
  cursor: pointer;
  font-family: inherit;
}

.search-bar button:hover {
  background: var(--brand-hover);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 650;
  font-size: 0.86rem;
  cursor: pointer;
  font-family: inherit;
}

.mobile-drawer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 0 1rem;
}

.mobile-drawer-inner {
  display: grid;
  gap: 0.55rem;
}

.mobile-drawer-inner a {
  color: #12314d;
  font-weight: 600;
  padding: 0.35rem 0;
}

.mobile-search {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.35rem;
}

.mobile-search input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0.65rem 0.9rem;
  font-family: inherit;
}

.mobile-search button {
  border: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.cat-bar {
  background: #0b2a34;
  border-bottom: 1px solid #123b47;
}

.cat-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  overflow-x: auto;
  min-height: 44px;
  scrollbar-width: none;
}

.cat-bar-inner::-webkit-scrollbar {
  display: none;
}

.cat-bar a {
  flex: 0 0 auto;
  color: #cdeeea;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.7rem 0.75rem;
  white-space: nowrap;
}

.cat-bar a:hover {
  color: #fff;
}

.cat-bar-home {
  font-weight: 700;
  color: #fff !important;
}

.nav {
  display: flex;
  gap: 1.15rem;
}

.nav a {
  color: #254257;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 139, 141, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brand-hover) 0%, #084d68 100%);
  box-shadow: 0 16px 34px rgba(15, 139, 141, 0.28);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line-strong);
  color: #254257;
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(15, 139, 141, 0.35);
  color: var(--brand-strong);
  box-shadow: none;
}

.hero {
  padding: 3.4rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  border: 1px solid rgba(15, 139, 141, 0.14);
}

h1 {
  margin: 0;
  max-width: 16ch;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  margin: 0.9rem 0 1.35rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.hero-panel {
  align-self: start;
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(233, 246, 244, 0.9) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0 0 0.7rem;
  font-size: 1.06rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #434d62;
}

.hero-panel li + li {
  margin-top: 0.43rem;
}

section {
  padding: 2rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.01em;
}

.section-head a,
.section-head span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-card {
  border-radius: 18px;
  padding: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  color: #2a3449;
  box-shadow: 0 10px 24px rgba(16, 33, 50, 0.05);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 139, 141, 0.24);
  box-shadow: var(--shadow-strong);
  background: rgba(255, 255, 255, 0.94);
}

.feature-card h3 {
  margin: 0.78rem 0 0.25rem;
  min-height: 2.7rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #25314a;
}

.feature-media {
  height: 116px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-media span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.brand-steam {
  background: linear-gradient(145deg, #0f1d32 0%, #1c5d88 100%);
  color: #ffffff;
}
.brand-steam span { background: rgba(255, 255, 255, 0.24); }

.brand-psn {
  background: linear-gradient(145deg, #1b66e0 0%, #123f9b 100%);
  padding: 18px;
}
.brand-psn span { background: rgba(255, 255, 255, 0.2); }

.brand-xbox {
  background: linear-gradient(145deg, #0f7a2d 0%, #5acb52 100%);
  padding: 20px;
}
.brand-xbox span { background: rgba(255, 255, 255, 0.22); }

.brand-roblox {
  background: linear-gradient(145deg, #0f1117 0%, #2d3040 100%);
  color: #ffffff;
}
.brand-roblox span { background: rgba(255, 255, 255, 0.2); }

.brand-gplay {
  background: linear-gradient(145deg, #173347 0%, #285a68 100%);
  padding: 20px;
}
.brand-gplay span { background: rgba(255, 255, 255, 0.22); }

.brand-apple {
  background:
    linear-gradient(160deg, #f3f4f6 0%, #d1d5db 38%, #9ca3af 62%, #e5e7eb 100%);
  padding: 22px;
  color: #1f2937;
}
.brand-apple span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #1f2937;
}

.brand-netflix {
  background: linear-gradient(145deg, #5b0000 0%, #b20710 58%, #e50914 100%);
  color: #ffffff;
  padding: 24px;
}
.brand-netflix span {
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.brand-paypal {
  background: linear-gradient(145deg, #0a4f96 0%, #11adc3 100%);
  padding: 18px;
}
.brand-paypal span { background: rgba(255, 255, 255, 0.2); }

.benefits {
  padding: 1.55rem 0 1.8rem;
}

.benefits-head {
  margin-bottom: 1.05rem;
}

.benefits-panel {
  background:
    radial-gradient(circle at top right, rgba(15, 139, 141, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 247, 0.92) 100%);
  border: 1px solid rgba(15, 139, 141, 0.16);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  backdrop-filter: blur(12px);
}

.benefit-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.how-it-works {
  padding-top: 1.3rem;
}

.how-head {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(15, 139, 141, 0.2);
  border-radius: 20px 20px 0 0;
  padding: 1.25rem 1rem 3.2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(228, 245, 243, 0.86) 0%, rgba(239, 248, 246, 0.4) 100%);
}

.how-head h2 {
  margin: 0;
}

.how-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
  padding-inline: 0.8rem;
}

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 139, 141, 0.16);
  border-radius: var(--radius);
  padding: 2.1rem 0.9rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-label {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #f3fbfa;
  border: 1px solid rgba(15, 139, 141, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.categories {
  padding-top: 1.2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.76rem;
}

.category-card {
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.95rem 0.9rem;
  color: #202b42;
  font-weight: 500;
  min-height: 74px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 139, 141, 0.24);
  background: rgba(255, 255, 255, 0.94);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  backdrop-filter: blur(12px);
}

.trust-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1.07rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.faq {
  padding-top: 1.15rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.82rem 0.92rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.faq details + details {
  margin-top: 0.64rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 0.52rem 0 0;
  color: var(--muted);
}

.seo-home {
  padding: 1.2rem 0 0.4rem;
}

.seo-home .container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 249, 247, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.seo-home h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.seo-home h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.08rem;
}

.seo-home p {
  margin: 0.5rem 0;
  color: var(--muted);
}

.seo-home ul {
  margin: 0.4rem 0 0.7rem 1.2rem;
  color: var(--muted);
}

.seo-home ol {
  margin: 0.4rem 0 0.7rem 1.2rem;
  color: var(--muted);
}

.seo-home li + li {
  margin-top: 0.35rem;
}

.seo-home a {
  color: var(--brand-strong);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.3rem;
  background: transparent;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  color: rgba(245, 251, 250, 0.78);
  font-size: 0.92rem;
  background: rgba(16, 33, 50, 0.92);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-strong);
}

.footer a {
  color: #8fe7dd;
  font-weight: 600;
}

@media (max-width: 1060px) {
  .feature-grid,
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .topbar-store .nav-desktop,
  .topbar-store > .btn-small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .search-bar {
    display: none;
  }

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

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

@media (max-width: 560px) {
  .feature-grid,
  .cards-grid,
  .trust-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-head {
    padding-bottom: 2.4rem;
  }

  .btn-small {
    display: none;
  }

  .container {
    width: min(1160px, calc(100% - 1.3rem));
  }
}


/* —— Storefront additions (homepage + bulk) —— */
.logo span {
  color: var(--accent);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.icon-cats { padding: 1.1rem 0 0.4rem; }
.icon-cats-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 0.7rem;
  box-shadow: var(--shadow);
}
.icon-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 650;
  color: #1f2937;
  padding: 0.35rem;
  border-radius: 12px;
}
.icon-cat:hover {
  background: var(--brand-soft);
  color: var(--brand-strong);
}
.icon-cat-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(15,139,141,0.14), rgba(12,95,120,0.12));
  color: var(--brand-strong);
}
.icon-cat-badge svg { width: 22px; height: 22px; }
.icon-cat-badge.icon-cat-img {
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px;
}
.icon-cat-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}
.section-sub {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-block { margin-top: 1.35rem; }
.brand-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.brand-block-head h3 {
  margin: 0;
  font-size: 1.12rem;
}
.brand-block-head span {
  color: var(--muted);
  font-size: 0.85rem;
}

.category-card.has-logo {
  gap: 0.65rem;
}
.category-card-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
}

.feature-card.has-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feature-card.has-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(15,139,141,0.28);
}
.feature-card.has-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.feature-card.has-logo h3 {
  margin: 0;
  font-size: 0.95rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-desktop a {
  color: var(--text);
  font-weight: 650;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--brand);
}

.bulk-hero { padding: 1.8rem 0 1.2rem; }
.bulk-hero h1 { max-width: 18ch; }
.bulk-hero-grid { display: grid; gap: 1rem; }
.bulk-values,
.bulk-audience,
.bulk-steps { padding: 1.8rem 0; }
.bulk-value-grid,
.bulk-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.bulk-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  counter-reset: bulkstep;
}
.bulk-step-list li {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  position: relative;
}
.bulk-step-list li::before {
  counter-increment: bulkstep;
  content: counter(bulkstep);
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.bulk-step-list h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.bulk-step-list p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.bulk-cta { padding: 0.4rem 0 2rem; }
.bulk-cta-panel {
  background: linear-gradient(135deg, rgba(15,139,141,0.12), rgba(12,95,120,0.16));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  text-align: center;
}
.bulk-cta-panel h2 { margin: 0 0 0.45rem; }
.bulk-cta-panel p { margin: 0 0 1rem; color: var(--muted); }

.benefit-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
}
.benefit-card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

@media (max-width: 900px) {
  .icon-cats-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bulk-value-grid,
  .bulk-audience-grid,
  .bulk-step-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .icon-cats-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


.legal-wrap {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  max-width: 720px;
}
.legal-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.legal-copy a {
  color: var(--brand-strong);
  font-weight: 650;
}
