/* Feature & marketing page components */

.hero {
  padding: 72px 0 40px;
}

.hero .badge-pill {
  margin-bottom: 22px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--bb-text-secondary);
  margin: 0 0 30px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__actions--stores {
  gap: 16px;
}

.hero__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bb-text-secondary);
  max-width: 520px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__checks li::before {
  content: "✦";
  color: var(--bb-primary);
}

.hero__visual {
  position: relative;
}

.hero__visual-frame {
  background: var(--bb-bg-secondary);
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 60px -28px rgba(2, 81, 199, 0.28);
  min-height: 400px;
  display: grid;
  place-items: center;
}

.hero__float-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
}

.hero__float-card span:last-child {
  font-size: 11px;
  font-weight: 400;
  color: var(--bb-text-secondary);
}

.hero__visual-placeholder {
  color: var(--bb-text-secondary);
  font-size: 14px;
  text-align: center;
  padding: 2rem;
}

.btn--lg {
  padding: 15px 28px;
  font-size: 15.5px;
}

.btn--outline-muted {
  border-color: #cbd5e1;
}

.section {
  padding: 72px 0;
}

.section--compact {
  padding: 24px 0 8px;
}

.section--muted {
  background: linear-gradient(180deg, #f8faff 0%, var(--bb-bg-secondary) 45%, #f6f9ff 100%);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.section__head {
  max-width: 640px;
  margin-bottom: 42px;
}

.section__head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section__title-sm {
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.trust-strip__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bb-text-secondary);
  margin-right: 6px;
}

.tag-pill {
  background: var(--bb-bg-secondary);
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

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

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

.section-note {
  font-size: 13.5px;
  color: var(--bb-text-secondary);
  margin: 16px 2px 0;
  line-height: 1.55;
}

.section-note a {
  color: var(--bb-primary);
  font-weight: 500;
  text-decoration: none;
}

.section-note a:hover {
  text-decoration: underline;
}

.step-card {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  padding: 26px 22px;
}

.step-card__num {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--bb-primary-light);
  color: var(--bb-primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--bb-text-secondary);
  margin: 0;
  line-height: 1.55;
}

.step-card--accent {
  background: var(--bb-primary);
  border-color: var(--bb-primary);
  color: #fff;
  box-shadow: 0 20px 40px -20px rgba(2, 81, 199, 0.5);
}

.step-card--accent .step-card__num {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.step-card--accent p {
  color: rgba(255, 255, 255, 0.85);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 26px;
}

.feature-card h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 7px;
}

.feature-card p {
  font-size: 14px;
  color: var(--bb-text-secondary);
  margin: 0;
  line-height: 1.55;
}

.feature-card__icon {
  margin-bottom: 14px;
  color: var(--bb-primary);
}

.privacy-block {
  background: linear-gradient(145deg, #fff 0%, #f8faff 55%, #fff 100%);
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.privacy-block h2 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 18px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.privacy-mini {
  background: var(--bb-bg-secondary);
  border-radius: 16px;
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}

.pipeline > div:first-child {
  flex: 1 1 280px;
  min-width: 0;
}

.pipeline__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pipeline__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
}

.pipeline__step-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--bb-primary-light);
  color: var(--bb-primary);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 13px;
}

.pipeline__visual {
  flex: 1 1 280px;
  min-width: 0;
  background: var(--bb-bg-secondary);
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--bb-text-secondary);
  font-size: 14px;
}

.related-links {
  padding-bottom: 72px;
}

.related-links__title,
.related-links h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--bb-text-secondary);
  margin: 0 0 18px;
}

.related-links__list,
.related-links__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-links__list a,
.related-links__nav a {
  text-decoration: none;
  color: var(--bb-text);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  padding: 10px 18px;
  transition: border-color 0.15s, color 0.15s;
  background: #fff;
}

.related-links__nav .tag-pill {
  background: #fff;
}

.related-links__list a:hover,
.related-links__nav a:hover {
  border-color: var(--bb-primary);
  color: var(--bb-primary);
}

.compare-table {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.22);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table thead {
  background: var(--bb-primary);
  color: #fff;
}

.compare-table thead th {
  padding: 16px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 13.5px;
}

.compare-table tbody th,
.compare-table tbody td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--bb-border);
  vertical-align: top;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--bb-text);
}

.compare-table tbody td {
  color: var(--bb-text-secondary);
}

.compare-table tbody a {
  color: var(--bb-primary);
  font-weight: 500;
  text-decoration: none;
}

.compare-table tbody a:hover {
  text-decoration: underline;
}

