:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --amber: #C8851A;
  --amber-light: #FAEEDA;
  --amber-mid: #E8A830;
  --amber-dark: #8A5C0A;
  --ink: #1C1A17;
  --ink-mid: #4A4540;
  --ink-light: #8A847C;
  --border: rgba(28,26,23,0.12);
  --border-strong: rgba(28,26,23,0.2);
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-dark) !important;
  background: var(--amber-light);
  border: 1px solid var(--amber-mid);
  border-radius: 100px;
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: #f5e2c0;
  border-color: var(--amber);
}

/* HERO */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  font-size: 52px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--ink);
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatars { display: flex; }

.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-left: -8px;
}

.proof-avatar:first-child { margin-left: 0; }

.proof-text {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.4;
}

.proof-text strong {
  color: var(--ink);
  font-weight: 500;
}

/* HERO CARD */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hero-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  border: 1px solid var(--amber-mid);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.price-was {
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: line-through;
}

.price-now {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 12px;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.hero-card .btn-offer {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber-dark);
  background: var(--amber-light);
  border: 1px solid var(--amber-mid);
  border-radius: 100px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-card .btn-offer:hover { background: #f5e2c0; }

.hero-card-footer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 12px;
}

/* TRUST BAR */
.trust-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mid);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 80px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 680px;
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* PAIN GRID */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.pain-card:hover { border-color: var(--border-strong); }

.pain-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* USE CASES */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.use-case-card {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}

.use-case-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.use-case-card p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* SERVICES */
.services-list { display: flex; flex-direction: column; }

.service-row {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.service-row:last-child { border-bottom: none; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--amber);
  width: 28px;
  flex-shrink: 0;
  padding-top: 3px;
}

.service-content { flex: 1; }

.service-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 10px;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.process-step:nth-child(2n) { border-right: none; }
.process-step:nth-child(3),
.process-step:nth-child(4) { border-bottom: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
  -webkit-text-stroke: 1px var(--amber-mid);
  color: transparent;
}

.process-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ABOUT */
.about-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-photo-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-meta-item {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.about-meta-item::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-role {
  font-size: 14px;
  color: var(--amber-dark);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.about-bio-text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.about-bio-text p + p { margin-top: 16px; }

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.about-stat { display: flex; flex-direction: column; gap: 4px; }

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-stat-label {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.4;
  font-weight: 300;
}

/* TESTIMONIAL */
.testimonial-block {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 52px;
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
  opacity: 0.4;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 36px;
  max-width: 760px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-dark);
  flex-shrink: 0;
}

.t-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.t-co {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* PRICING TIERS */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}

.tier-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}

.tier-card.featured .tier-badge {
  background: rgba(200,133,26,0.2);
  color: var(--amber-mid);
}

.tier-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.tier-card.featured .tier-name { color: var(--white); }

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.tier-card.featured .tier-price { color: var(--white); }

.tier-price-note {
  font-size: 12px;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.tier-card.featured .tier-price-note { color: rgba(255,255,255,0.4); }

.tier-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}

.tier-card.featured .tier-hr { border-color: rgba(255,255,255,0.1); }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tier-features li {
  font-size: 13px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  font-weight: 300;
}

.tier-card.featured .tier-features li { color: rgba(255,255,255,0.7); }

.tier-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23FAEEDA'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23C8851A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tier-card.featured .tier-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='rgba(200,133,26,0.2)'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23E8A830' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--ink-mid);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.faq-open .faq-q::after {
  content: '×';
}

.faq-a {
  display: none;
  padding-top: 12px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 700px;
}

.faq-item.faq-open .faq-a {
  display: block;
}

/* CTA */
.cta-section {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
  margin: 80px 0 40px;
}

.cta-section h2 {
  font-size: 42px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.cta-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.cta-was {
  font-size: 18px;
  color: var(--ink-light);
  text-decoration: line-through;
  font-family: 'Playfair Display', serif;
}

.cta-now {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.cta-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--ink);
  border: none;
  border-radius: 100px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 14px;
}

.cta-btn:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  color: var(--ink-light);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ink);
}

.footer-logo span { color: var(--amber); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-size: 12px;
  color: var(--ink-light);
}

/* HERO SINGLE (no card) */
.hero-single { grid-template-columns: 1fr; max-width: 760px; }

/* NAV DROPDOWN */
.nav-dropdown-wrap { position: relative; }

.nav-dropdown-trigger { cursor: pointer; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(28,26,23,0.1);
  list-style: none;
  min-width: 280px;
  padding: 8px;
  z-index: 200;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}

.nav-dropdown li a:hover { background: var(--cream); }

.dropdown-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.dropdown-desc {
  display: block;
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.4;
}

/* DATA MATURITY FRAMEWORK */
.maturity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.maturity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.maturity-card:hover { border-color: var(--amber-mid); }

.maturity-card-highlight {
  background: var(--ink);
}

.maturity-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.maturity-card-highlight .maturity-num { color: var(--amber-mid); }

.maturity-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.maturity-card-highlight .maturity-name { color: var(--white); }

.maturity-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.65;
  font-weight: 300;
}

.maturity-card-highlight .maturity-desc { color: rgba(255,255,255,0.65); }

