/* ============================================
   Savwee — Main Stylesheet
   "Refined Investment Wisdom"
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Primary */
  --savwee-navy: #1B2A4A;
  --savwee-gold: #C8963E;
  --savwee-gold-hover: #B8862E;

  /* Neutrals */
  --warm-white: #FAF8F5;
  --warm-cream: #F2EDE4;
  --warm-gray: #6B7280;
  --text-dark: #2D3748;

  /* Accents */
  --success-green: #2D6A4F;
  --alert-red: #C53030;

  /* Subtle */
  --border-light: #E8E0D4;
  --shadow-soft: 0 4px 20px rgba(27, 42, 74, 0.08);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--savwee-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--savwee-gold-hover);
}

/* --- Typography --- */
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--savwee-navy);
  line-height: 1.15;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--savwee-navy);
  line-height: 1.25;
}

h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--savwee-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--savwee-navy);
}

p {
  margin-bottom: 1rem;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--savwee-gold);
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--savwee-gold);
  margin-bottom: 12px;
  display: block;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream {
  background: var(--warm-cream);
}

.section--white {
  background: var(--warm-white);
}

.section--navy {
  background: var(--savwee-navy);
  color: white;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--savwee-gold), #D4A54A);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(200, 150, 62, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--savwee-gold-hover), #C89A3E);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 150, 62, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--savwee-navy);
  border: 2px solid var(--savwee-navy);
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: var(--savwee-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.2);
}

.btn-primary--large {
  padding: 20px 48px;
  font-size: 1.2rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav--transparent {
  background: white;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav--solid {
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 40px !important;
  width: auto !important;
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav__logo:hover img {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  color: var(--savwee-navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--savwee-gold);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.nav__dropdown-menu a:hover {
  background: var(--warm-cream);
  color: var(--savwee-gold);
}

.nav__cta {
  margin-left: 8px;
}

.nav__cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--savwee-navy);
  transition: all 0.3s ease;
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--savwee-navy);
  z-index: 999;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  display: block;
  color: white;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.nav__mobile a:hover {
  color: var(--savwee-gold);
}

.nav__mobile .btn-primary {
  margin-top: 24px;
  text-align: center;
}

/* --- Hero Section --- */
.hero {
  background: var(--savwee-navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.05) 0%, rgba(200, 150, 62, 0.02) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__below-cta {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Hero SVG motif */
.hero__motif {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  z-index: 0;
}

/* Stats Bar */
.stats-bar {
  background: white;
  padding: 48px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  margin-top: -40px;
  border-radius: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.stat-block {
  text-align: center;
  padding: 24px;
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border-light);
}

.stat-block .number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--savwee-gold);
  display: block;
}

.stat-block .label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --- Testimonial Cards --- */
.testimonial-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 42, 74, 0.1);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--savwee-gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-top: 24px;
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--savwee-navy);
  font-size: 0.95rem;
}

.testimonial-card__context {
  color: var(--warm-gray);
  font-size: 0.85rem;
}

.testimonial-card__stars {
  color: var(--savwee-gold);
  margin-top: 8px;
  font-size: 0.9rem;
}

/* --- Mentor Quote --- */
.mentor-quote {
  border-left: 4px solid var(--savwee-gold);
  padding: 24px 32px;
  background: var(--warm-cream);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--savwee-navy);
}

.mentor-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--warm-gray);
}

/* --- Image Placeholders --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--savwee-navy) 0%, #2D4A7A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--savwee-gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  min-height: 300px;
}

.img-placeholder--small {
  min-height: 200px;
  font-size: 1rem;
}

.img-placeholder--circle {
  width: 120px;
  height: 120px;
  min-height: auto;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* --- Cards --- */
.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--savwee-gold), #E8C875);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 42, 74, 0.12);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--savwee-navy);
  margin-bottom: 8px;
}

.card__letter {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--savwee-gold);
  margin-bottom: 8px;
}

.card__text {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Investor Cards --- */
.investor-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.investor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 42, 74, 0.12);
  border-color: var(--savwee-gold);
}

.investor-card__flag {
  font-size: 2rem;
  margin-bottom: 12px;
}

.investor-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--savwee-navy);
  margin-bottom: 4px;
}

