/* ============================================
   LastCork Landing Page Styles
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Phone Mockup Teaser --- */
.hero-phones {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  align-items: flex-start;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
}

.phone-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

/* Default: show Android, hide iOS */
.phone-ios { display: none; }
.phone-android { display: block; }

/* Apple devices: show iOS, hide Android */
.phone-mockup.iphone .phone-ios { display: block; }
.phone-mockup.iphone .phone-android { display: none; }

/* Content sits behind the phone frame, visible through transparent screen */
.phone-content {
  position: absolute;
  top: 4.5%;
  left: 7%;
  right: 7%;
  bottom: 4.5%;
  z-index: 1;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 8px;
}

.phone-title {
  color: #e8e8e8;
  font-weight: 600;
  font-size: 0.85rem;
}

.phone-live {
  color: #4ade80;
  font-size: 0.6rem;
  font-weight: 600;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.phone-tabs {
  display: flex;
  gap: 0;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-tab {
  font-size: 0.55rem;
  padding: 4px 10px;
  color: #8892b0;
}

.phone-tab.active {
  color: #C9A84C;
  border-bottom: 2px solid #C9A84C;
}

.phone-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px;
  overflow: hidden;
}

.phone-wine-card {
  background: #16213e;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-card-img-wrap {
  position: relative;
}

.phone-card-img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  background: #0d1117;
  display: block;
  padding: 2px;
}

.phone-card-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(139,0,0,0.3);
  background: linear-gradient(135deg, #0d1117, #16213e);
  height: 60px;
}

.phone-card-timer {
  position: absolute;
  top: 3px;
  left: 3px;
  font-size: 0.38rem;
  font-weight: 600;
  color: #C9A84C;
  background: rgba(0,0,0,0.7);
  padding: 1px 4px;
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
}

.phone-card-body {
  padding: 4px 6px 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.phone-card-actions {
  display: flex;
  gap: 3px;
  margin-top: auto;
  padding-top: 3px;
}

.phone-btn-buy {
  flex: 1;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 600;
  padding: 2px 0;
  background: var(--brand-red);
  color: #fff;
  border-radius: 3px;
}

.phone-btn-detail {
  flex: 1;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 600;
  padding: 2px 0;
  background: rgba(255,255,255,0.06);
  color: #8892b0;
  border-radius: 3px;
}

.phone-retail {
  font-size: 0.4rem;
  color: #8892b0;
  text-decoration: line-through;
}

.phone-card-badge {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  font-size: 0.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.phone-card-name {
  font-size: 0.5rem;
  color: #e8e8e8;
  line-height: 1.3;
  margin-bottom: 2px;
  padding: 4px 6px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.phone-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 0 6px 4px;
}

.phone-price {
  font-size: 0.6rem;
  font-weight: 700;
  color: #C9A84C;
}

.phone-discount {
  font-size: 0.45rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 1px 4px;
  border-radius: 3px;
}

.phone-tab-bar {
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  background: #16213e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.phone-tab-item {
  font-size: 0.45rem;
  color: #8892b0;
}

.phone-tab-item.active {
  color: #C9A84C;
}

/* --- Phone Detail Card (second phone) --- */
.phone-detail-content {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, #1a1a2e 6%);
}

.detail-close-bar {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px 2px;
  font-size: 0.6rem;
  color: #C9A84C;
}

.detail-wine-img {
  position: relative;
  background: radial-gradient(ellipse at center, #16213e, #0d1117);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}

.detail-wine-img img {
  height: 100%;
  object-fit: contain;
  max-width: 80%;
}

.detail-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  font-size: 0.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Vendor overlay on bottle image — top-left */
.detail-vendor-overlay {
  position: absolute;
  top: 30px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 1;
}

.detail-vendor-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.detail-vendor-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: #C9A84C;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  white-space: nowrap;
}

.detail-timer {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.45rem;
  color: #C9A84C;
  background: rgba(0,0,0,0.7);
  padding: 2px 6px;
  border-radius: 3px;
}

.detail-body {
  padding: 8px 12px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.detail-wine-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #e8e8e8;
  font-family: Georgia, serif;
  line-height: 1.3;
  margin-bottom: 6px;
  text-align: center;
}

.detail-wine-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-size: 0.48rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.detail-meta-label {
  color: #8892b0;
}

.detail-meta-value {
  color: #e8e8e8;
  font-weight: 500;
}

.detail-pricing {
  margin: 6px 0;
  padding: 6px 8px;
  background: rgba(139,0,0,0.1);
  border-radius: 6px;
}

.detail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2px 0;
}

.detail-price-label {
  font-size: 0.45rem;
  color: #8892b0;
}

.detail-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #C9A84C;
  font-family: Georgia, serif;
}

.detail-retail-val {
  font-size: 0.48rem;
  color: #e8e8e8;
}

.detail-retail-src {
  font-size: 0.38rem;
  color: #8892b0;
}

.detail-discount-val {
  font-size: 0.5rem;
  font-weight: 600;
  color: #4ade80;
}

.detail-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 5px 0;
}