.maturity-cta {
  text-align: center;
  padding: 40px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.maturity-cta p {
  font-size: 16px;
  color: var(--ink-mid);
  margin-bottom: 24px;
  font-weight: 300;
}

/* ENGAGEMENT TRACKS */
.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.track-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.track-card-featured {
  background: var(--ink);
  border-color: var(--ink);
}

.track-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  border-radius: 100px;
  padding: 4px 14px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
}

.track-card-featured .track-badge {
  background: rgba(200,133,26,0.2);
  color: var(--amber-mid);
}

.track-label {
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 14px;
  font-style: italic;
}

.track-card-featured .track-label { color: rgba(255,255,255,0.45); }

.track-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.track-card-featured .track-desc { color: rgba(255,255,255,0.7); }

.track-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0 16px;
}

.track-card-featured .track-divider { border-color: rgba(255,255,255,0.1); }

.track-includes {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 14px;
}

.track-card-featured .track-includes { color: rgba(255,255,255,0.4); }

.track-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.track-features li {
  font-size: 13px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  font-weight: 300;
}

.track-card-featured .track-features li { color: rgba(255,255,255,0.7); }

.track-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23FAEEDA'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23C8851A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.track-card-featured .track-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='rgba(200,133,26,0.2)'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23E8A830' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.track-cta {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber-dark);
  background: var(--amber-light);
  border: 1px solid var(--amber-mid);
  border-radius: 100px;
  padding: 13px 24px;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}

.track-cta:hover { background: #f5e2c0; }

.track-card-featured .track-cta {
  background: rgba(200,133,26,0.2);
  border-color: var(--amber-mid);
  color: var(--amber-mid);
}

.track-card-featured .track-cta:hover { background: rgba(200,133,26,0.3); }

/* CTA NOTE LINK */
.cta-note-link {
  color: var(--ink-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  font-size: 13px;
}

.cta-note-link:hover { color: var(--ink); border-color: var(--ink); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.5s ease both; }
.hero h1      { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
.hero-proof   { animation: fadeUp 0.5s 0.4s ease both; }
.hero-card    { animation: fadeUp 0.5s 0.2s ease both; }

/* CREDENTIALS BAR */
.credentials-bar {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.cred-sep {
  color: var(--amber);
  font-size: 14px;
  line-height: 1;
}

/* PAIN STATEMENTS */
.pain-statements {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pain-line {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
  padding: 36px 48px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  background: var(--white);
}

.pain-line:nth-child(even) { background: var(--cream); }
.pain-line:last-child { border-bottom: none; }

/* HOW WE WORK */
.how-we-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how-we-work-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.how-we-work-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
}

.how-we-work-services {
  position: relative;
}


.how-we-work-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.how-we-work-row:last-child { border-bottom: none; }

.how-we-work-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.how-we-work-info { flex: 1; }

.how-we-work-service-title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color 0.2s;
}

.how-we-work-row:hover .how-we-work-service-title { color: var(--amber); }

.how-we-work-service-desc {
  display: block;
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.5;
}

.how-we-work-arrow {
  color: var(--ink-light);
  font-size: 16px;
  flex-shrink: 0;
  padding-top: 2px;
  transition: color 0.2s, transform 0.2s;
}

.how-we-work-row:hover .how-we-work-arrow {
  color: var(--amber);
  transform: translateX(3px);
}

/* PROCESS TIMELINE */
.process-timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--amber-mid);
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--amber-dark);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.timeline-connector {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin: 10px 0;
  min-height: 32px;
}

.timeline-body {
  flex: 1;
  padding-bottom: 52px;
  padding-top: 10px;
}

.timeline-item:last-child .timeline-body { padding-bottom: 0; }

.timeline-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.timeline-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
}

/* METRICS BAR */
.metrics-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.metric-icon {
  color: var(--amber);
  display: flex;
  align-items: center;
}

.metric-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.4;
}

/* PAIN DARK SECTION */
.pain-dark-section {
  background: var(--ink);
  padding: 80px 24px;
  text-align: center;
}

.pain-dark-line {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 48px;
  font-style: italic;
}

.pain-dark-line:last-of-type { margin-bottom: 0; }

.pain-dark-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 52px;
}

/* ABOUT BADGE ROW */
.about-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.about-badge-icon {
  font-size: 14px;
  line-height: 1;
}

/* TESTIMONIAL STARS + OUTCOME */
.testimonial-stars {
  font-size: 20px;
  color: var(--amber);
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.testimonial-outcome {
  display: inline-block;
  margin-top: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  color: var(--ink-mid);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 36px; }
  .pain-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-profile { grid-template-columns: 1fr; gap: 40px; }
  .about-name { font-size: 36px; }
  .about-badge-row { gap: 8px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pain-dark-line { font-size: 22px; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 24px; }
  .cta-section h2 { font-size: 30px; }
  .nav-links { display: none; }
  .section-title { font-size: 28px; }
  .maturity-grid { grid-template-columns: 1fr 1fr; }
  .tracks-grid { grid-template-columns: 1fr; }
  .how-we-work { grid-template-columns: 1fr; gap: 40px; }
  .pain-line { font-size: 22px; padding: 28px 24px; }
  .timeline-body p { font-size: 14px; }
}