.investor-card__title {
  color: var(--savwee-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.investor-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.investor-card__credential {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* --- Pain Points --- */
.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pain-point {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.pain-point__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--alert-red);
}

.pain-point__text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
}

/* --- Value Ladder / Journey --- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.journey__step {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.journey__step--active {
  border-color: var(--savwee-gold);
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.2);
}

.journey__step-badge {
  display: inline-block;
  background: var(--savwee-gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.journey__step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.journey__step-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--savwee-navy);
  margin-bottom: 8px;
}

.journey__step-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.journey__step-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--savwee-gold);
  font-size: 1.1rem;
}

/* --- Social Proof Wall --- */
.masonry {
  columns: 3;
  column-gap: 24px;
}

.masonry > * {
  break-inside: avoid;
  margin-bottom: 24px;
}

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
}

.trust-badge__value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--savwee-navy);
}

.trust-badge__label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Final CTA --- */
.final-cta {
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  color: var(--savwee-gold);
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.final-cta__quote {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.95rem;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 50%, #1B2A4A 100%);
  background-size: 200% 200%;
  animation: subtle-gradient 8s ease infinite;
  padding: 140px 0 60px;
  text-align: center;
}

@keyframes subtle-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline__item {
  position: relative;
  padding-bottom: 32px;
  padding-left: 24px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--savwee-gold);
  border-radius: 50%;
  border: 3px solid var(--warm-white);
}

.timeline__year {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--savwee-gold);
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline__text {
  color: var(--text-dark);
  font-size: 1rem;
}

/* --- FATARM Cards --- */
.fatarm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fatarm-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.fatarm-card__letter {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--savwee-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.fatarm-card__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--savwee-navy);
  margin-bottom: 12px;
}

.fatarm-card__text {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- FAQ --- */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq__question {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--savwee-navy);
  margin-bottom: 8px;
}

.faq__answer {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Programs Comparison --- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.program-card--featured {
  border-color: var(--savwee-gold);
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.2);
  position: relative;
}

.program-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--savwee-navy);
  margin-bottom: 8px;
}

.program-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--savwee-gold);
  margin-bottom: 16px;
}

.program-card__detail {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.program-card__detail:last-of-type {
  border-bottom: none;
}

.program-card .btn-primary,
.program-card .btn-secondary {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* --- Books --- */
.book-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 32px;
  align-items: center;
}

.book-card__cover {
  flex-shrink: 0;
  width: 180px;
}

.book-card__info h3 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.book-card__info p {
  color: var(--warm-gray);
  font-size: 1rem;
}

.book-card--coming-soon {
  opacity: 0.8;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 42, 74, 0.12);
  border-color: transparent;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__image--placeholder {
  background: linear-gradient(135deg, var(--savwee-navy), #2D4A7A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--savwee-gold);
  font-family: 'Playfair Display', serif;
  padding: 16px;
  text-align: center;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  display: inline-block;
  background: var(--warm-cream);
  color: var(--savwee-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--savwee-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card__excerpt {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* Blog Post */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.blog-post h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-post h3 {
  text-transform: none;
  letter-spacing: 0;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post p {
  margin-bottom: 16px;
}

.blog-post ul, .blog-post ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.blog-post li {
  margin-bottom: 8px;
}

.blog-post strong {
  color: var(--savwee-navy);
}

.blog-post__hero {
  background: var(--savwee-navy);
  padding: 140px 0 60px;
  text-align: center;
}

.blog-post__hero h1 {
  color: white;
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.blog-post__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Reading progress */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--savwee-gold);
  z-index: 1001;
  width: 0;
  transition: width 0.1s linear;
}

/* Author bio */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 32px;
  background: var(--warm-cream);
  border-radius: 12px;
  margin: 48px 0;
}

.author-bio__avatar {
  flex-shrink: 0;
}

.author-bio__name {
  font-weight: 700;
  color: var(--savwee-navy);
  margin-bottom: 4px;
}

.author-bio__text {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Related posts */
.related-posts {
  margin-top: 48px;
}

.related-posts h2 {
  margin-bottom: 24px;
}

.related-posts .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--savwee-navy);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--savwee-gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Footer --- */
.footer {
  background: var(--savwee-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity 0.2s ease;
}
.footer__logo-link:hover { opacity: 0.85; }

.footer__logo-img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 0.75rem;
  color: var(--savwee-gold);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover {
  background: var(--savwee-gold);
  color: #fff;
  transform: translateY(-2px);
}
.footer__social svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
  flex-shrink: 0;
}

.footer h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--savwee-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
  color: var(--savwee-gold);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease;
  animation: whatsapp-bounce 2s ease-in-out 1s 3;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--savwee-navy);
  color: white;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
  font-size: 0.9rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--savwee-gold);
  text-decoration: underline;
}

.cookie-banner__accept {
  background: var(--savwee-gold);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* --- 404 --- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--savwee-navy);
  text-align: center;
  padding: 24px;
}

