@charset "UTF-8";
/* ── CLEAN UTILITY CLASSES ── */
.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-5 {
  margin-top: 48px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mb-5 {
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--ink-3);
}

.text-muted-sm {
  font-size: 0.8rem;
  color: rgba(26, 26, 46, 0.5);
}

.font-bold {
  font-weight: 700;
}

.max-w-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PRICING HERO (TRUST & WARMTH) ── */
.pricing-hero {
  padding: 100px 28px 0px;
  text-align: center;
  position: relative;
  background: var(--mist);
  background-image: radial-gradient(ellipse at 50% 0%, var(--gold-dim) 0%, transparent 70%);
}

.pricing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.15;
  color: var(--ink);
}

.pricing-hero h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.hero-star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 30px auto;
  max-width: 400px;
}

.hero-star-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-star-divider .stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
}

.pricing-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ── STAT CAROUSEL ── */
.stat-carousel-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  box-shadow: var(--shadow-sm);
  max-width: 480px;
  margin: 24px auto 0;
  position: relative;
  height: 44px;
  overflow: hidden;
}

.stat-item {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  opacity: 0;
  animation: statFadeCycle 10s infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 5s;
}

.stat-item i {
  color: var(--gold);
  margin-right: 6px;
}

@keyframes statFadeCycle {
  0%, 5% {
    opacity: 0;
    transform: translateY(10px);
  }
  10%, 40% {
    opacity: 1;
    transform: translateY(-50%);
  }
  45%, 50% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
  }
}
/* ── CALCULATOR INTEGRATED FOOTER ── */
.calc-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cf-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cf-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
}

.cf-sub {
  font-size: 0.9rem;
  color: var(--ink-3);
}

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.price-desc {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.5;
  min-height: 40px;
  margin-bottom: 24px;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ink);
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 8px;
}

.price-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 1rem;
  color: var(--ink-3);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 8px;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.4;
}

.price-features li i.fa-check {
  color: var(--green);
  margin-top: 3px;
}

.price-features li i.fa-xmark {
  color: var(--border-med);
  margin-top: 3px;
}

/* ── TIER OUTCOMES GRID ── */
.tier-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.outcome-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.outcome-card.starter::before {
  background: var(--blue);
}

.outcome-card.growth::before {
  background: var(--gold);
}

.outcome-card.max::before {
  background: var(--ink);
}

.outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.outcome-card.starter .outcome-icon {
  background: var(--blue-dim);
  color: var(--blue);
}

.outcome-card.growth .outcome-icon {
  background: var(--gold-dim);
  color: var(--gold);
}

.outcome-card.max .outcome-icon {
  background: var(--mist-dark);
  color: var(--ink);
}

.outcome-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.outcome-card p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.outcome-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── SOCIAL PROOF ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.trust-badges {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges i {
  color: var(--gold);
}

/* ── INTERACTIVE CTA TABLE ── */
.interactive-cta-section {
  padding: 80px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.interactive-cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.icta-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.icta-btn {
  width: 100%;
  transition: all 0.3s ease;
}

.icta-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  color: var(--ink-2);
}

.feat-row i {
  color: var(--border-med);
  transition: color 0.3s ease;
}

/* The :has() Magic for Hover Logic */
/* Starter Hover */
.interactive-cta-container:has(.icta-btn[data-tier=starter]:hover) .feat-starter {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--ink);
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

.interactive-cta-container:has(.icta-btn[data-tier=starter]:hover) .feat-starter i {
  color: var(--gold);
}

.interactive-cta-container:has(.icta-btn[data-tier=starter]:hover) .feat-growth,
.interactive-cta-container:has(.icta-btn[data-tier=starter]:hover) .feat-max {
  opacity: 0.4;
  transform: scale(0.98);
}

/* Growth Hover */
.interactive-cta-container:has(.icta-btn[data-tier=growth]:hover) .feat-starter,
.interactive-cta-container:has(.icta-btn[data-tier=growth]:hover) .feat-growth {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--ink);
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

.interactive-cta-container:has(.icta-btn[data-tier=growth]:hover) .feat-starter i,
.interactive-cta-container:has(.icta-btn[data-tier=growth]:hover) .feat-growth i {
  color: var(--gold);
}

.interactive-cta-container:has(.icta-btn[data-tier=growth]:hover) .feat-max {
  opacity: 0.4;
  transform: scale(0.98);
}

/* Max Hover */
.interactive-cta-container:has(.icta-btn[data-tier=max]:hover) .feat-row {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--ink);
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

.interactive-cta-container:has(.icta-btn[data-tier=max]:hover) .feat-row i {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
  }
  .price-card.featured {
    transform: scale(1);
  }
  .price-card.featured:hover {
    transform: translateY(-4px);
  }
  .tier-outcomes-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .icta-buttons {
    grid-template-columns: 1fr;
  }
  /* Disable hover effects on mobile since there is no cursor */
  .interactive-cta-container:has(.icta-btn:hover) .feat-row {
    transform: none !important;
    opacity: 1 !important;
    background: #fff !important;
    border-color: var(--border) !important;
    color: var(--ink-2) !important;
    box-shadow: none !important;
  }
  .interactive-cta-container:has(.icta-btn:hover) .feat-row i {
    color: var(--green) !important;
  }
  .feat-row i {
    color: var(--green);
  } /* Default active state for mobile */
}
@media (max-width: 640px) {
  .calc-footer {
    flex-direction: column;
    text-align: center;
  }
  .cf-text {
    text-align: center;
  }
  .calc-footer .btn {
    width: 100%;
  }
}
/* ── UNIFIED FINAL CTA GRID ── */
.unified-cta-section {
  padding: 80px 20px;
  background: var(--mist);
  border-top: 1px solid var(--border);
}

