:root {
  --gold: #F5B731;
  --gold-light: #FFF4D6;
  --gold-dark: #D49A1A;
  --charcoal: #1A1A2E;
  --dark: #16213E;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--gray-900);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--gray-900);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 183, 49, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo img {
  height: 160px;
  width: auto;
  margin: -30px 0;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s ease;
}

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

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 35%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.hero-text {
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--gold-dark);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  min-width: 220px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.4;
}

.social-proof-bar {
  background: var(--gray-900);
  padding: 20px 0;
}

.social-proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.featured-text {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
}

.media-logo {
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.media-logo:hover {
  opacity: 1;
}

.btn-cbs {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 22px;
  font-size: 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.btn-cbs:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: translateY(-1px);
}

.media-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.media-logo svg {
  height: 28px;
  width: auto;
}

.problem-section {
  padding: 120px 0;
  background: var(--white);
}

.problem-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.problem-text h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 28px;
  color: var(--gray-900);
}

.problem-text p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.problem-text strong {
  color: var(--gray-900);
}

.guide-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.guide-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.guide-intro h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.guide-description {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

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

.guide-stat-item {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.guide-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.guide-stat-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.guide-stat-item p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.plan-section {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.plan-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(245, 183, 49, 0.3);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  flex-shrink: 0;
}

.plan-cta {
  margin-top: 56px;
}

.boxes-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.boxes-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 56px;
}

.boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.box-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.box-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.box-card:hover .box-image img {
  transform: scale(1.05);
}

.box-card-content {
  padding: 24px;
}

.box-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.box-card-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.box-contents {
  max-width: 900px;
  margin: 0 auto;
}

.box-contents h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
}

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

.content-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.content-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.content-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.content-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.testimonials-section {
  padding: 120px 0;
  background: var(--white);
}

.testimonials-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-section .section-eyebrow {
  text-align: center;
}

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

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease;
}

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

.testimonial-quote {
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.failure-section {
  padding: 100px 0;
  background: var(--gray-900);
  text-align: center;
}

.failure-content {
  max-width: 640px;
  margin: 0 auto;
}

.failure-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.failure-content p {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 36px;
}

.ways-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.ways-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 56px;
}

.ways-section .section-eyebrow {
  text-align: center;
}

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

.way-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.way-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.way-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(to bottom, var(--gold-light), var(--white));
}