.detail-rating-label {
  font-size: 0.45rem;
  color: #8892b0;
}

.detail-stars {
  font-size: 0.65rem;
  color: #C9A84C;
  letter-spacing: 2px;
}

.detail-actions {
  margin: 5px 0 4px;
}

.detail-btn-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}

.detail-btn-row-center {
  justify-content: center;
}

.detail-btn-buy {
  flex: 1;
  text-align: center;
  font-size: 0.45rem;
  font-weight: 600;
  padding: 5px 0;
  background: var(--brand-red);
  color: #fff;
  border-radius: 4px;
}

.detail-btn-custom {
  flex: 0 0 50%;
  background: rgba(255,255,255,0.08);
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.3);
}

.detail-secondary {
  display: flex;
  gap: 3px;
  margin: 4px 0;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.detail-btn-sec {
  flex: 1;
  text-align: center;
  font-size: 0.4rem;
  padding: 4px 0;
  background: rgba(255,255,255,0.04);
  color: #8892b0;
  border-radius: 3px;
}

.detail-btn-like {
  color: #4ade80;
}

/* Responsive: stack phones vertically on mobile */
@media (max-width: 640px) {
  .hero-phones {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* --- Section Common --- */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* --- How It Works --- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.how-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(139, 0, 0, 0.15);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.how-card h3 {
  margin-bottom: 0.75rem;
}

.how-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- Sites We Monitor --- */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.site-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.site-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}

.site-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: Georgia, serif;
  padding: 4px;
  background: none !important;
}

.site-card h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
}

.site-card .site-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.site-card .badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

/* --- Why / Savings Section --- */
.savings-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--surface, #16213e);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-card.highlight {
  background: rgba(139, 0, 0, 0.15);
  border-color: rgba(139, 0, 0, 0.4);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Georgia, serif;
  color: #C9A84C;
  margin-bottom: 0.25rem;
}

.stat-card.highlight .stat-value {
  color: #ff6b6b;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted, #8892b0);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-table-wrapper {
  background: var(--surface, #16213e);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.value-title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text, #e8e8e8);
}

.value-table {
  width: 100%;
  border-collapse: collapse;
}

.value-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #8892b0);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.value-table td {
  padding: 1rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.value-table .positive {
  color: #4ade80;
  font-weight: 600;
}

.value-table .highlight-row {
  background: rgba(139, 0, 0, 0.1);
}

.value-table .highlight-row td {
  font-weight: 600;
}

.value-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted, #8892b0);
  font-style: italic;
}

.why-cta {
  text-align: center;
  padding: 2rem 0;
}

