*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C3E50;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.bs-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================== HERO ===================== */

.bs-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #5EEAD4 0%, #14B8A6 40%, #0F766E 80%, #0A5A54 100%);
  padding-bottom: 80px;
}

.bs-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bs-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.bs-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L0,60 C120,20 240,5 360,20 C480,35 600,65 720,55 C840,45 960,10 1080,18 C1200,26 1320,55 1440,48 L1440,100 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
}

.bs-hero-wave-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 1;
  pointer-events: none;
}

.bs-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 72px;
  width: 100%;
}

.bs-hero-inner--grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

.bs-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.1s forwards;
}

.bs-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: bsPulse 2s ease-in-out infinite;
}

@keyframes bsPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.bs-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.2s forwards;
}

.bs-hero-title .bs-gradient {
  background: linear-gradient(135deg, #fff 0%, #ffe0cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.bs-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.3s forwards;
}

.bs-hero-desc--sub {
  font-size: 14px;
  animation-delay: 0.35s;
}

.bs-hero-desc strong {
  color: #fff;
  font-weight: 600;
}

.bs-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bs-hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: bsParticleFloat 8s ease-in-out infinite;
}

.bs-hero-particles span:nth-child(1) { left: 10%; top: 30%; animation-delay: 0s; animation-duration: 7s; width: 8px; height: 8px; }
.bs-hero-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; }
.bs-hero-particles span:nth-child(3) { left: 55%; top: 20%; animation-delay: 3s; animation-duration: 8s; width: 10px; height: 10px; background: rgba(255, 255, 255, 0.15); }
.bs-hero-particles span:nth-child(4) { left: 75%; top: 50%; animation-delay: 2s; animation-duration: 10s; width: 5px; height: 5px; }
.bs-hero-particles span:nth-child(5) { left: 90%; top: 35%; animation-delay: 4s; animation-duration: 7.5s; }

@keyframes bsParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
  50% { transform: translateY(-35px) translateX(-5px); opacity: 0.4; }
  75% { transform: translateY(-15px) translateX(15px); opacity: 0.7; }
}

.bs-hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.4s forwards;
}

.bs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
}

.bs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 118, 110, 0.4);
}

.bs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.bs-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.bs-hero-right {
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.45s forwards;
}

.bs-price-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow:
    0 12px 48px rgba(0,0,0,0.15),
    0 4px 12px rgba(0,0,0,0.06);
  border: none;
  text-align: center;
  animation: bsFloat 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes bsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.bs-price-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #14B8A6;
  margin-bottom: 4px;
}

.bs-price-card-amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e293b;
  line-height: 1;
}

.bs-price-card-amount span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #94a3b8;
}

.bs-price-card-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 20px;
}

.bs-price-card-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 0 -30px 20px;
}

.bs-price-card-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bs-price-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

.bs-price-card-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

.bs-price-card-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.35);
}

.bs-price-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(15, 118, 110, 0.5);
}

.bs-price-card-note {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 12px;
}

@keyframes bsFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== DELIVERABLES ===================== */

.bs-deliverables {
  padding: 80px 0;
}

.bs-deliverables-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.bs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #14B8A6;
  margin-bottom: 12px;
}

.bs-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bs-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bs-deliverable-card {
  position: relative;
  padding: 28px 24px 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.bs-deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: rgba(20, 184, 166, 0.25);
}

.bs-deliverable-card:hover .bs-deliverable-icon {
  background: rgba(20, 184, 166, 0.15);
  transform: scale(1.08);
}

.bs-deliverable-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.bs-deliverable-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.3;
}

.bs-deliverable-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #64748b;
}

.bs-deliverable-tag {
  position: absolute;
  bottom: 14px;
  left: 24px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #14B8A6;
  opacity: 0.55;
}

/* ===================== ANIMATED COMPARISON ===================== */

.bs-compare {
  position: relative;
  padding: 100px 0;
  background: #2C3E50;
  overflow: hidden;
}

.bs-compare-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.bs-compare-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.bs-compare-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-compare .bs-section-label {
  color: rgba(20, 184, 166, 0.9);
}

.bs-compare .bs-section-title {
  color: #fff;
}

.bs-compare .bs-section-header p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.6;
}

.bs-compare-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
}