.page-404 h1 {
  color: var(--savwee-gold);
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 16px;
}

.page-404 p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* --- Testimonials Filter --- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--savwee-navy);
  color: white;
  border-color: var(--savwee-navy);
}

/* --- Values List --- */
.values-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.values-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.05rem;
  display: flex;
  gap: 12px;
}

.values-list li strong {
  color: var(--savwee-navy);
}

/* --- Section Subtitle --- */
.section__subtitle {
  color: var(--warm-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 16px auto 40px;
  text-align: center;
}

/* --- Program Detail Page --- */
.program-detail {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.program-detail h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.program-detail ul {
  list-style: none;
  padding: 0;
}

.program-detail ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.program-detail ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a:hover {
  color: var(--savwee-gold);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* --- CTA Block (reusable) --- */
.cta-block {
  text-align: center;
  padding: 48px 24px;
}

.cta-block h2 {
  margin-bottom: 16px;
}

.cta-block p {
  color: var(--warm-gray);
  margin-bottom: 24px;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }
.stagger > *:nth-child(4) { transition-delay: 0.36s; }
.stagger > *:nth-child(5) { transition-delay: 0.48s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* --- Counter Animation --- */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--savwee-gold), #E8C875, var(--savwee-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Floating animation --- */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Pulse glow for CTA --- */
.btn-primary--pulse {
  position: relative;
}

.btn-primary--pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: var(--savwee-gold);
  opacity: 0;
  z-index: -1;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.08); }
}

/* --- Reveal line decoration --- */
.reveal-line {
  position: relative;
  display: inline-block;
}

.reveal-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--savwee-gold);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-line.visible::after {
  width: 60px;
}

/* --- Parallax hero overlay grain texture --- */
.hero--premium {
  position: relative;
  overflow: hidden;
}

.hero--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 150, 62, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* --- Section divider --- */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--savwee-gold);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* --- Shimmer loading effect --- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Number ticker style --- */
.stat-number--large {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--savwee-gold);
  line-height: 1;
}

/* --- Glass card --- */
.card--glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Hover lift for images --- */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 42, 74, 0.15);
}

/* --- Scroll progress indicator --- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--savwee-gold), #E8C875);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4, .comparison-grid, .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-posts .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__motif {
    display: none;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .fatarm-grid,
  .pain-points,
  .comparison-grid,
  .journey,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    columns: 1;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .related-posts .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .book-card {
    flex-direction: column;
    text-align: center;
  }

  .stats-bar .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    gap: 24px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .stat-block:not(:last-child)::after {
    display: none;
  }

  .event-gallery { grid-template-columns: 1fr; }
  .event-gallery__feature { grid-column: span 1; }
}

/* ============================================
   Premium Design Enhancements
   ============================================ */

/* --- Gradient accent bar on sections --- */
.section--cream::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* --- Enhanced image gallery --- */
.event-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.event-gallery__feature {
  grid-row: span 2;
}

.event-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.event-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(27, 42, 74, 0.18);
}

/* --- Founder quote highlight --- */
.founder-quote {
  position: relative;
  padding: 32px 32px 32px 40px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.06), rgba(200, 150, 62, 0.02));
  border-left: 4px solid var(--savwee-gold);
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 2.5rem;
  color: var(--savwee-gold);
  opacity: 0.4;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* --- Number highlight badge --- */
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--savwee-gold), #D4A54A);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.25);
}

/* --- Enhanced card variants --- */
.card--featured {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--savwee-gold), #E8C875) border-box;
}

.card--dark {
  background: var(--savwee-navy);
  color: white;
  border-color: rgba(200, 150, 62, 0.2);
}

.card--dark h3,
.card--dark .card__title {
  color: white;
}

.card--dark .card__text {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Trust strip --- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-gray);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 150, 62, 0.1);
  color: var(--savwee-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Milestone counter --- */
.milestone-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--savwee-navy) 0%, #2D4A7A 100%);
  border-radius: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.milestone-bar__item {
  text-align: center;
  color: white;
}

.milestone-bar__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--savwee-gold);
  display: block;
}

.milestone-bar__label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* --- Image caption overlay --- */
.img-captioned {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.img-captioned img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.img-captioned:hover img {
  transform: scale(1.03);
}

.img-captioned__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.85), transparent);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}
