@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============ Design Tokens ============ */
:root {
  --red-deep: #5C0F1C;
  --red-primary: #B31029;
  --red-bright: #E2142F;
  --gold: #E8A917;
  --gold-soft: #F6D998;
  --white: #FFFFFF;
  --cream: #FBF7F1;
  --ink: #201A18;
  --ink-muted: #6E6560;
  --border: #EDE3D6;
  --shadow-sm: 0 2px 8px rgba(32, 26, 24, 0.06);
  --shadow-md: 0 10px 30px rgba(92, 15, 28, 0.12);
  --shadow-lg: 0 20px 60px rgba(92, 15, 28, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 280ms;
  --dur-slow: 420ms;
  --container-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }

p { color: var(--ink-muted); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

@media (max-width: 768px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  min-height: 44px;
  touch-action: manipulation;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-primary));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-gold {
  background: var(--gold);
  color: var(--red-deep);
  box-shadow: 0 10px 30px rgba(232, 169, 23, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232, 169, 23, 0.36); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--red-primary);
  border-color: var(--red-primary);
}
.btn-outline-dark:hover { background: var(--red-primary); color: var(--white); }

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.0);
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 94px; width: auto; transition: height var(--dur-base) var(--ease-out); }
.navbar.scrolled .brand img { height: 72px; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.brand-name span { color: var(--red-primary); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red-primary);
  transition: width var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red-primary); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ink);
  transition: transform var(--dur-fast) var(--ease-out), top var(--dur-fast) var(--ease-out);
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-outline-dark { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: 0.82rem; }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 340px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    animation: slideIn var(--dur-slow) var(--ease-out);
  }
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.nav-scrim {
  display: none;
  position: fixed; inset: 0;
  background: rgba(32,26,24,0.4);
  z-index: 98;
}
body.nav-open .nav-scrim { display: block; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background: radial-gradient(circle at 80% 10%, rgba(232,169,23,0.10), transparent 55%),
              radial-gradient(circle at 10% 90%, rgba(179,16,41,0.08), transparent 55%),
              var(--cream);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 70%, var(--white));
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--red-bright), var(--red-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede { font-size: 1.15rem; max-width: 52ch; margin: 0 auto 34px; }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Reveal Animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

/* ============ Story Section ============ */
.story { background: var(--white); }
.story-copy { max-width: 780px; margin: 0 auto; }
.story-copy p { font-size: 1.08rem; margin-bottom: 20px; color: var(--ink); }
.story-copy p strong { color: var(--red-primary); }

.story-closing {
  margin-top: 40px;
  padding: 32px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.story-closing p { color: var(--ink); font-weight: 500; margin-bottom: 0; }
.story-closing p + p { margin-top: 14px; }

/* ============ We Are Here Grid ============ */
.here-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 900px) { .here-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .here-grid { grid-template-columns: 1fr; } }

.here-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.here-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.here-card .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.here-card .icon svg { width: 20px; height: 20px; }
.here-card p { color: var(--ink); font-weight: 500; font-size: 0.98rem; margin: 0; }
.here-card.emphasis { border-color: var(--gold); background: linear-gradient(180deg, rgba(232,169,23,0.06), transparent); }
.here-card.emphasis .icon { background: linear-gradient(135deg, var(--gold), #C98E0E); }

/* ============ Quotes ============ */
.quotes { background: var(--red-deep); position: relative; overflow: hidden; }
.quotes::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(226,20,47,0.35), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(232,169,23,0.18), transparent 40%);
}
.quotes .section-head h2, .quotes .section-head p { color: var(--white); }
.quotes .eyebrow { color: var(--gold); }
.quotes .eyebrow::before { background: var(--white); }

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 1000px) { .quote-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; } }

.quote-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.quote-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); }
.quote-card .quote-mark { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.quote-card blockquote {
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
  line-height: 1.7;
  flex-grow: 1;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}
.quote-card blockquote::-webkit-scrollbar { width: 4px; }
.quote-card blockquote::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }
.quote-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============ Founder / Meet Tom ============ */
.founder { background: var(--cream); }
.founder .container {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.founder-photos { position: relative; display: flex; flex-direction: column; gap: 16px; }
.founder-photos img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.founder-copy blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 18px;
}
.founder-copy cite { font-style: normal; color: var(--red-primary); font-weight: 700; font-family: 'Poppins', sans-serif; }
.founder-copy .role { display: block; color: var(--ink-muted); font-weight: 400; font-size: 0.92rem; margin-top: 4px; }
.founder-caption { margin-top: 20px; font-size: 0.85rem; color: var(--ink-muted); }