.bs-compare-col {
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.bs-compare-col--without {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.bs-compare-col--with {
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.bs-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-compare-vs-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.bs-compare-col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.bs-compare-col--without .bs-compare-col-label {
  color: rgba(255,255,255,0.35);
}

.bs-compare-col--with .bs-compare-col-label {
  color: #14B8A6;
}

.bs-compare-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.bs-compare-col--without h3 {
  color: rgba(255,255,255,0.5);
}

.bs-compare-col--with h3 {
  color: #fff;
}

.bs-compare-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.bs-compare-metric-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bs-compare-col--without .bs-compare-metric-label {
  color: rgba(255,255,255,0.3);
}

.bs-compare-col--with .bs-compare-metric-label {
  color: rgba(255,255,255,0.5);
}

.bs-compare-metric-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bs-compare-col--without .bs-compare-metric-value {
  color: rgba(255,255,255,0.25);
}

.bs-compare-col--with .bs-compare-metric-value {
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bs-compare-metric-bar {
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.bs-compare-col--without .bs-compare-metric-bar {
  background: rgba(255,255,255,0.06);
}

.bs-compare-col--with .bs-compare-metric-bar {
  background: rgba(255,255,255,0.08);
}

.bs-compare-metric-bar-fill {
  height: 100%;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bs-compare-metric-bar-fill.animated {
  transform: scaleX(1);
}

.bs-compare-col--without .bs-compare-metric-bar-fill {
  background: rgba(255,255,255,0.12);
}

.bs-compare-col--with .bs-compare-metric-bar-fill {
  background: linear-gradient(90deg, #14B8A6, #0F766E);
}

.bs-compare-metric-sub {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 2px;
}

.bs-compare-col--without .bs-compare-metric-sub {
  color: rgba(255,255,255,0.25);
}

.bs-compare-col--with .bs-compare-metric-sub {
  color: rgba(255,255,255,0.5);
}

.bs-compare-divider {
  height: 1px;
  margin: 4px 0 16px;
}

.bs-compare-col--without .bs-compare-divider {
  background: rgba(255,255,255,0.06);
}

.bs-compare-col--with .bs-compare-divider {
  background: rgba(255,132,75,0.15);
}

.bs-compare-mini-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-compare-mini-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.bs-compare-col--without .bs-compare-mini-stat {
  color: rgba(255,255,255,0.3);
}

.bs-compare-col--with .bs-compare-mini-stat {
  color: rgba(255,255,255,0.55);
}

.bs-compare-mini-stat strong {
  font-weight: 700;
}

.bs-compare-col--with .bs-compare-mini-stat strong {
  color: #14B8A6;
}

.bs-compare-verdict {
  text-align: center;
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bs-compare-verdict p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.bs-compare-verdict strong {
  color: #14B8A6;
  font-weight: 700;
}

/* ===================== WHY IT WORKS ===================== */

.bs-why {
  padding: 80px 0;
}

.bs-why-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.bs-why-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.bs-why-left > p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 28px;
}

.bs-why-factors {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bs-why-factor {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.bs-why-factor:last-child {
  border-bottom: none;
}

.bs-why-factor-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.bs-why-factor-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.bs-why-factor-text span {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.bs-why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bs-why-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
}

.bs-why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-color: rgba(20, 184, 166, 0.2);
}

.bs-why-card-number {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.bs-why-card-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 8px;
}

.bs-why-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
}

/* ===================== PRICING ===================== */

.bs-pricing {
  padding: 80px 0;
  background: #f8fafc;
}

.bs-pricing-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.bs-pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bs-pricing-card .bs-pricing-card-btn {
  margin-top: auto;
}

.bs-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}


.bs-pricing-card-header {
  margin-bottom: 20px;
}

.bs-pricing-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
}

.bs-pricing-card-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bs-pricing-card-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
}

.bs-pricing-card-per {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 4px;
}

.bs-pricing-card-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.bs-pricing-card-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.bs-pricing-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

.bs-pricing-card-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.bs-pricing-card-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bs-pricing-card-btn {
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
}

.bs-pricing-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 118, 110, 0.4);
}

.bs-pricing-card-setup {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #FFFBF5;
  border: 1px solid #FDE8D0;
  border-radius: 8px;
}

.bs-pricing-card-setup-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-pricing-card-setup span {
  font-size: 12px;
  color: #92400e;
  line-height: 1.4;
}

.bs-pricing-card-setup strong {
  font-weight: 700;
}

.bs-pricing-card-setup--green {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.bs-pricing-card-setup--green span {
  color: #166534;
}

.bs-pricing-card-setup-icon--green {
  background: rgba(22, 163, 74, 0.12);
}

/* ===================== AUDIENCE ===================== */

.bs-audience {
  padding: 80px 0;
}

.bs-audience-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-audience-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.bs-audience-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 24px;
  border-radius: 14px;
  align-items: start;
}

.bs-audience-block--yes {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.bs-audience-block--no {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.bs-audience-block-header h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bs-audience-block--yes .bs-audience-block-header h3 {
  color: #166534;
}

.bs-audience-block--no .bs-audience-block-header h3 {
  color: #9a3412;
}

.bs-audience-block-header span {
  font-size: 12px;
  line-height: 1.5;
}

.bs-audience-block--yes .bs-audience-block-header span {
  color: #4ade80;
}

.bs-audience-block--no .bs-audience-block-header span {
  color: #fb923c;
}

.bs-audience-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bs-audience-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.bs-audience-block--yes .bs-audience-item-icon {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.bs-audience-block--no .bs-audience-item-icon {
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
}

.bs-audience-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.bs-audience-block--yes .bs-audience-item-text strong {
  color: #166534;
}

.bs-audience-block--no .bs-audience-item-text strong {
  color: #9a3412;
}

.bs-audience-item-text span {
  font-size: 12px;
  line-height: 1.5;
}

.bs-audience-block--yes .bs-audience-item-text span {
  color: #15803d;
}

.bs-audience-block--no .bs-audience-item-text span {
  color: #c2410c;
}

/* ===================== PROCESS ===================== */

.bs-process {
  position: relative;
  padding: 100px 0;
  background: #2C3E50;
  overflow: hidden;
}

.bs-process-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.bs-process-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.bs-process-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.bs-process .bs-section-label {
  color: rgba(20, 184, 166, 0.9);
}

.bs-process-left .bs-section-header {
  text-align: left;
  margin-bottom: 16px;
}

.bs-process-left .bs-section-title {
  color: #fff;
}

.bs-process-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.bs-process-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.bs-process-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.bs-process-highlight-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 32px;
}

.bs-process-highlight span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.bs-process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.bs-process-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,132,75,0.3);
  transform: translateY(-2px);
}

.bs-process-num {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  min-width: 28px;
}

.bs-process-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.3;
}

.bs-process-step span {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

/* ===================== INACTION ===================== */

.bs-inaction {
  padding: 80px 0;
}

.bs-inaction-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-inaction-top {
  text-align: center;
  margin-bottom: 36px;
}

.bs-inaction-top h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.bs-inaction-top p {
  font-size: 15px;
  color: #64748b;
}

.bs-inaction-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bs-inaction-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, #fecaca, #fca5a5, #f87171);
}

.bs-inaction-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.bs-inaction-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fca5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bs-inaction-dot svg {
  width: 14px;
  height: 14px;
  color: #ef4444;
}

.bs-inaction-step-text {
  padding-top: 4px;
}

.bs-inaction-step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.bs-inaction-step-text span {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.bs-inaction-closing {
  text-align: center;
  margin-top: 32px;
  padding: 20px 24px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
}

.bs-inaction-closing p {
  font-size: 14px;
  line-height: 1.6;
  color: #7f1d1d;
}

.bs-inaction-closing strong {
  font-weight: 700;
}

/* ===================== CTA ===================== */

.bs-cta {
  padding: 80px 0;
  background: #f8fafc;
}

.bs-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.bs-cta-inner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bs-cta-inner p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.7;
}

.bs-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ===================== HERO EXTRAS ===================== */

.bs-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.05s forwards;
}