.why-hook {
  font-size: 1.5rem;
  color: var(--text, #e8e8e8);
  margin-bottom: 1.5rem;
}

.why-hook strong {
  color: #C9A84C;
}

/* --- Pricing --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-toggle span.active {
  color: var(--text);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-switch.active {
  background: var(--primary);
  border-color: var(--primary);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--text);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.pricing-save {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}

.pricing-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1a2e;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 999px;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin: 1rem 0;
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-features {
  text-align: left;
  margin: 1.5rem 0 2rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

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

.pricing-card.disabled {
  opacity: 0.7;
}

.pricing-card.disabled .btn {
  pointer-events: none;
  opacity: 0.5;
}

/* Keep VIP disabled button compact — prevent long text from inflating card height */
.pricing-card.disabled .btn-block {
  font-size: 0.75rem;
  line-height: 1.3;
  padding: 0.625rem 1rem;
  white-space: normal;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Savings Responsive --- */
@media (max-width: 768px) {
  .savings-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-table-wrapper {
    overflow-x: auto;
    padding: 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .savings-stats {
    grid-template-columns: 1fr;
  }
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero responsive --- */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
  }
  .phone-mockup {
    width: 220px;
    height: 440px;
  }
}

/* Expandable plan info */
.plan-info-toggle {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: #C9A84C;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: center;
}

.plan-info-toggle:hover {
  color: #e0c060;
}

.plan-info-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted, #8892b0);
  padding: 0 0.5rem;
}

.plan-info-detail.open {
  max-height: 200px;
  padding: 0.75rem 0.5rem 0;
}

/* --- Compare Subscriptions Table --- */
.compare-section {
  margin-top: 3rem;
}

.compare-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text, #e8e8e8);
}

.compare-table-wrap {
  overflow-x: auto;
  background: var(--surface, #16213e);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table thead th {
  padding: 1rem 0.75rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text, #e8e8e8);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.compare-table thead th:first-child {
  text-align: left;
  padding-left: 1.25rem;
}

.compare-price-row th {
  padding: 0.25rem 0.75rem 0.75rem !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: var(--text-muted, #8892b0) !important;
  border-bottom: 2px solid rgba(201,168,76,0.2) !important;
}

.compare-feature-col {
  width: 30%;
}

.compare-col-featured {
  background: rgba(201,168,76,0.04);
}

/* Tier-colored feature names */
.tier-freemium td:first-child { color: #8892b0 !important; }
.tier-basic td:first-child { color: #5bc0de !important; }
.tier-premium td:first-child { color: #C9A84C !important; }
.tier-vip td:first-child { color: #c084fc !important; }

.compare-table tbody tr:not(.compare-category-row) td {
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted, #8892b0);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.compare-table tbody tr:not(.compare-category-row) td:first-child {
  text-align: left;
  padding-left: 1.25rem;
  color: var(--text, #e8e8e8);
  font-weight: 500;
}

.compare-table tbody tr:not(.compare-category-row):hover {
  background: rgba(255,255,255,0.02);
}

.cmp-check {
  color: #4ade80;
  font-weight: 700;
  font-size: 1.1em;
}

.compare-footnotes {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--surface, #16213e);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.compare-footnotes p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted, #8892b0);
  margin-bottom: 0.4rem;
}

.compare-footnotes p:last-child {
  margin-bottom: 0;
}

.compare-footnotes strong {
  color: var(--text, #e8e8e8);
}

.compare-footnotes .fn-freemium { color: #8892b0; }
.compare-footnotes .fn-basic { color: #5bc0de; }
.compare-footnotes .fn-premium { color: #C9A84C; }
.compare-footnotes .fn-vip { color: #c084fc; }

@media (max-width: 768px) {
  .compare-table-wrap {
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ── Logged-in user nav pill + current-plan highlight ── */
.nav-user-plan {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.08);
  color: #C9A84C;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-right: 0.5rem;
}
.pricing-card.pricing-card-current {
  border-color: #4ade80;
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.25), 0 0 30px rgba(74, 222, 128, 0.08);
}
.pricing-card.pricing-card-current .pricing-current-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4ade80;
  color: #1a1a2e;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  z-index: 1;
}
.pricing-card-current-btn {
  background: rgba(74, 222, 128, 0.1) !important;
  color: #4ade80 !important;
  border-color: rgba(74, 222, 128, 0.4) !important;
}

/* Reduce gap between Why and Pricing */
#why {
  padding-bottom: 1rem;
}

#pricing {
  padding-top: 1.5rem;
}

/* --- Pricing Footnotes --- */
.pricing-footnotes {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--surface, #16213e);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.pricing-footnotes p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted, #8892b0);
  margin-bottom: 0.5rem;
}

.pricing-footnotes p:last-child {
  margin-bottom: 0;
}

.pricing-footnotes strong {
  color: var(--text, #e8e8e8);
}
