/* ══════════════════════════════════════════════
   PRICING.CSS — exclusive styles for pricing.html
   Depends on: base.css, nav.css, footer.css, animations.css
   ══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #060d1f 0%, #0b1a35 45%, #0f1245 100%);
  color: #fff;
  padding: 80px 0 72px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 55% 40%, rgba(35,97,217,.14), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,.8);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: #60a5fa; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.hero-note { font-size: 13px; color: rgba(255,255,255,.35); font-style: italic; }

/* ── PRICING PHILOSOPHY ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.phil-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r3);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .2s, transform .2s, opacity 0.6s ease;
}
.phil-card:hover { box-shadow: var(--shxl); transform: translateY(-3px); }
.phil-ico { margin-bottom: 16px; display: flex; justify-content: center; }
.phil-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.phil-card p  { font-size: 14px; color: var(--g500); line-height: 1.65; }

/* ── PRICING TIERS ── */
.pricing-section {
  background: linear-gradient(135deg, #060d1f 0%, #0b1a35 45%, #0f1245 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.pricing-inner { position: relative; z-index: 1; }
.pricing-section .sec-head h2 { color: #fff; }
.pricing-section .sec-head p  { color: rgba(255,255,255,.55); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.tier-card {
  border-radius: var(--r3);
  border: 1.5px solid rgba(255,255,255,.12);
  padding: 36px 30px;
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, opacity 0.6s ease, transform 0.6s ease;
}
.tier-card:hover { border-color: rgba(255,255,255,.25); }
.tier-card.featured {
  border-color: var(--blue);
  background: rgba(35,97,217,.12);
  box-shadow: 0 0 0 1px var(--blue);
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
  white-space: nowrap;
}
.tier-name {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.tier-headline { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.tier-sub      { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.55; }
.tier-price-label { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.tier-price-val   { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.tier-price-talk  { font-size: 22px; }
.tier-price-mo    { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.4); }
.tier-price-note  { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 4px; }
.tier-divider     { height: 1px; background: rgba(255,255,255,.1); margin: 24px 0; }
.tier-feats { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-feat  { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.5; }
.tier-cta   { margin-top: 28px; }

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-top: 20px;
  font-style: italic;
}
.pricing-footnote a { color: #60a5fa; font-weight: 600; }

/* ── WHAT'S INCLUDED ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .2s, opacity 0.6s ease, transform 0.6s ease;
}
.inc-item:hover { border-color: var(--blue-bd); }
.inc-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.inc-body strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.inc-body span   { font-size: 13px; color: var(--g500); line-height: 1.55; }

/* ── COMPARE TABLE ── */
.compare-wrap { overflow-x: auto; margin-top: 48px; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--g200);
  border-radius: 16px;
  overflow: hidden;
}
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.compare-table th:first-child  { background: var(--g50);   color: var(--g500); width: 38%; }
.compare-table th.col-growth   { background: var(--g100);  color: var(--g700); }
.compare-table th.col-scale    { background: var(--blue);  color: #fff; }
.compare-table th.col-enterprise{ background: var(--navy); color: #fff; }
.compare-table td { padding: 13px 20px; border-top: 1px solid var(--g200); font-size: 14px; }
.compare-table td:first-child { font-weight: 600; color: var(--g700); background: var(--g50); }
.compare-table td.yes { color: var(--green); font-weight: 700; }
.compare-table td.no  { color: var(--g300); }
.compare-table td.val { color: var(--navy); font-weight: 600; }
.compare-table tbody tr { cursor: default; }
.compare-table tr:hover td { background: inherit; }
.compare-table tr:hover td:first-child { background: var(--g50); }

/* ── TESTIMONIALS ── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s, opacity 0.6s ease, transform 0.6s ease;
}
.test-card:hover { border-color: rgba(255,255,255,.18); }
.test-accent { height: 4px; border-radius: 2px; margin-bottom: 20px; }
.test-stars  { margin-bottom: 14px; display: flex; gap: 2px; align-items: center; }
.test-q  { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 20px; font-style: italic; }
.test-auth strong { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.test-auth span   { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--g200);
  border-radius: var(--r3);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--g200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  background: #fff;
  transition: background .15s;
  gap: 16px;
}
.faq-q:hover { background: var(--g50); }
.faq-q-txt  { font-size: 16px; font-weight: 700; color: var(--navy); }
.faq-icon   { font-size: 22px; color: var(--g400); flex-shrink: 0; transition: transform .2s, color .15s; }
.faq-item.open .faq-icon   { transform: rotate(45deg); color: var(--blue); }
.faq-item.open .faq-q      { background: var(--g50); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--g500);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(135deg, var(--navy), #1e3a8a, #1a1040);
  color: #fff;
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35,97,217,.15), transparent 65%);
  pointer-events: none;
}
.cta-sec h2       { color: #fff; font-size: clamp(32px,5vw,52px); margin-bottom: 8px; position: relative; }
.cta-sec .cta-sub { color: #60a5fa; font-size: clamp(24px,3.5vw,38px); font-weight: 700; margin-bottom: 16px; position: relative; }
.cta-sec .cta-tagline { color: rgba(255,255,255,.5); font-size: 16px; margin-bottom: 40px; font-style: italic; position: relative; }
.cta-btn-wrap { position: relative; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid    { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid       { grid-template-columns: 1fr; }
  .included-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}