/* ── PRICING PAGE STYLES ─────────────────────────────────────────────────────
   Matches BlueSweep landing page design language:
   --midnight #0B1D33 | --aqua #00D8FF | --cream #F5F0E8
   ───────────────────────────────────────────────────────────────────────────*/

/* ── NAV ── */
.pricing-nav {
  background: var(--midnight);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: rgba(255,255,255,0.9); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  background: var(--aqua);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  background: #00c0e8;
  box-shadow: 0 4px 16px rgba(0,216,255,0.2);
}

/* ── HERO ── */
.pricing-hero {
  background: var(--midnight);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 216, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 216, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 24px;
}

.pricing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.pricing-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--cream-mid);
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
  padding: 36px 40px;
}

.why-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--midnight);
  color: var(--aqua);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.why-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── TIERS SECTION ── */
.tiers-section {
  padding: 80px 40px;
  background: var(--cream);
}

.tiers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-mid);
}

/* Tier card base */
.tier-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  transition: background 0.2s;
}

.tier-card--main {
  background: var(--midnight);
  position: relative;
}

.tier-card--main .tier-name,
.tier-card--main .price-amount {
  color: #fff;
}

.tier-card--main .tier-note {
  color: rgba(255,255,255,0.55);
}

.tier-card--main .feature {
  color: rgba(255,255,255,0.75);
}

.tier-card--main .feature-icon {
  background: rgba(0,216,255,0.12);
  border-color: rgba(0,216,255,0.2);
}

.tier-card--main .feature-icon svg {
  stroke: var(--aqua);
}

.tier-card--main .tier-qualifier {
  color: rgba(255,255,255,0.4);
}

/* Tier header */
.tier-header {
  margin-bottom: 32px;
}

.tier-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price-from {
  font-size: 14px;
  color: var(--warm-gray);
}

.tier-card--main .price-from {
  color: rgba(255,255,255,0.45);
}

.price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--midnight);
  line-height: 1;
}

.price-amount small {
  font-size: 18px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.tier-note {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* Tier features */
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--aqua-dim);
  border: 1px solid rgba(0,216,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feature-icon svg {
  stroke: var(--aqua);
}

/* Tier footer */
.tier-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: var(--aqua);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, box-shadow 0.15s;
  text-align: center;
}

.tier-cta:hover {
  background: #00c0e8;
  box-shadow: 0 4px 20px rgba(0,216,255,0.25);
}

.tier-cta--secondary {
  background: transparent;
  border: 1.5px solid var(--aqua);
  color: var(--aqua);
}

.tier-cta--secondary:hover {
  background: rgba(0,216,255,0.06);
}

.tier-card--main .tier-cta {
  background: var(--aqua);
  color: var(--midnight);
}

.tier-card--main .tier-cta:hover {
  background: #00c0e8;
  box-shadow: 0 4px 20px rgba(0,216,255,0.25);
}

.tier-qualifier {
  font-size: 12px;
  color: var(--warm-gray);
  text-align: center;
  line-height: 1.4;
}

/* ── ADD-ONS SECTION ── */
.addons-section {
  padding: 80px 40px;
  background: var(--cream-mid);
  border-top: 1px solid var(--cream-mid);
}

.addons-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.addons-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 12px;
}

.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--midnight);
  line-height: 1.15;
  margin-bottom: 16px;
}

.addons-sub {
  font-size: 16px;
  color: var(--warm-gray);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-mid);
}

.addon-card {
  background: var(--cream);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}

.addon-card:hover {
  background: #fff;
}

.addon-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--aqua-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
}

.addon-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.addon-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--midnight);
}

.addon-range {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--aqua);
  line-height: 1.2;
}

.addon-desc {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.55;
  margin-top: 4px;
}

/* ── HOW PRICING WORKS ── */
.how-section {
  padding: 80px 40px;
  background: var(--midnight);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.how-left .section-headline {
  color: #fff;
}

.how-body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}

.how-factors {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-factor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.how-factor:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.factor-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--aqua);
}

.factor-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* Quote CTA card */
.quote-cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 40px 36px;
}

.quote-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  background: rgba(0,216,255,0.1);
  border: 1px solid rgba(0,216,255,0.2);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.quote-cta-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.quote-cta-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 28px;
}

.quote-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--aqua);
  color: var(--midnight);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, box-shadow 0.15s;
  margin-bottom: 12px;
}

.quote-cta-btn:hover {
  background: #00c0e8;
  box-shadow: 0 4px 20px rgba(0,216,255,0.25);
}

.quote-cta-footnote {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── FOOTER ── */
.pricing-footer {
  background: #070F1C;
  padding: 32px 40px;
}

.pricing-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tiers-inner { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-right { order: -1; }
  .pricing-footer-inner { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 600px) {
  .pricing-nav { padding: 0 24px; }
  .pricing-hero { padding: 72px 24px 56px; }
  .tiers-section { padding: 56px 24px; }
  .tier-card { padding: 32px 24px; }
  .addons-section { padding: 56px 24px; }
  .addon-grid { grid-template-columns: 1fr; }
  .how-section { padding: 56px 24px; }
  .how-factor { grid-template-columns: 1fr; gap: 6px; }
  .pricing-footer { padding: 24px; }
  .footer-links { display: none; }
}