/* ============================================================
   DUMP AND DUMPSTER — pricing.css
   Design: Google Gemini 2.5 Pro · Code: Claude Sonnet 4.6
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.pricing-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 24px 60px;
  text-align: center;
}

.pricing-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.pricing-hero__glow--green {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,120,0.10) 0%, transparent 70%);
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
}
.pricing-hero__glow--blue {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,192,228,0.08) 0%, transparent 70%);
  top: 50%; left: 70%;
  transform: translate(-50%, -50%);
}

.pricing-hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(200,200,200,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200,200,200,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 40%, transparent 100%);
}

.pricing-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pricing-hero__inner .section-tag {
  margin-bottom: 20px;
}

.pricing-hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-light);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-hero__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--silver-dark);
  margin-bottom: 36px;
}

/* ── Billing Toggle ─────────────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.billing-toggle__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--silver-dark);
  transition: color 0.2s ease, opacity 0.2s ease;
  user-select: none;
  opacity: 0.55;
}
.billing-toggle__label.is-active {
  color: var(--silver-light);
  opacity: 1;
}

.billing-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}
.billing-toggle__switch.is-annual {
  background: rgba(0,200,120,0.15);
  border-color: rgba(0,200,120,0.4);
}

.billing-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--silver-dark);
  border-radius: 50%;
  transition: transform 0.22s var(--ease-out), background 0.2s ease;
}
.billing-toggle__switch.is-annual .billing-toggle__thumb {
  transform: translateX(20px);
  background: var(--green);
}

.billing-toggle__badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   PLANS SECTION
══════════════════════════════════════════════════════════ */
.plans-section {
  padding: 0 80px 80px;
  position: relative;
}

/* ── Dot grid pattern behind plan cards (Improvement 4) ── */
.plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(74,222,128,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Plan Card Base ────────────────────────────────────── */
.plan-card {
  position: relative;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s ease;
  opacity: 0;
  transform: translateY(28px);
}
.plan-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.plan-card--pro {
  border-color: #4ADE80;
  transform: scale(1.04) translateY(0);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.2), 0 24px 60px rgba(0,200,120,0.12);
}
.plan-card--pro.is-visible {
  transform: scale(1.04) translateY(0);
}
.plan-card--pro:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.3), 0 32px 80px rgba(0,200,120,0.18);
}

/* ── Pro card pulsing glow ──────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes pulseGlow {
    from { box-shadow: 0 0 20px 0 rgba(74,222,128,0.2), 0 0 0 1px rgba(74,222,128,0.2), 0 24px 60px rgba(0,200,120,0.12); }
    to   { box-shadow: 0 0 40px 8px rgba(74,222,128,0.4), 0 0 0 1px rgba(74,222,128,0.3), 0 24px 60px rgba(0,200,120,0.18); }
  }
  .plan-card--pro.is-visible {
    animation: pulseGlow 2.5s ease-in-out infinite alternate;
  }
  .plan-card--pro.is-visible:hover {
    animation: none;
    box-shadow: 0 0 0 1px rgba(74,222,128,0.3), 0 32px 80px rgba(0,200,120,0.18);
  }
}

.plan-card--elite {
  border-color: rgba(96,165,250,0.35);
  box-shadow: 0 0 0 1px rgba(43,192,228,0.08);
}
.plan-card--elite:hover {
  box-shadow: 0 0 0 1px rgba(43,192,228,0.2), 0 20px 60px rgba(43,192,228,0.08);
}

/* ── Badge ─────────────────────────────────────────────── */
.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #4ADE80;
  color: #000;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-card__badge--blue {
  background: var(--blue);
}

/* ── Card Header ───────────────────────────────────────── */
.plan-card__label {
  font-family: var(--font-logo);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--silver-mid);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-light);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* ── Price ─────────────────────────────────────────────── */
.plan-card__price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  transition: opacity 0.2s ease;
}
.plan-card__price.is-fading {
  opacity: 0;
}

.plan-card__currency {
  font-family: var(--font-logo);
  font-size: 22px;
  color: var(--silver-mid);
  padding-top: 8px;
  line-height: 1;
}

.plan-card__amount {
  font-family: var(--font-logo);
  font-size: 56px;
  line-height: 1;
  color: var(--silver-light);
  letter-spacing: -0.01em;
}

.plan-card__period {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--silver-dark);
  padding-bottom: 8px;
  line-height: 1;
}

.plan-card__billing-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--silver-dark);
  min-height: 18px;
  margin-bottom: 28px;
  transition: opacity 0.2s ease;
}
.plan-card__billing-note.is-fading {
  opacity: 0;
}

/* ── Features List ─────────────────────────────────────── */
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.plan-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.plan-card__feature--check {
  color: var(--silver-mid);
}
.plan-card__feature--dash {
  color: var(--silver-dark);
  opacity: 0.6;
}

.feat-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.feat-icon--check { color: var(--green); }
.feat-icon--dash  { color: #444; }

/* ── Feature inline icons (Improvement 2) ─────────────── */
.plan-feature-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--green);
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* ── CTA Buttons ───────────────────────────────────────── */
.plan-card__cta {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 4px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s ease;
}

.plan-card__cta--pro {
  background: #4ADE80;
  color: #000;
  border: none;
  font-weight: 500;
}
.plan-card__cta--pro:hover {
  background: #22C55E;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,222,128,0.3);
}