.unified-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.ucta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Colored Top Accents */
.ucta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.3s ease;
}

.ucta-card.starter::before {
  background: var(--blue);
}

.ucta-card.growth::before {
  background: var(--gold);
}

.ucta-card.max::before {
  background: var(--ink);
}

/* The Hover Animation (Elevation & Border Glow) */
.ucta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.ucta-card.starter:hover {
  border-color: rgba(66, 133, 244, 0.4);
}

.ucta-card.growth:hover {
  border-color: var(--gold);
}

.ucta-card.max:hover {
  border-color: var(--ink);
}

/* Card Header (Icon & Title) */
.ucta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.ucta-card:hover .ucta-icon {
  transform: scale(1.1);
}

.ucta-card.starter .ucta-icon {
  background: var(--blue-dim);
  color: var(--blue);
}

.ucta-card.growth .ucta-icon {
  background: var(--gold-dim);
  color: var(--gold);
}

.ucta-card.max .ucta-icon {
  background: var(--mist-dark);
  color: var(--ink);
}

.ucta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ucta-header h3 {
  font-size: 1.3rem;
  font-family: var(--font-body);
  margin: 0;
  color: var(--ink);
}

.ucta-popular {
  font-size: 0.65rem;
  background: var(--gold);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Outcomes Text */
.ucta-desc {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ucta-stat {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

/* The Divider */
.ucta-divider {
  height: 1px;
  background: var(--border);
  margin: 0 -24px 24px;
  transition: background 0.3s ease;
}

.ucta-card:hover .ucta-divider {
  background: var(--border-med);
}

/* The Add-ons List (Illuminates on Hover) */
.ucta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1; /* Pushes button to bottom */
  opacity: 0.5; /* Muted by default */
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.ucta-card:hover .ucta-features {
  opacity: 1;
  filter: grayscale(0%);
}

.ucta-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.4;
}

.ucta-features li i.fa-check {
  color: var(--green);
  margin-top: 3px;
  font-size: 0.8rem;
}

.ucta-features li i.fa-plus {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.8rem;
}

/* Dynamic Buttons */
.ucta-btn {
  width: 100%;
  transition: all 0.3s ease;
}

/* Starter & Max are Outlines that fill in on hover */
.ucta-card.starter .ucta-btn,
.ucta-card.max .ucta-btn {
  background: #fff;
}

.ucta-card.starter:hover .ucta-btn,
.ucta-card.max:hover .ucta-btn {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2);
}

/* Growth is always Gold, gets slightly darker on hover */
.ucta-card.growth:hover .ucta-btn {
  background: var(--gold);
  border-color: var(--gold);
}

/* Responsive updates for the new section */
@media (max-width: 1024px) {
  .unified-cta-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  /* Mobile doesn't have hover, so we light up features by default */
  .ucta-features {
    opacity: 1;
    filter: grayscale(0%);
  }
}/*# sourceMappingURL=styles_pricing.css.map */