/**
 * Reusable Components
 * Sales Fundas Theme by Infineural Technologies
 */

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: .02em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: none;
  line-height: 1;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

/* =========================================================
   PROOF BAR (marquee)
   ========================================================= */
.proof-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.proof-bar.dark {
  background: var(--navy);
}

.proof-bar.teal {
  background: var(--teal);
}

.pb-inner {
  display: inline-flex;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}

.pb-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 36px;
}

.proof-bar.dark  .pb-item,
.proof-bar.teal  .pb-item { color: var(--white); }

.pb-sep {
  color: var(--navy);
  opacity: .35;
  padding: 0 4px;
}

.proof-bar.dark  .pb-sep,
.proof-bar.teal  .pb-sep { color: var(--white); }

/* =========================================================
   CARDS
   ========================================================= */
/* Pain cards */
.pain-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 32px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.pain-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.pain-card h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.65;
}

/* Service cards */
.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 48px 36px;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.svc-card:hover {
  border-color: rgba(200,146,42,.4);
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}
.svc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.svc-card h3 {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.svc-outcome {
  font-size: 15px;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  margin-bottom: 24px;
}
.svc-price {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
}
.svc-price strong {
  color: var(--gold);
  font-size: 19px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: gap var(--t-fast);
}
.svc-link:hover { gap: 14px; }

/* Proof cards */
.proof-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  border-top: 3px solid var(--teal);
}
.proof-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}
.proof-result {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.proof-story {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.proof-client {
  font-size: 12px;
  color: var(--g2);
  font-style: italic;
}

/* Fit cards */
.fit-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 32px;
  border-left: 3px solid transparent;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.fit-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.fit-num {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.fit-card h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.fit-card p {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.65;
}

/* Package cards */
.pkg-card {
  border-radius: var(--r-lg);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--t-fast);
  background: var(--white);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); }
.pkg-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.pkg-card.featured .pkg-name { color: var(--gold); }
.pkg-price {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pkg-card.featured .pkg-price { color: var(--white); }
.pkg-term {
  font-size: 14px;
  color: var(--g2);
  margin-bottom: 28px;
}
.pkg-card.featured .pkg-term { color: rgba(255,255,255,.5); }
.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.pkg-card.featured .pkg-divider { background: rgba(255,255,255,.12); }
.pkg-features {
  list-style: none;
  margin-bottom: 36px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--g2);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,.7); }
.pkg-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-card.featured .pkg-features li::before { color: var(--gold); }

/* Before/After comparison table */
.ba-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ba-head { display: grid; grid-template-columns: 1fr 1fr; }
.ba-col {
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ba-col.before { background: #F5F0EB; color: #7A5C28; }
.ba-col.after  { background: var(--teal); color: var(--white); }
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.ba-cell { padding: 14px 20px; font-size: 14px; line-height: 1.5; }
.ba-cell.b {
  color: var(--g2);
  background: var(--white);
}
.ba-cell.b::before { content: '✗  '; color: #CC4444; font-size: 12px; }
.ba-cell.a {
  color: var(--teal);
  background: var(--teal-lt);
  font-weight: 500;
}
.ba-cell.a::before { content: '✓  '; color: var(--teal); font-size: 12px; }

/* Magnet strip */
.magnet-strip {
  background: var(--gold-lt);
  padding: 64px 0;
  border-top: 1px solid #E8D9BB;
  border-bottom: 1px solid #E8D9BB;
}
.magnet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.magnet-badge {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.magnet-copy h3 {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.magnet-copy p {
  font-size: 15px;
  color: #7A5C28;
  max-width: 500px;
}

/* Credential grid */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.cred-item::before {
  content: '↗';
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Tags */
.transform-tag {
  display: inline-block;
  background: var(--teal-lt);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Section grids */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Final CTA section */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
}
.final-cta h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 17px;
  color: var(--g2);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.fine-print {
  font-size: 13px;
  color: var(--g2);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .pain-grid,
  .services-grid,
  .proof-grid,
  .packages-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .magnet-inner { flex-direction: column; text-align: center; }
  .cred-grid { grid-template-columns: 1fr; }
}
