/* ═══════════════════════════════════════════════
   JONATHAN D. LANCASTER — SALES REP ADVOCATE
   style.css
   ═══════════════════════════════════════════════ */

/* ─── RESET & ROOT ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #B8860B;
  --gold-light: #D4A520;
  --gold-pale:  #2A2000;
  --cream:      #F0EBE0;
  --dark:       #111111;
  --dark2:      #161616;
  --card:       #1C1C1C;
  --card2:      #222222;
  --border:     #2A2A2A;
  --border2:    #333333;
  --muted:      #777777;
  --mid:        #AAAAAA;
  --white:      #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: 110px 5%;
  --radius: 0px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hidden { display: none; }

/* ─── UTILITY ─── */
.gold { color: var(--gold); }
.bg-dark { background: var(--dark2); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--mid);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.85;
}

.section-header {
  max-width: 620px;
  margin-bottom: 4rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #111111;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  line-height: 1;
}
.btn-primary:hover  { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══ NAVIGATION ═══ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(17,17,17,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

#nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0 2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.78rem !important;
  padding: 10px 22px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.25s;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: #999;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 2px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: 2;
  background: var(--gold);
  color: #111;
  padding: 16px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  background: var(--gold);
  padding: 28px 5%;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* ═══ ABOUT ═══ */
#about {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.about-photo {
  width: 100%;
  object-fit: cover;
}
.about-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
}
.about-caption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}
.about-caption span {
  font-size: 0.76rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-content {
  padding-top: 6px;
}
.about-content p {
  color: #AAAAAA;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.9;
}
.about-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.about-contact a:hover { color: var(--gold-light); }

/* ═══ SERVICES ═══ */
#services {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.service-card {
  background: var(--card);
  padding: 40px 34px 44px;
  position: relative;
  transition: background 0.2s;
  overflow: hidden;
}
.service-card:hover { background: var(--card2); }
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
  background: var(--card2);
  outline: 1.5px solid var(--gold);
  outline-offset: -1.5px;
}
.service-card.featured::after { transform: scaleX(1); }

.service-badge {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 1.2rem;
}
.service-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  line-height: 1;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.service-desc {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-list {
  list-style: none;
  margin-bottom: 2rem;
}
.service-list li {
  font-size: 0.85rem;
  color: #AAAAAA;
  padding: 7px 0 7px 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }

/* ═══ BOOK ═══ */
#book {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}
.book-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.book-cover-mock {
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 60px 48px 0;
  position: relative;
  text-align: center;
}
.book-mock-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.book-mock-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.2rem;
}
.book-mock-sub {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.book-mock-author {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 48px;
}
.book-mock-footer {
  background: var(--gold);
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin: 0 -48px;
}
.book-detail p {
  color: #999;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.book-toc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 1.8rem 0 2.2rem;
  gap: 0;
}
.book-toc li {
  font-size: 0.83rem;
  color: #888;
  padding: 7px 0 7px 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.book-toc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
}

/* ═══ PULL QUOTE ═══ */
#quote {
  padding: 90px 5%;
  background: var(--gold);
  text-align: center;
}
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 700;
  color: #111;
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.45;
  font-style: normal;
}
.quote-attr {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

/* ═══ CONTACT ═══ */
#contact {
  padding: var(--section-pad);
}
.contact-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border2);
  color: var(--cream);
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

.form-group select { cursor: pointer; }
.form-group select option { background: var(--card); }

.btn-submit { align-self: flex-start; margin-top: 0.5rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-value {
  font-size: 0.97rem;
  color: var(--cream);
}
.contact-value a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-value a:hover { color: var(--gold); }

.contact-promise {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--card);
}
.contact-promise p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.contact-promise span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 32px 5%;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
}
.footer-role {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-nav {
  display: flex;
  gap: 1.8rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.78rem;
  color: #444;
}

/* ═══ SUCCESS PAGE ═══ */
.success-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5%;
  text-align: center;
}
.success-inner h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.success-inner p {
  color: var(--mid);
  margin-bottom: 2rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  :root { --section-pad: 80px 5%; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    padding: 2rem 5% 3rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1rem;
    color: var(--cream);
  }

  .hero-inner      { grid-template-columns: 1fr; gap: 56px; }
  .hero-photo-wrap { max-width: 340px; }

  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { max-width: 380px; }

  .services-grid   { grid-template-columns: 1fr; gap: 1.5px; }

  .book-grid       { grid-template-columns: 1fr; gap: 56px; }
  .book-cover-mock { max-width: 380px; }
  .book-toc        { grid-template-columns: 1fr; }

  .contact-grid    { grid-template-columns: 1fr; gap: 56px; }

  .stats-inner     { gap: 0; }
  .stat            { padding: 0 2rem; }

  .footer-inner    { flex-direction: column; text-align: center; }
  .footer-nav      { justify-content: center; }
}

@media (max-width: 480px) {
  .stat { padding: 0 1rem; }
  .stat-num { font-size: 1.6rem; }
  .hero-badge { right: 0; bottom: -14px; }
  .hero-photo-wrap::before { display: none; }
}


/* ═══ PRICING SECTION ═══ */
#pricing { padding: var(--section-pad); border-bottom: 1px solid var(--border); }

.pricing-header { max-width: 640px; margin-bottom: 3rem; }

.pricing-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.ptab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.ptab:hover { color: var(--cream); }
.ptab.active { color: var(--gold); border-bottom-color: var(--gold); }

.ptab-panel { display: none; }
.ptab-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.pricing-card {
  background: var(--card);
  padding: 36px 30px 40px;
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { background: var(--card2); }
.pricing-card.featured {
  background: var(--card2);
  outline: 1.5px solid var(--gold);
  outline-offset: -1.5px;
}

.pkg-badge {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.pkg-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.pkg-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.pkg-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pkg-cycle {
  font-size: 0.8rem;
  color: var(--muted);
}
.pkg-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pkg-list li {
  font-size: 0.85rem;
  color: #AAAAAA;
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.4;
}
.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
}
.pkg-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
  cursor: pointer;
  border: none;
}
.pkg-btn.btn-primary {
  background: var(--gold);
  color: #111;
}
.pkg-btn.btn-primary:hover { background: var(--gold-light); }
.pkg-btn.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border2);
}
.pkg-btn.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.pricing-roi {
  margin-top: 2rem;
  padding: 16px 20px;
  background: rgba(184,134,11,0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  color: #BBAA88;
  line-height: 1.6;
}
.roi-icon { font-style: normal; color: var(--gold); margin-right: 6px; }

/* ── BUNDLES ── */
.bundles-list { display: flex; flex-direction: column; gap: 1.5px; background: var(--border); }

.bundle-row {
  background: var(--card);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  transition: background 0.2s;
}
.bundle-row:hover { background: var(--card2); }
.bundle-row.featured-bundle {
  background: var(--card2);
  outline: 1.5px solid var(--gold);
  outline-offset: -1.5px;
}

.bundle-info { flex: 1; }
.bundle-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bundle-best {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--gold);
  color: #111;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bundle-includes {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.bundle-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  max-width: 520px;
}
.bundle-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  min-width: 160px;
}
.bundle-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.bundle-save {
  font-size: 0.78rem;
  color: #6DB86D;
  margin-bottom: 8px;
}

.pricing-footer-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.pricing-footer-note a { color: var(--gold); text-decoration: none; }
.pricing-footer-note a:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .pricing-grid  { grid-template-columns: 1fr; }
  .bundle-row    { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .bundle-price-wrap { align-items: flex-start; }
  .ptab          { padding: 10px 16px; font-size: 0.78rem; }
}
