/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #1a2332;
  --primary-foreground: #f8f9fa;
  --secondary: #2d3748;
  --secondary-foreground: #f8f9fa;
  --accent: #d4a574;
  --accent-foreground: #1a2332;
  --background: #f8f9fa;
  --foreground: #1a2332;
  --card: #ffffff;
  --card-foreground: #1a2332;
  --muted: #e2e8f0;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-size: 1rem;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background-color 0.15s, opacity 0.15s, transform 0.15s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn--accent:hover {
  opacity: 0.9;
}

.btn--outline-white {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-header__logo img {
  height: 2.5rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__heading {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .hero__heading {
    font-size: 3.75rem;
  }
}

.hero__heading span {
  color: var(--accent);
}

.hero__body {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.hero__trust-items {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: center;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.hero__trust-badge::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.hero__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__ctas .btn {
  min-width: 220px;
  justify-content: center;
  text-align: center;
}

.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero__image img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  object-position: center top;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section--white {
  background-color: #fff;
}

.section--muted {
  background-color: #f1f5f9;
}

.section--primary {
  background-color: var(--primary);
  color: #fff;
}

.section--secondary {
  background-color: var(--secondary);
  color: #fff;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 2.75rem;
  }
}

.section__title--white {
  color: #fff;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 42rem;
}

.section__subtitle--white {
  color: rgba(255,255,255,0.8);
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: #fff;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .problem-section {
    padding: 7rem 0;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.problem-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.problem-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.problem-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.prevent-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2rem;
}

/* ===== OUTCOME ROWS ===== */
.outcome-rows {
  display: flex;
  flex-direction: column;
}

.outcome-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.outcome-row:first-child {
  border-top: 1px solid var(--border);
}

.outcome-row:hover {
  background: rgba(255,255,255,0.6);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.outcome-row__num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 4rem;
  text-align: right;
}

.outcome-row__content {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex: 1;
}

@media (max-width: 639px) {
  .outcome-row__content {
    flex-direction: column;
    gap: 0.375rem;
  }
}

.outcome-row__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  min-width: 14rem;
}

.outcome-row__body {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ===== OUTCOMES SECTION ===== */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--accent);
  transition: box-shadow 0.3s, transform 0.3s;
}

.outcome-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.outcome-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.outcome-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ===== PARTNER SECTION ===== */
.partner-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .partner-section {
    padding: 7rem 0;
  }
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partner-image img {
  width: 100%;
  object-fit: cover;
}

/* ===== TIER CARDS ===== */
.tier-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tier-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.tier-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.tier-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  transform: translateY(-4px);
}

.tier-card--featured:hover {
  transform: translateY(-8px);
}

.tier-card__badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.tier-card__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.tier-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.tier-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tier-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--background);
  border-radius: calc(var(--radius) - 2px);
}

.tier-card__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.tier-card__meta-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

.tier-card__meta-value {
  color: var(--primary);
  font-weight: 600;
}

.tier-card__outcomes {
  margin-bottom: 1.5rem;
}

.tier-card__outcomes h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.tier-card__outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.tier-card__outcome-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

/* ===== HOW IT WORKS STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.step-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.step-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.step-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.step-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ===== BIO CARDS ===== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.bio-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.bio-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.bio-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.2rem;
}

.bio-card__role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}

.bio-card__body {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== PROOF SECTION ===== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.proof-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.proof-card__image {
  height: 12rem;
  overflow: hidden;
  background: var(--muted);
}

.proof-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card__content {
  padding: 1.5rem;
}

.proof-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.proof-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ===== CASE STUDY ===== */
.case-study {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  margin-top: 1.5rem;
}

.case-study__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
  font-family: 'Inter', sans-serif;
}

.case-study__subtitle {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.case-study__metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}

.metric__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 5rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--secondary);
  color: #fff;
  padding: 3rem 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.site-footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.site-footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.site-footer__col a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.site-footer__logo {
  height: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 4rem 0 5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 6rem 0 7rem;
  }
}

.page-hero h1 {
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  line-height: 1.7;
}

/* ===== HOW IT WORKS PAGE ===== */
.phase {
  padding: 3rem 0;
}

.phase:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.phase__number {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.phase__title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.phase__body {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 48rem;
  margin-bottom: 2rem;
}

.phase__sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .phase__sub-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.phase-sub-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.phase-sub-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.375rem;
  font-family: 'Inter', sans-serif;
}

.phase-sub-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.deliverable-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .timeline-list {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item__tag {
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.timeline-item__content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.timeline-item__content p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== SERVICES PAGE ===== */
.service-tier {
  padding: 3rem 0;
}

.service-tier:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.service-tier__header {
  margin-bottom: 2rem;
}

.service-tier__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}

.service-tier__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.service-tier__title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.service-tier__subtitle {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.service-tier__body {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.service-tier__meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.meta-item__value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
}

.meta-item__note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.comparison-table th {
  text-align: center;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  background: var(--background);
  border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--foreground);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: #fafbfc;
}

.check-yes {
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 700;
}

.check-no {
  color: var(--muted);
  font-size: 1.125rem;
}

/* ===== NOT A FIT CARDS ===== */
.not-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .not-fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.not-fit-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.not-fit-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.not-fit-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.not-fit-card__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.why-card__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.why-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.why-card__body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a, .site-nav .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }

  .site-header .container {
    position: relative;
  }
}