.bs-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.bs-hero-breadcrumb a:hover {
  color: #fff;
}

.bs-hero-breadcrumb svg {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.bs-hero-breadcrumb span {
  color: #fff;
  font-weight: 600;
}

.bs-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.25s forwards;
}

.bs-hero-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.bs-hero-price-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 340px;
  opacity: 0;
  animation: bsFadeUp 0.6s ease-out 0.4s forwards;
}

.bs-hero-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.bs-hero-price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bs-hero-price-period {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.bs-hero-price-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.bs-hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #0F766E;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.bs-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ===================== SECTIONS ===================== */

.bs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-section {
  padding: 80px 0;
}

.bs-section-alt {
  padding: 80px 0;
  background: #f8fafc;
}

.bs-section-dark {
  position: relative;
  padding: 100px 0;
  background: #1e293b;
  overflow: hidden;
}

.bs-section-warm {
  padding: 80px 0;
  background: #FFFBF5;
}

.bs-section-title-light {
  color: #fff !important;
}

.bs-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #14B8A6;
  margin-bottom: 12px;
}

.bs-prose {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 16px;
}

.bs-prose-light {
  color: rgba(255, 255, 255, 0.65);
}

.bs-inline-link {
  color: #0F766E;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.bs-inline-link:hover {
  text-decoration-color: #0F766E;
}