.compare-table code {
  font-size: 12.5px;
  background: var(--bb-bg-secondary);
  padding: 2px 6px;
  border-radius: 4px;
}

.compare-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bb-primary);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.compare-table__head > div {
  padding: 16px 22px;
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--bb-border);
  font-size: 14px;
  align-items: center;
}

.compare-table__row:last-child {
  border-bottom: none;
}

.compare-table__row > div {
  padding: 18px 22px;
}

.compare-table__row > div:first-child {
  font-weight: 600;
}

/* Pricing — compare plans table (horizontal scroll on mobile) */
.pricing-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pricing-compare-table {
  min-width: 560px;
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.pricing-compare-head,
.pricing-compare-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.4fr) repeat(3, minmax(90px, 1fr));
  align-items: center;
  font-size: 14px;
}

.pricing-compare-head {
  background: var(--bb-primary);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.pricing-compare-head > div {
  padding: 16px 12px;
  text-align: center;
}

.pricing-compare-head > div:first-child {
  padding-left: 22px;
  padding-right: 22px;
}

.pricing-compare-row {
  border-bottom: 1px solid var(--bb-border);
}

.pricing-compare-row:last-child {
  border-bottom: none;
}

.pricing-compare-row__label {
  padding: 15px 22px;
  font-weight: 600;
}

.pricing-compare-row__val {
  padding: 15px 12px;
  text-align: center;
  color: var(--bb-text-secondary);
  white-space: nowrap;
}

.pricing-compare-row__val--emph {
  color: var(--bb-text);
  font-weight: 500;
}

@media (max-width: 768px) {
  #compare {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #compare > div:first-child {
    padding-left: var(--bb-page-gutter);
    padding-right: var(--bb-page-gutter);
  }

  .pricing-compare-scroll {
    padding-left: var(--bb-page-gutter);
    padding-right: var(--bb-page-gutter);
    padding-bottom: 4px;
  }
}

/* Pricing — "On every plan" feature cards */
.pricing-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-platform-card {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 26px;
}

.pricing-platform-card__title {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 7px;
  line-height: 1.3;
}

.pricing-platform-card__desc {
  font-size: 14px;
  color: var(--bb-text-secondary);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .pricing-platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pricing-platform-card {
    padding: 16px 14px;
  }

  .pricing-platform-card__title {
    font-size: 13.5px;
    margin-bottom: 5px;
  }

  .pricing-platform-card__desc {
    font-size: 12px;
    line-height: 1.45;
  }
}

/* Pricing — add-ons list */
.pricing-addons-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px var(--bb-page-gutter);
}

.pricing-addons-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
}

.pricing-addons-intro {
  text-align: left;
}

.pricing-addons-intro h2 {
  margin-bottom: 12px !important;
}

.pricing-addons-intro p {
  margin: 0 !important;
  text-align: left;
}

.pricing-addons-visual {
  width: 100%;
  min-height: 220px;
  margin-top: 28px;
  border-radius: 18px;
  border: 1px dashed var(--bb-border);
  background: linear-gradient(145deg, var(--bb-primary-light), #fff);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--bb-text-secondary);
  line-height: 1.5;
}

.pricing-addons-footnote {
  font-size: 12.5px;
  color: #9ca3af;
  margin: 16px 0 0;
}

.pricing-addons-list {
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  overflow: hidden;
}

.pricing-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--bb-border);
}

.pricing-addon-row:last-child {
  border-bottom: none;
}

.pricing-addon-row__name {
  font-size: 16px;
  font-weight: 600;
}

.pricing-addon-row__note {
  font-size: 13px;
  color: var(--bb-text-secondary);
}

.pricing-addon-row__price {
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-addons-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Pricing — "Good to know" info cards */
.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pricing-info-card {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 18px;
  padding: 24px;
}

.pricing-info-card__title {
  font-size: 15px;
}

.pricing-info-card__desc {
  font-size: 13.5px;
  color: var(--bb-text-secondary);
  margin: 6px 0 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .pricing-info-grid {
    gap: 8px;
  }

  .pricing-info-card {
    padding: 12px;
  }

  .pricing-info-card__title {
    font-size: 13.5px;
  }

  .pricing-info-card__desc {
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.45;
  }
}

.text-muted {
  color: var(--bb-text-secondary);
}

.text-link {
  color: var(--bb-primary);
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

/* Features hub */
.hub-hero {
  padding: 80px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f6f9ff 70%, #fff 100%);
}

.hub-hero h1 {
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding-bottom: 80px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.hub-card:hover {
  border-color: var(--bb-primary);
  box-shadow: 0 16px 40px -24px rgba(2, 81, 199, 0.35);
  transform: translateY(-2px);
}

.hub-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--bb-text);
}

.hub-card p {
  font-size: 14px;
  color: var(--bb-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.hub-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bb-primary);
  margin-bottom: 12px;
}

.hub-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(2, 81, 199, 0.1);
  color: var(--bb-primary);
  margin-bottom: 16px;
  transition: background 0.15s, transform 0.15s;
}