.founder-portrait { position: relative; display: flex; align-items: center; justify-content: center; }
.founder-portrait .glow-ring {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--red-bright), var(--gold), var(--red-deep), var(--red-bright));
  filter: blur(50px);
  opacity: 0.35;
  animation: spin 14s linear infinite;
}
.founder-portrait img {
  position: relative;
  width: 92%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .founder .container { grid-template-columns: 1fr; }
  .founder-copy { order: -2; }
  .founder-portrait { order: -1; max-width: 320px; margin-inline: auto; }
  .founder-photos { flex-direction: row; max-width: 420px; margin-inline: auto; }
}

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(232,169,23,0.3), transparent 50%);
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 14px auto 30px; position: relative; }
.cta-banner .hero-actions { justify-content: center; position: relative; }

/* ============ Footer ============ */
footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 84px; }
.footer-brand span { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--white); }
footer h4 { color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.95rem; margin-bottom: 18px; }
footer p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  transition: color var(--dur-fast);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-network a { display: block; font-weight: 600; color: var(--white); }
.footer-network span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; font-weight: 400; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Page Banner (Info / Pricing) ============ */
.page-banner {
  padding: 160px 0 70px;
  background: linear-gradient(180deg, var(--cream), var(--white));
  text-align: center;
}
.page-banner .eyebrow { justify-content: center; }
.page-banner p { max-width: 60ch; margin: 14px auto 0; font-size: 1.05rem; }

/* ============ Information Page ============ */
.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 960px) { .info-layout { grid-template-columns: 1fr; } }

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red-deep), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232,169,23,0.25), transparent 55%);
}
.play-btn {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.play-btn:hover { transform: scale(1.08); background: rgba(255,255,255,0.25); }
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-caption { position: relative; margin-top: 18px; text-align: center; color: rgba(255,255,255,0.75); font-size: 0.88rem; }

.info-copy h3 { margin-bottom: 16px; }
.info-copy ul { margin: 20px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.info-copy ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.info-copy ul li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--red-primary); margin-top: 2px; }

/* ============ Form ============ */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; }

.field { margin-bottom: 22px; }
.field label {
  display: flex;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.field .req { color: var(--red-primary); }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 4px rgba(179,16,41,0.12);
  background: var(--white);
}
.field .error-msg {
  display: none;
  color: var(--red-bright);
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 500;
}
.field.invalid input, .field.invalid textarea { border-color: var(--red-bright); }
.field.invalid .error-msg { display: block; }

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #C98E0E);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  animation: popIn var(--dur-slow) var(--ease-out);
}
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { margin-bottom: 10px; }
form.hidden { display: none; }

/* ============ Pricing ============ */
.price-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.price-tag { text-align: center; }
.price-tag .amount { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--red-primary); line-height: 1; }
.price-tag .amount sup { font-size: 1rem; font-weight: 700; }
.price-tag .unit { font-size: 0.85rem; color: var(--ink-muted); margin-top: 4px; }

@media (max-width: 760px) { .price-intro { grid-template-columns: 1fr; text-align: center; } }

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 1000px) { .path-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.path-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.path-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.path-card .path-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.path-card.featured { border-color: var(--gold); position: relative; }
.path-card.featured::before {
  content: 'Custom';
  position: absolute; top: -13px; left: 28px;
  background: var(--gold);
  color: var(--red-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.path-card h3 { margin-bottom: 12px; }
.path-card p { flex-grow: 1; margin-bottom: 18px; font-size: 0.95rem; }
.path-card .path-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--red-primary); font-size: 1.05rem; margin-top: auto; }

.info-panel {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .info-panel { grid-template-columns: 1fr; } }
.info-panel h4 { color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 0.95rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.info-panel p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.breakdown-table th, .breakdown-table td {
  text-align: left;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.breakdown-table th {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.breakdown-table td { font-weight: 500; color: var(--ink); }
.breakdown-table td.price { color: var(--red-primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.breakdown-table tr:last-child td { border-bottom: none; }

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