.bs-inline-link-light {
  color: #5EEAD4;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(94, 234, 212, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.bs-inline-link-light:hover {
  text-decoration-color: #5EEAD4;
}

/* ===================== SPLIT LAYOUT ===================== */

.bs-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.bs-aside-box {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 14px;
  padding: 24px;
}

.bs-aside-box-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.bs-aside-box-icon svg {
  width: 20px;
  height: 20px;
  color: #14B8A6;
}

.bs-aside-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.bs-aside-box p {
  font-size: 13px;
  line-height: 1.65;
  color: #64748b;
}

/* ===================== DELIVERABLES ICONS ===================== */

.bs-deliverable-icon svg {
  width: 22px;
  height: 22px;
  color: #14B8A6;
}

/* ===================== WAVES ===================== */

.bs-wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.bs-wave-top {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.bs-wave-top-alt {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23f8fafc'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.bs-wave-bottom {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.bs-wave-bottom-warm {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23FFFBF5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ===================== COMPARE (HTML version) ===================== */

.bs-section-dark .bs-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bs-compare-self,
.bs-compare-service {
  border-radius: 14px;
  padding: 28px 24px;
}

.bs-compare-self {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bs-compare-service {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.bs-compare-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.bs-compare-self h3 {
  color: rgba(255, 255, 255, 0.75);
}

.bs-compare-service h3 {
  color: #fff;
}

.bs-compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-compare-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.bs-compare-self ul li {
  color: rgba(255, 255, 255, 0.6);
}

.bs-compare-service ul li {
  color: rgba(255, 255, 255, 0.92);
}

.bs-compare-self ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.bs-compare-service ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ===================== PRICING (HTML version) ===================== */

.bs-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}

.bs-pricing-card {
  position: relative;
}

.bs-pricing-card-featured {
  border-color: #14B8A6;
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.12);
}

.bs-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.bs-pricing-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.bs-pricing-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bs-pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
}

.bs-pricing-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 4px;
  margin-bottom: 20px;
}

.bs-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.bs-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}

.bs-pricing-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.bs-pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
  margin-top: auto;
}

.bs-pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 118, 110, 0.4);
}

.bs-pricing-cta-outline {
  background: transparent;
  border: 2px solid #14B8A6;
  color: #14B8A6;
  box-shadow: none;
}

.bs-pricing-cta-outline:hover {
  background: rgba(20, 184, 166, 0.08);
  box-shadow: none;
}

/* ===================== FIT / AUDIENCE ===================== */

.bs-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.bs-fit-col {
  border-radius: 14px;
  padding: 28px 24px;
}

.bs-fit-yes {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.bs-fit-no {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.bs-fit-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bs-fit-yes h3 {
  color: #166534;
}

.bs-fit-no h3 {
  color: #9a3412;
}

.bs-fit-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-fit-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.bs-fit-yes ul li {
  color: #15803d;
}

.bs-fit-no ul li {
  color: #c2410c;
}

.bs-fit-yes ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.bs-fit-no ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea580c' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ===================== STEPS ===================== */

.bs-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.bs-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.bs-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-2px);
}

.bs-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.bs-step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bs-step-body p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== ROUTE CARDS ===================== */

.bs-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-routes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.bs-route-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.bs-route-card:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.bs-route-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-route-card-icon svg {
  width: 20px;
  height: 20px;
  color: #14B8A6;
}

.bs-route-card-body {
  flex: 1;
}

.bs-route-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #14B8A6;
  margin-bottom: 4px;
}