.hub-card:hover .hub-card__icon {
  background: rgba(2, 81, 199, 0.16);
  transform: scale(1.04);
}

.hub-card__icon svg {
  display: block;
}

/* ---- Winding step flow (how-it-works) ---- */

.flow-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 56px 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 0 8px;
  min-height: 420px;
}

.flow-path__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.flow-path__curve-track {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 3;
  stroke-linecap: round;
}

.flow-path__curve-flow {
  fill: none;
  stroke: #0251c7;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 14 10;
  opacity: 0.55;
  animation: flow-path-dash 14s linear infinite;
}

@keyframes flow-path-dash {
  to {
    stroke-dashoffset: -120;
  }
}

.flow-path__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.flow-path__step--1 {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.flow-path__step--2 {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  margin-top: 56px;
}

.flow-path__step--3 {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  margin-top: -8px;
}

.flow-path__node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--bb-primary);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--bb-primary);
  box-shadow:
    0 0 0 8px rgba(2, 81, 199, 0.08),
    0 12px 28px -8px rgba(2, 81, 199, 0.28);
  flex-shrink: 0;
}

.flow-path__step--accent .flow-path__node {
  background: var(--bb-primary);
  color: #fff;
  border-color: var(--bb-primary);
  box-shadow:
    0 0 0 8px rgba(2, 81, 199, 0.14),
    0 16px 36px -10px rgba(2, 81, 199, 0.55);
}

.flow-path__card {
  width: 100%;
  max-width: 280px;
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  padding: 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flow-path__step:hover .flow-path__card {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -22px rgba(2, 81, 199, 0.35);
}

.flow-path__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--bb-text);
}

.flow-path__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bb-text-secondary);
}

.flow-path__step--accent .flow-path__card {
  background: linear-gradient(145deg, #0251c7, #0241a3);
  border-color: transparent;
  box-shadow: 0 20px 40px -20px rgba(2, 81, 199, 0.5);
}

.flow-path__step--accent .flow-path__card h3 {
  color: #fff;
}

.flow-path__step--accent .flow-path__card p {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  .flow-path {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    min-height: 0;
    padding: 8px 0 0 52px;
  }

  .flow-path__curve {
    display: none;
  }

  .flow-path::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 28px;
    bottom: 28px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #e5e7eb 0%, #0251c7 52%, #e5e7eb 100%);
    opacity: 0.85;
  }

  .flow-path__step--1,
  .flow-path__step--2,
  .flow-path__step--3 {
    grid-column: 1;
    grid-row: auto;
    margin: 0 0 36px;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .flow-path__step--2 {
    margin-top: 0;
  }

  .flow-path__step--3 {
    margin-bottom: 0;
    margin-top: 0;
  }

  .flow-path__node {
    width: 52px;
    height: 52px;
    font-size: 17px;
    margin-left: -52px;
  }

  .flow-path__card {
    max-width: none;
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-path__curve-flow {
    animation: none;
  }

  .flow-path__step:hover .flow-path__card {
    transform: none;
  }
}

/* Pricing */
.pricing-page-hero {
  max-width: var(--bb-content-max);
  margin: 0 auto;
  padding: 16px var(--bb-page-gutter) 28px;
  text-align: center;
}

.pricing-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 81, 199, 0.1);
  color: #0251c7;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 auto 22px;
}

.pricing-page-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0251c7;
  animation: bbpulse 2s infinite ease-in-out;
}

.pricing-page-hero h1 {
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 auto;
  text-wrap: balance;
  max-width: 720px;
}

.pricing-page-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #6b7280;
  margin: 18px auto 0;
  max-width: 600px;
}

.pricing-plans-section {
  max-width: var(--bb-content-max);
  margin: 0 auto;
  padding: 0 var(--bb-page-gutter) 24px;
}

.pricing-yearly-effective {
  color: #0251c7;
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
}

.pricing-save-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 98px;
  height: 98px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(7deg);
}