.way-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--gray-900);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.way-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.way-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.way-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer {
  background: var(--gray-900);
  padding: 64px 0 0;
  color: var(--gray-400);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 24px 0 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--gray-900);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

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

  .boxes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .problem-section,
  .testimonials-section,
  .ways-section {
    padding: 80px 0;
  }

  .guide-section,
  .plan-section,
  .boxes-section {
    padding: 80px 0;
  }

  .failure-section {
    padding: 70px 0;
  }

  .plan-section h2 {
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 1);
  }

  .nav-container {
    height: 72px;
  }

  .nav-logo img {
    height: 80px;
    width: auto;
    margin: -4px 0;
  }

  .nav-toggle {
    display: flex;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    padding: 16px 0 24px;
    gap: 4px;
    width: 100%;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar.nav-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .navbar.nav-open .nav-container {
    height: auto;
    min-height: 72px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: var(--gray-50);
  }

  .nav-links .btn-nav {
    margin-top: 8px;
    text-align: center;
    font-size: 1rem;
    padding: 14px 24px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 0;
    background-position: center top;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.85) 40%,
      rgba(255, 255, 255, 0.7) 70%,
      rgba(255, 255, 255, 0.5) 100%
    );
  }

  .hero-content {
    padding: 32px 20px 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stat {
    padding: 32px 28px;
    min-width: auto;
    width: 100%;
    max-width: 260px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .social-proof-bar .container {
    flex-direction: column;
    gap: 12px;
    padding: 4px 20px;
  }

  .social-proof-bar {
    padding: 16px 0;
  }

  .problem-section {
    padding: 60px 0;
  }

  .problem-text h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .problem-text p {
    font-size: 1rem;
  }

  .guide-section {
    padding: 60px 0;
  }

  .guide-intro {
    margin-bottom: 40px;
  }

  .guide-intro h2 {
    font-size: 1.6rem;
  }

  .guide-stats {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .guide-stat-item {
    padding: 32px 24px;
  }

  .plan-section {
    padding: 60px 0;
  }

  .plan-section h2 {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .step {
    padding: 0 16px;
    max-width: 320px;
  }

  .step-connector {
    height: 24px;
  }

  .boxes-section {
    padding: 60px 0;
  }

  .boxes-section h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .boxes-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
    margin-bottom: 48px;
  }

  .box-image {
    height: 220px;
  }

  .box-card-content {
    padding: 20px;
  }

  .box-contents h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
  }

  .content-item {
    padding: 20px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section h2 {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .failure-section {
    padding: 60px 0;
  }

  .failure-content h2 {
    font-size: 1.6rem;
  }

  .failure-content p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .ways-section {
    padding: 60px 0;
  }

  .ways-section h2 {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .ways-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .way-card {
    padding: 32px 24px;
  }

  .footer {
    padding: 48px 0 0;
  }

  .footer-content {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    height: 100px;
    margin: 0 auto 12px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .footer-col {
    text-align: center;
    min-width: 120px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 24px 16px 32px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-stat {
    padding: 24px 20px;
    max-width: 220px;
  }

  .problem-text h2,
  .guide-intro h2,
  .plan-section h2,
  .boxes-section h2,
  .testimonials-section h2,
  .failure-content h2,
  .ways-section h2 {
    font-size: 1.4rem;
  }

  .section-eyebrow {
    font-size: 0.75rem;
  }

  .guide-description {
    font-size: 0.95rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .box-image {
    height: 180px;
  }

  .content-item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .content-icon {
    margin: 0 auto;
  }

  .social-proof-bar .container {
    padding: 4px 16px;
  }

  .media-logo svg {
    height: 22px;
  }

  .btn-cbs {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .container {
    padding: 0 16px;
  }
}

.story-hero {
  padding: 160px 0 60px;
  background: var(--gold);
  text-align: center;
}

.story-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.story-title-line {
  width: 80px;
  height: 3px;
  background: var(--gray-900);
  margin: 0 auto 24px;
}

.story-subtitle {
  font-size: 1rem;
  color: var(--gray-800);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.story-content-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 12px;
}

.story-photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.story-photo-main {
  grid-column: 1 / -1;
  max-height: 350px;
}

.story-photo-secondary,
.story-photo-tertiary {
  max-height: 220px;
}

.story-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.story-photo-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.story-photo-single {
  margin-bottom: 12px;
}

.story-photo-single img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.story-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 24px;
}

.story-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-title {
    font-size: 2.6rem;
  }

  .story-hero {
    padding: 140px 0 50px;
  }
}

@media (max-width: 768px) {
  .story-title {
    font-size: 2rem;
  }

  .story-hero {
    padding: 100px 0 36px;
  }

  .story-content-section {
    padding: 40px 0 50px;
  }

  .story-layout {
    gap: 28px;
  }

  .story-photo-collage {
    gap: 8px;
    margin-bottom: 8px;
  }

  .story-photo-main {
    max-height: 240px;
  }

  .story-photo-secondary,
  .story-photo-tertiary {
    max-height: 160px;
  }

  .story-photo-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .story-photo-row img {
    height: 140px;
  }

  .story-photo-single img {
    height: 180px;
  }

  .story-text p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .story-ctas {
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }

  .story-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .story-title {
    font-size: 1.65rem;
  }

  .story-subtitle {
    font-size: 0.9rem;
  }

  .story-photo-main {
    max-height: 200px;
  }

  .story-photo-secondary,
  .story-photo-tertiary {
    max-height: 130px;
  }

  .story-photo-row img {
    height: 110px;
  }

  .story-photo-single img {
    height: 150px;
  }
}

.send-hero {
  padding: 160px 0 60px;
  background: var(--gold);
  text-align: center;
}

.send-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.send-title-line {
  width: 80px;
  height: 3px;
  background: var(--gray-900);
  margin: 0 auto 24px;
}

.send-subtitle {
  font-size: 1rem;
  color: var(--gray-800);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.send-form-section {
  padding: 60px 0 100px;
  background: var(--white);
}

.send-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .send-hero {
    padding: 100px 0 36px;
  }

  .send-title {
    font-size: 2rem;
  }

  .send-subtitle {
    font-size: 0.9rem;
  }

  .send-form-section {
    padding: 32px 0 48px;
  }

  .send-form-wrapper {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .send-title {
    font-size: 1.65rem;
  }
}

.donate-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donate-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.donate-hero-content {
  position: relative;
  z-index: 2;
}

.donate-eyebrow {
  color: var(--gold) !important;
}

.donate-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donate-title-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.donate-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.donate-options-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.donate-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.donate-option-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donate-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.donate-option-icon {
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.donate-option-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.donate-option-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.donate-address {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.donate-address strong {
  color: var(--gray-900);
}

.contact-section {
  padding: 80px 0 100px;
  background: var(--gray-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.contact-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: border-color 0.2s ease;
  background: var(--white);
}

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

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
}

@media (max-width: 968px) {
  .donate-options-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .donate-title {
    font-size: 2.2rem;
  }

  .donate-options-section {
    padding: 60px 0 80px;
  }

  .contact-section {
    padding: 60px 0 80px;
  }
}

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

  .donate-title {
    font-size: 1.8rem;
  }

  .donate-description {
    font-size: 0.9rem;
  }

  .donate-options-section {
    padding: 48px 0 60px;
  }

  .donate-option-card {
    padding: 32px 24px;
  }

  .contact-section {
    padding: 48px 0 60px;
  }

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

  .contact-text h2 {
    font-size: 1.5rem;
  }

  .contact-form .btn {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .donate-title {
    font-size: 1.5rem;
  }

  .donate-option-card {
    padding: 28px 20px;
  }
}
