/*
  ============================================================
  Transformational Success Strategies — Shared Design System
  tsc-shared.css  |  Link from every service/landing page
  Tokens extracted directly from the live site (index.html)
  ============================================================
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── DESIGN TOKENS (exact match to index.html) ── */
:root {
  --navy:        #0d1b2e;
  --navy-mid:    #1a2f4a;
  --gold:        #c9a84c;
  --gold-light:  #d4af5a;
  --gold-dark:   #a8863a;
  --cream:       #f5f1e8;
  --white:       #ffffff;
  --text-dark:   #1e1e1e;
  --text-mid:    #444444;
  --text-light:  #666666;
  --paypal:      #0070ba;
  --paypal-hv:   #005ea6;
  --transition:  0.35s ease;
}

/* ── BASE ── */
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { line-height: 1.75; font-weight: 300; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 700;
  display: block;
}

/* ── GOLD STRIPE ── */
.gold-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--navy) 100%);
}

/* ── NAVIGATION ── */
.tsc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #011b40;
  padding: 0 4%;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { height: 64px; width: auto; max-width: 320px; object-fit: contain; }
.nav-brand .nav-logo-mobile { display: none; height: 48px; width: 48px; object-fit: contain; }
.nav-center {
  display: flex; gap: 28px; align-items: center;
}
.nav-center a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; transition: color var(--transition); white-space: nowrap;
}
.nav-center a:hover, .nav-center a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: all var(--transition);
  border: 2px solid var(--gold); white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: transparent; color: var(--gold); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BREADCRUMB ── */
.tsc-breadcrumb {
  background: var(--cream); padding: 0.65rem 4%;
  font-size: 0.75rem; color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tsc-breadcrumb a { color: var(--navy-mid); text-decoration: none; font-weight: 700; }
.tsc-breadcrumb a:hover { color: var(--gold-dark); }
.tsc-breadcrumb span { margin: 0 0.5rem; color: var(--gold); }

/* ── LAYOUT ── */
.tsc-wrap        { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.tsc-wrap-narrow { max-width: 780px;  margin: 0 auto; padding: 0 5%; }
.tsc-section      { padding: 100px 5%; }
.tsc-section-cream { background: var(--cream); }
.tsc-section-navy  { background: var(--navy);  color: rgba(255,255,255,0.85); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header h2 span { color: var(--gold); }
.section-header p { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; }
.tsc-section-navy .section-header h2 { color: #fff; }

/* ── BUTTONS ── */
.btn {
  padding: 14px 30px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; font-family: 'Lato', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); box-shadow: 0 6px 20px rgba(13,27,46,.3); }

.btn-gold      { background: var(--gold);  color: var(--navy);  border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-paypal    { background: var(--paypal); color: #fff; border-color: var(--paypal); }
.btn-paypal:hover { background: var(--paypal-hv); border-color: var(--paypal-hv); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: rgba(13,27,46,.5); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: rgba(201,168,76,.55); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── CHECKLIST ── */
.tsc-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tsc-checklist li { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }
.tsc-checklist li::before { content: "✓  "; color: var(--gold); font-weight: 700; }
.tsc-checklist.light li { color: rgba(255,255,255,0.75); }

/* ── CARDS ── */
.tsc-card {
  background: var(--white); border-top: 3px solid var(--gold);
  padding: 44px 28px 36px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.tsc-card:hover {
  background: var(--navy); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.tsc-card:hover h3, .tsc-card:hover h4 { color: var(--white); }
.tsc-card:hover p { color: rgba(255,255,255,.68); }

/* ── META PILL ── */
.meta-pill {
  font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 700; padding: 5px 11px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-dark); display: inline-block;
}

/* ── PRICE BOX ── */
.price-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.35);
  padding: 2rem 1.8rem; text-align: center;
}
.price-box .amount {
  font-family: 'Playfair Display', serif; font-size: 3rem;
  font-weight: 700; color: var(--gold); line-height: 1; display: block;
}
.price-box .amount-sub { font-size: 0.78rem; color: rgba(255,255,255,.45); margin-top: .25rem; display: block; }
.price-box .price-rule { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 1rem 0; }
.price-box .btn { width: 100%; justify-content: center; margin-bottom: .5rem; }

/* ── FAQ ── */
.tsc-faq { display: flex; flex-direction: column; }
.tsc-faq-item { border-bottom: 1px solid rgba(201,168,76,.2); }
.tsc-faq-item summary {
  cursor: pointer; padding: 1.2rem 0;
  font-weight: 700; font-size: 0.9rem; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.tsc-faq-item summary::-webkit-details-marker { display: none; }
.tsc-faq-item summary::after { content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform .2s; }
.tsc-faq-item[open] summary::after { transform: rotate(45deg); }
.tsc-faq-item .faq-body { padding: 0 0 1.2rem; font-size: 0.88rem; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* ── STICKY CTA ── */
.tsc-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy); border-top: 2px solid rgba(201,168,76,.35);
  padding: 1rem 4%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform .35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.tsc-sticky-cta.visible { transform: translateY(0); }
.tsc-sticky-cta .cta-text   { color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 400; }
.tsc-sticky-cta .cta-price  { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.tsc-sticky-cta .cta-btns   { display: flex; gap: .75rem; flex-shrink: 0; }

/* ── FOOTER ── */
.tsc-footer { background: var(--navy); padding: 80px 4% 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); line-height: 1.3; display: block; margin-bottom: .3rem; }
.footer-brand-sub  { font-size: .72rem; letter-spacing: 1px; color: rgba(255,255,255,.4); display: block; margin-bottom: 1rem; }
.footer-tagline    { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 240px; font-weight: 300; }
.footer-col h4 { font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-family: 'Lato', sans-serif; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .84rem; transition: color var(--transition); font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 0; font-size: .72rem; color: rgba(255,255,255,.25);
  display: flex; justify-content: space-between; align-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-center { display: none; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; background: #011b40; padding: 24px 5% 32px; gap: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.3); z-index: 999; }
  .nav-center.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .tsc-section { padding: 72px 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .tsc-nav { padding: 0 5%; }
  .tsc-section { padding: 64px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .tsc-sticky-cta { flex-direction: column; text-align: center; }
  .tsc-sticky-cta .cta-btns { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .tsc-nav { height: 60px; padding: 0 4%; }
  .tsc-section { padding: 52px 4%; }
  .tsc-breadcrumb { padding: .65rem 4%; }
  .btn { padding: 12px 22px; font-size: .65rem; }
}