.bs-route-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.bs-route-card-body p {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.bs-route-card-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.bs-route-card:hover .bs-route-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.bs-route-card-arrow svg {
  width: 20px;
  height: 20px;
  color: #14B8A6;
}

/* ===================== CLOSING ===================== */

.bs-closing {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.bs-closing p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5568;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .bs-hero-inner {
    padding: 140px 24px 60px;
  }

  .bs-hero-inner--grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bs-hero-right {
    max-width: 380px;
  }

  .bs-hero-title { font-size: 2.2rem; }

  .bs-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bs-deliverables-grid { grid-template-columns: 1fr 1fr; }

  .bs-compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bs-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .bs-fit-grid {
    grid-template-columns: 1fr;
  }

  .bs-why-content {
    grid-template-columns: 1fr;
  }

  .bs-process-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bs-audience-block {
    grid-template-columns: 1fr;
  }

  .bs-pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .bs-route-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .bs-route-card-arrow { display: none; }
}

@media (max-width: 600px) {
  .bs-hero-inner { padding: 120px 20px 48px; }
  .bs-hero-title { font-size: 1.8rem; }
  .bs-hero-desc { font-size: 14px; }
  .bs-hero-price-amount { font-size: 2.2rem; }
  .bs-hero-btns { flex-direction: column; }
  .bs-hero-btns a { text-align: center; }

  .bs-deliverables-grid { grid-template-columns: 1fr; }

  .bs-inner,
  .bs-article { padding: 0 20px; }

  .bs-section,
  .bs-section-alt,
  .bs-section-warm { padding: 56px 0; }

  .bs-section-dark { padding: 72px 0; }

  .bs-section-title { font-size: 1.5rem; }

  .bs-price-card { padding: 24px 20px; }
  .bs-price-card-amount { font-size: 2.8rem; }

  .bs-pricing-amount { font-size: 2rem; }

  .bs-compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bs-compare-vs { display: none; }
}

/* ===================== NEW PRICING CARDS ===================== */

.bs-pricing-cards-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.bs-pricing-card-new {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
}

.bs-pricing-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.bs-pricing-card-new--featured {
  border-color: #14B8A6;
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.14);
}

.bs-pricing-card-new-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.bs-pricing-card-new-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.bs-pricing-card-new-tag {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bs-pricing-card-new-price {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}

.bs-pricing-card-new-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0;
}

.bs-pricing-card-new-setup {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  color: #92400E;
}

.bs-pricing-card-new-setup svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #EA580C;
}

.bs-pricing-card-new-setup--green {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #166534;
}

.bs-pricing-card-new-setup--green svg {
  color: #16A34A;
}

.bs-pricing-card-new-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.bs-pricing-card-new-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.bs-pricing-card-new-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.bs-pricing-card-new-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
  margin-top: auto;
}

.bs-pricing-card-new-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 118, 110, 0.45);
}

.bs-pricing-card-new-cta--outline {
  background: transparent;
  border: 2px solid #14B8A6;
  color: #14B8A6;
  box-shadow: none;
}

.bs-pricing-card-new-cta--outline:hover {
  background: rgba(20, 184, 166, 0.06);
  box-shadow: none;
}

/* ===================== PRICING BREAKDOWN TABLE ===================== */

.bs-pricing-breakdown {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 8px;
}

.bs-pricing-breakdown-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  padding: 18px 28px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.bs-pricing-breakdown-grid {
  display: flex;
  flex-direction: column;
}

.bs-pricing-breakdown-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 0;
  align-items: center;
  padding: 13px 28px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13.5px;
  color: #374151;
  transition: background 0.15s;
}

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

.bs-pricing-breakdown-row:hover {
  background: #f1f5f9;
}

.bs-pricing-breakdown-row--header {
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 28px;
}

.bs-pricing-breakdown-row--header:hover {
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
}

.bs-pricing-breakdown-row--header span:first-child {
  color: rgba(255,255,255,0.85);
}

.bs-pricing-breakdown-row--header span:not(:first-child) {
  color: #fff;
  text-align: center;
}

.bs-pricing-breakdown-row span:not(:first-child) {
  text-align: center;
  font-weight: 500;
}

.bs-breakdown-included {
  color: #15803d !important;
  font-weight: 600 !important;
}

.bs-breakdown-included::before {
  content: '✓ ';
  font-weight: 700;
}

.bs-breakdown-free {
  color: #15803d !important;
  font-weight: 600 !important;
}

.bs-breakdown-once {
  color: #92400e !important;
  font-weight: 700 !important;
}

.bs-pricing-breakdown-note {
  font-size: 13px;
  color: #64748b;
  padding: 16px 28px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bs-pricing-cards-new {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .bs-pricing-breakdown-row {
    grid-template-columns: 1fr 120px 120px;
    padding: 11px 20px;
  }

  .bs-pricing-breakdown-title,
  .bs-pricing-breakdown-note {
    padding: 14px 20px;
  }

  .bs-pricing-breakdown-row--header {
    padding: 11px 20px;
  }
}

@media (max-width: 600px) {
  .bs-pricing-breakdown-row {
    grid-template-columns: 1fr 90px 90px;
    padding: 10px 16px;
    font-size: 12px;
    gap: 4px;
  }

  .bs-pricing-breakdown-title,
  .bs-pricing-breakdown-note {
    padding: 12px 16px;
  }

  .bs-pricing-breakdown-row--header {
    padding: 10px 16px;
  }
}