.plan-card__cta--elite {
  border-color: rgba(96,165,250,0.5);
  color: var(--blue);
}
.plan-card__cta--elite:hover {
  background: rgba(43,192,228,0.08);
  border-color: var(--blue);
  color: var(--silver-light);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════════════════════ */
.compare-section {
  padding: 80px 80px;
  border-top: 1px solid var(--border);
}

.compare-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.compare-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-light);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Sticky header */
.compare-table__head-row {
  position: sticky;
  top: 0;
  z-index: 10;
}

.compare-table__th {
  background: #0F0F0F;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-mid);
  text-align: center;
  border-bottom: 1px solid var(--border);
  width: 18%;
}
.compare-table__th--feature {
  text-align: left;
  color: var(--silver-dark);
  width: 46%;
}
.compare-table__th--pro {
  color: #4ADE80;
  background: rgba(74,222,128,0.03);
}

/* Category rows */
.compare-table__category td {
  background: rgba(74,222,128,0.04);
  border-left: 3px solid var(--green);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

/* Data rows */
.compare-table__row td,
.compare-table__row th {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(200,200,200,0.04);
}

.compare-table__row {
  background: #111111;
}
.compare-table__row--alt {
  background: #0F0F0F;
}
.compare-table__row:last-child td {
  border-bottom: none;
}

.compare-table__feat {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--silver-mid);
  text-align: left;
}

.compare-table__cell {
  text-align: center;
  vertical-align: middle;
}
.compare-table__cell--pro {
  background: rgba(74,222,128,0.02);
}
.compare-table__cell--text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--silver-mid);
}
.compare-table__cell--pro.compare-table__cell--text {
  color: #4ADE80;
}

.tbl-check,
.tbl-dash {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-light);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  color: var(--silver-light);
  transition: color 0.2s ease;
}
.faq-item__trigger:hover {
  color: #fff;
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out), color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--green);
  border-color: rgba(0,200,120,0.4);
  background: rgba(0,200,120,0.08);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__body {
  max-height: 300px;
}

.faq-item__body p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.7;
  padding-bottom: 22px;
}

.faq-item__body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-item__body a:hover {
  color: var(--silver-light);
}

/* ══════════════════════════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════════════════════════ */
.pricing-cta {
  background: #111111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px;
  text-align: center;
}

.pricing-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-cta__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-light);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pricing-cta__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--silver-dark);
  margin-bottom: 40px;
}

.pricing-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease;
}

.pricing-cta__pill--phone {
  background: var(--green);
  color: #000;
  font-weight: 500;
}
.pricing-cta__pill--phone:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,200,120,0.3);
}

.pricing-cta__pill--email {
  background: transparent;
  border: 1px solid rgba(200,200,200,0.2);
  color: var(--silver-mid);
}
.pricing-cta__pill--email:hover {
  background: rgba(200,200,200,0.06);
  border-color: rgba(200,200,200,0.4);
  color: var(--silver-light);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   FOOTER (shared from style.css, overrides for this page)
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 80px 40px;
}
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-logo);
  font-size: 20px;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--silver-light), var(--silver-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
  margin-bottom: 14px;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--silver-dark);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social:hover {
  color: var(--silver-light);
  border-color: rgba(200,200,200,0.3);
  background: rgba(200,200,200,0.05);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--silver-light); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-family: var(--font-body); font-size: 13px; font-weight: 300;
  color: var(--silver-dark);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--silver-light); }
.footer__address {
  display: flex; flex-direction: column; gap: 10px;
}
.footer__address p {
  font-family: var(--font-body); font-size: 13px; font-weight: 300;
  color: var(--silver-dark); line-height: 1.6;
}
.footer__address a { transition: color 0.15s; }
.footer__address a:hover { color: var(--silver-light); }
.footer__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 28px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy {
  font-family: var(--font-body); font-size: 12px; font-weight: 300; color: var(--silver-dark);
}
.footer__legal { display: flex; align-items: center; gap: 12px; }
.footer__legal a {
  font-family: var(--font-body); font-size: 12px; font-weight: 300;
  color: var(--silver-dark); transition: color 0.15s;
}
.footer__legal a:hover { color: var(--silver-light); }
.footer__legal span { color: var(--silver-dark); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .plans-section { padding: 0 32px 64px; }
  .compare-section { padding: 64px 32px; }
  .faq-section { padding: 64px 32px; }
  .pricing-cta { padding: 64px 32px; }
  .footer { padding: 56px 32px 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* 1-col on tablet, Pro card loses scale */
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .plan-card--pro {
    transform: none;
    order: -1;
  }
  .plan-card--pro.is-visible {
    transform: none;
  }
  .plan-card--pro:hover {
    transform: translateY(-4px);
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 100px 24px 48px;
    min-height: 220px;
  }
  .pricing-hero__title { font-size: 40px; }

  /* Hide table, features shown in cards only */
  .compare-section { display: none; }

  .faq-section { padding: 56px 24px; }
  .faq-title { font-size: 34px; }

  .pricing-cta { padding: 56px 24px; }
  .pricing-cta__title { font-size: 36px; }

  .footer { padding: 48px 24px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__col--brand { order: -1; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .main-nav { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .pricing-hero__title { font-size: 32px; }
  .pricing-hero__subtitle { font-size: 15px; }

  .billing-toggle { gap: 10px; }
  .billing-toggle__badge { font-size: 9px; padding: 3px 8px; }

  .plans-section { padding: 0 16px 56px; }
  .plan-card { padding: 32px 24px; }
  .plan-card__amount { font-size: 48px; }

  /* CTA pills stack vertically */
  .pricing-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .pricing-cta__pill {
    width: 100%;
    justify-content: center;
  }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