.pricing-save-badge__burst {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.pricing-save-badge__label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(124, 45, 18, 0.65), 0 2px 6px rgba(124, 45, 18, 0.35);
  padding-top: 1px;
}

.pricing-save-badge__label span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-save-badge__label strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 3px;
  line-height: 1;
}

@media (max-width: 768px) {
  .pricing-save-badge {
    top: -16px;
    right: -10px;
    width: 82px;
    height: 82px;
  }

  .pricing-save-badge__label span {
    font-size: 9px;
  }

  .pricing-save-badge__label strong {
    font-size: 17px;
  }
}

.pricing-after-plans {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px var(--bb-page-gutter) 48px;
}

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

.pricing-trust-grid > div {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.pricing-trust-grid > div:hover {
  background: var(--bb-primary) !important;
  border-color: var(--bb-primary) !important;
  box-shadow: 0 14px 30px -16px rgba(2, 81, 199, 0.55);
}

.pricing-trust-grid > div:hover > div > div:first-child {
  color: #fff !important;
}

.pricing-trust-grid > div:hover > div > div[style*="color:#6B7280"],
.pricing-trust-grid > div:hover > div > div[style*="color: #6B7280"] {
  color: rgba(255, 255, 255, 0.88) !important;
}

.pricing-trust-grid > div:hover > span[style*="background:rgba(2,81,199,0.10)"],
.pricing-trust-grid > div:hover > span[style*="background: rgba(2, 81, 199, 0.10)"] {
  background: rgba(255, 255, 255, 0.16) !important;
}

.pricing-trust-grid > div:hover svg {
  stroke: #fff !important;
}

@media (max-width: 768px) {
  .pricing-trust-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-hero {
  padding: 80px 32px 36px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 18px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 26px;
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.plan-card--featured {
  border: 2px solid var(--bb-primary);
  box-shadow: 0 30px 56px -30px rgba(2, 81, 199, 0.5);
  position: relative;
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 34px;
  background: var(--bb-primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
}

.plan-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--bb-text-secondary);
  margin-bottom: 8px;
}

.plan-card--featured .plan-card__name {
  color: var(--bb-primary);
}

.plan-card__price {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-card__note {
  font-size: 13.5px;
  color: var(--bb-text-secondary);
  margin-bottom: 24px;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--bb-border);
  padding-top: 22px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.plan-card__features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
}

.plan-card__features li.is-no {
  color: #9ca3af;
}

.plan-card__features li.is-no::before {
  content: "✕";
  color: #9ca3af;
}

.plan-card__period {
  font-size: 16px;
  font-weight: 500;
  color: var(--bb-text-secondary);
}

.plan-card__save {
  color: var(--bb-primary);
  font-weight: 600;
}

.plan-card__name--accent {
  color: var(--bb-primary);
}

a.plan-card__cta {
  display: block;
  text-decoration: none;
  text-align: center;
  min-height: 48px;
  line-height: 48px;
  padding: 0 20px;
  box-sizing: border-box;
}

.plan-card__cta {
  margin-top: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px;
  border-radius: 14px;
}

.plan-card__cta--muted {
  background: var(--bb-bg-secondary);
  color: var(--bb-text-secondary);
}

.plan-card__cta--outline {
  background: #fff;
  color: var(--bb-primary);
  border: 1.5px solid var(--bb-primary);
}

.plan-card__cta--primary {
  background: var(--bb-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(2, 81, 199, 0.3);
}

@media (max-width: 900px) {
  .hero__grid,
  .privacy-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pipeline {
    flex-direction: column;
    gap: 32px;
  }

  .pipeline > div:first-child,
  .pipeline__visual {
    flex-basis: 100%;
  }

  .hero {
    padding-top: 48px;
  }

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

  .privacy-block {
    padding: 32px 24px;
  }

  .hub-card {
    flex-basis: 100%;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 56px 0;
  }

  .hub-hero {
    padding-top: 56px;
  }
}

/* DC-imported page content (inline styles from design) */
.dc-content {
  font-family: var(--bb-font);
  color: var(--bb-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.dc-content section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.dc-content section[style*="background:#F5F5F7"],
.dc-content section[style*="background: #F5F5F7"] {
  background: linear-gradient(135deg, #0251c7 0%, #0241a3 52%, #013469 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 48px -28px rgba(2, 65, 163, 0.55);
}

.dc-content section[style*="background:#F5F5F7"] h2,
.dc-content section[style*="background: #F5F5F7"] h2 {
  color: #fff !important;
}

.dc-content section[style*="background:#F5F5F7"] [style*="text-transform:uppercase"][style*="color:#0251C7"],
.dc-content section[style*="background:#F5F5F7"] [style*="text-transform:uppercase"][style*="color: #0251C7"],
.dc-content section[style*="background: #F5F5F7"] [style*="text-transform:uppercase"][style*="color:#0251C7"],
.dc-content section[style*="background: #F5F5F7"] [style*="text-transform:uppercase"][style*="color: #0251C7"] {
  color: rgba(255, 255, 255, 0.72) !important;
}

.dc-content section[style*="background:#F5F5F7"] .pricing-platform-card,
.dc-content section[style*="background: #F5F5F7"] .pricing-platform-card,
.dc-content section[style*="background:#F5F5F7"] .pricing-info-card,
.dc-content section[style*="background: #F5F5F7"] .pricing-info-card {
  color: var(--bb-text);
}

.dc-content section[style*="background:#F5F5F7"] .pricing-platform-card__title,
.dc-content section[style*="background: #F5F5F7"] .pricing-platform-card__title,
.dc-content section[style*="background:#F5F5F7"] .pricing-info-card__title,
.dc-content section[style*="background: #F5F5F7"] .pricing-info-card__title,
.dc-content section[style*="background:#F5F5F7"] .pricing-info-card b,
.dc-content section[style*="background: #F5F5F7"] .pricing-info-card b {
  color: var(--bb-text) !important;
}

.dc-content section[style*="background:#F5F5F7"] .pricing-platform-card__desc,
.dc-content section[style*="background: #F5F5F7"] .pricing-platform-card__desc,
.dc-content section[style*="background:#F5F5F7"] .pricing-info-card__desc,
.dc-content section[style*="background: #F5F5F7"] .pricing-info-card__desc {
  color: var(--bb-text-secondary) !important;
}

.dc-content summary::-webkit-details-marker {
  display: none;
}

@keyframes bbpulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.05); }
}

.dc-content .badge-pill__dot,
.dc-content [style*="bbpulse"] {
  animation: bbpulse 2s infinite ease-in-out;
}

@media (max-width: 1024px) {
  .dc-content section,
  .dc-content section > div[style*="max-width"] {
    padding-left: var(--bb-page-gutter) !important;
    padding-right: var(--bb-page-gutter) !important;
  }

  .dc-content section[style*="display:grid"][style*="grid-template-columns:1.05fr"],
  .dc-content section[style*="display:grid"][style*="grid-template-columns: 1.05fr"] {
    display: flex !important;
    flex-direction: column;
    gap: 32px !important;
    align-items: stretch !important;
  }

  .dc-content div[style*="display:grid"][style*="grid-template-columns:repeat(4"],
  .dc-content div[style*="display:grid"][style*="grid-template-columns: repeat(4"] {
    display: flex !important;
    flex-wrap: wrap;
    gap: 16px !important;
  }

  .dc-content div[style*="display:grid"][style*="grid-template-columns:repeat(4"] > div,
  .dc-content div[style*="display:grid"][style*="grid-template-columns: repeat(4"] > div {
    flex: 1 1 calc(50% - 8px);
    min-width: 220px;
  }

  .dc-content div[style*="display:grid"][style*="grid-template-columns:repeat(3"],
  .dc-content div[style*="display:grid"][style*="grid-template-columns: repeat(3"] {
    display: flex !important;
    flex-wrap: wrap;
    gap: 16px !important;
  }

  .dc-content div[style*="display:grid"][style*="grid-template-columns:repeat(3"] > div,
  .dc-content div[style*="display:grid"][style*="grid-template-columns: repeat(3"] > div {
    flex: 1 1 100%;
  }

  .dc-content div[style*="display:flex"][style*="justify-content:center"][style*="flex-wrap:wrap"] {
    gap: 16px !important;
  }
}

@media (max-width: 640px) {
  .dc-content section,
  .dc-content section > div[style*="max-width"] {
    padding-left: var(--bb-page-gutter) !important;
    padding-right: var(--bb-page-gutter) !important;
  }

  .dc-content div[style*="display:grid"][style*="grid-template-columns:repeat(4"] > div,
  .dc-content div[style*="display:grid"][style*="grid-template-columns: repeat(4"] > div {
    flex-basis: 100%;
  }

  .dc-content div[style*="border-radius:32px"][style*="padding:52px"] {
    padding: 36px var(--bb-page-gutter) !important;
  }

  .dc-content section[style*="padding:72px"],
  .dc-content section[style*="padding:80px"],
  .dc-content section[style*="padding:64px"] {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
