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

:root {
  --primary-brown: #8b6f47;
  --dark-brown: #6b5437;
  --light-brown: #d4c5b5;
  --light-beige: #f5f1ed;
  --accent-gold: #d4af37;
  --teal: #4dd4ac;
  --dark-text: #1a1a1a;
  --light-text: #666;
  --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-text);
  background: #fff;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

@font-face {
  font-family: "TomatoGrotesk";
  src: url("font/Tomato_Grotesk/TomatoGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TomatoGrotesk";
  src: url("font/Tomato_Grotesk/TomatoGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TomatoGrotesk";
  src: url("font/Tomato_Grotesk/TomatoGrotesk-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "TomatoGrotesk";
  src: url("font/Tomato_Grotesk/TomatoGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: "TomatoGrotesk", sans-serif;
}

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

/* Utilities */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  color: var(--primary-brown);
}

.highlight-italic {
  color: var(--primary-brown);
  font-style: italic;
  font-weight: 600;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
  text-decoration: none;
}

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-brown);
}

.nav-link.active {
  color: var(--primary-brown);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-nav-outline {
  padding: 10px 18px;
  border: 1px solid rgba(107, 84, 55, 0.3);
  color: var(--dark-text);
  background: transparent;
}

.btn-nav-outline:hover {
  border-color: var(--primary-brown);
  color: var(--primary-brown);
}

.btn-nav-primary {
  padding: 10px 22px;
  background: var(--primary-brown);
  color: #fff;
  box-shadow: 0 12px 24px rgba(139, 111, 71, 0.18);
}

.btn-nav-primary:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Buttons */
.btn-primary {
  background: var(--primary-brown);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 111, 71, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-brown);
  color: white;
}

a.btn-primary,
a.btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-footer {
  background: var(--primary-brown);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-footer:hover {
  background: var(--dark-brown);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff 0%, var(--light-beige) 100%);
  padding: 80px 0;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-sponsors {
  margin-top: 45px;
}

.hero-sponsors-label {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sponsor-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0.7;
  justify-content: space-between;
}

.sponsor-logos img,
.sponsor-marquee img {
  height: 32px;
  display: block;
  filter: grayscale(100%);
}

.sponsor-marquee {
  display: none;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: sponsorMarquee 18s linear infinite;
  opacity: 0.7;
}

@keyframes sponsorMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.phone-mockup {
  perspective: 1000px;
}

.phone-frame {
  border-radius: 40px;
  padding: 12px;
  transform: rotateY(-15deg);
  transition: transform 0.3s ease;
}

.phone-frame:hover {
  transform: rotateY(-10deg);
}

.phone-frame img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
  line-height: 1.6;
}

/* Journey Section */
.journey {
  padding: 80px 0;
  background: white;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.journey-card {
  background: var(--light-beige);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.journey-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.journey-card p {
  color: var(--light-text);
  font-size: 14px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #fafafa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefit-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefit-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stat {
  background: var(--light-beige);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
}

/* Invest Goals Section */
.invest-goals {
  padding: 80px 0;
  background: #fff5f5;
}

.goals-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.goals-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.goals-text p {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.6;
}

.goals-list {
  list-style: none;
  margin-bottom: 25px;
}

.goals-list li {
  padding: 10px 0;
  color: var(--dark-text);
  font-weight: 500;
}

.link-arrow {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-arrow:hover {
  transform: translateX(5px);
}

.goals-image img {
  width: 100%;
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

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

/* Smart Earn Section */
.smart-earn {
  padding: 80px 0;
  background: #f0f8ff;
  text-align: center;
}

.smart-earn h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.smart-earn > p {
  color: var(--light-text);
  margin-bottom: 50px;
}

.earn-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.earn-item {
  display: flex;
  gap: 15px;
  text-align: left;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.check {
  color: var(--teal);
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.earn-item h4 {
  margin-bottom: 5px;
}

.earn-item p {
  color: var(--light-text);
  font-size: 14px;
}

.earn-image img {
  max-width: 300px;
  margin: 0 auto;
}

/* Copy Overview Section */
.copy-overview {
  padding: 90px 0;
  background: #fafafa;
}

.copy-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.copy-overview-intro h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.copy-overview-intro p {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.copy-overview-subtext {
  margin-top: -5px;
}

.copy-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-brown);
  font-weight: 600;
  margin-bottom: 15px;
}

.copy-overview-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.copy-overview-actions .btn-secondary {
  border-color: var(--dark-brown);
  color: var(--dark-brown);
}

.copy-overview-actions .btn-secondary:hover {
  background: var(--dark-brown);
  color: white;
}

.copy-overview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.copy-feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.copy-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.copy-feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.copy-feature-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Statistics Section */
.statistics {
  padding: 90px 0;
  background: #fff;
}

.stats-container {
  max-width: 900px;
}

.stats-heading {
  text-align: center;
  margin-bottom: 60px;
}

.stats-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-emphasis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat-figure {
  font-size: 56px;
  font-weight: 700;
  font-family: "TomatoGrotesk", sans-serif;
  color: var(--dark-text);
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: 48px;
  font-weight: 700;
  font-family: "TomatoGrotesk", sans-serif;
  color: var(--primary-brown);
}

.stat-flag-img {
  width: 36px;
  height: 24px;
  object-fit: contain;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-text);
  font-family: "Segoe UI", sans-serif;
}

/* Copy Steps Section */
.copy-steps {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff 0%, #f7f9f8 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(141, 111, 71, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-brown);
  color: white;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, var(--light-beige) 100%);
  position: relative;
}

.faq-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.faq-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.faq-accordion {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(107, 84, 55, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.faq-item.open {
  border-color: rgba(139, 111, 71, 0.6);
  transform: translateY(-4px);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-toggle:focus-visible {
  outline: 2px solid var(--primary-brown);
  outline-offset: 4px;
}

.faq-item.open .faq-toggle {
  color: var(--dark-brown);
}

.faq-question {
  flex: 1;
}

.faq-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--light-text);
  line-height: 1.7;
  text-align: left;
}

.faq-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid rgba(107, 84, 55, 0.3);
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(245, 241, 237, 0.8);
}

.faq-view-all:hover {
  border-color: var(--primary-brown);
  color: white;
  background: var(--primary-brown);
}

/* Build Future Section */
.build-future {
  padding: 80px 0;
  background: white;
}

.build-future h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

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

.build-form {
  background: var(--light-beige);
  padding: 30px;
  border-radius: 12px;
}

.build-form label {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.range-slider {
  width: 100%;
  margin-bottom: 20px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #ddd 0%, #ddd 100%);
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-brown);
  cursor: pointer;
  transition: background 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  background: var(--dark-brown);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-brown);
  cursor: pointer;
  border: none;
}

.range-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

#rangeValue {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-brown);
}

.timeline {
  margin-top: 30px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-brown);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.timeline-item strong {
  display: block;
}

.timeline-item p {
  color: var(--light-text);
  font-size: 14px;
}

.build-chart {
  position: relative;
}

.chart-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.chart-info {
  text-align: center;
  margin-top: 20px;
}

.chart-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-brown);
}

.chart-info p {
  color: var(--light-text);
}

/* Explore Section */
.explore {
  padding: 80px 0;
  background: white;
}

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

.explore-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.explore-content p {
  color: var(--light-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.explore-image img,
.explore-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #fafafa;
}

.testimonials h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card p {
  color: var(--light-text);
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 16px;
  color: var(--primary-brown);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-beige) 0%, #fff 100%);
  text-align: center;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.newsletter > p {
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-brown);
}

/* Footer */
.footer {
  background: #2a2a2a;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

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

.footer-col a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #999;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, #fff 0%, var(--light-beige) 100%);
  padding: 140px 0 100px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.about-hero-content p {
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 540px;
}

.about-hero-actions {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.about-hero-actions .btn-primary,
.about-hero-actions .btn-secondary {
  width: 100%;
}

.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.about-metric-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-metric-card span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 8px;
}

.about-metric-card p {
  color: var(--light-text);
}

.about-story {
  padding: 100px 0;
  background: white;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-story-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-story-text p {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.7;
}

.about-story-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.about-story-highlight {
  background: var(--light-beige);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.about-story-highlight h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.about-story-highlight p {
  color: var(--light-text);
  font-size: 14px;
}

.about-story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-pillars {
  padding: 100px 0;
  background: #fafafa;
}

.about-pillars .section-header {
  margin-bottom: 40px;
  text-align: left;
  max-width: 720px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.about-pillar-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-pillar-card h3 {
  font-size: 22px;
}

.about-pillar-card p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
}

.about-values {
  padding: 90px 0;
  background: white;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-value-card {
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: linear-gradient(135deg, #fff 0%, #fdf8f1 100%);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 212, 172, 0.15), transparent);
  opacity: 0.7;
}

.about-value-card h4 {
  position: relative;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.about-value-card p {
  position: relative;
  color: var(--light-text);
  line-height: 1.6;
}

.about-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--light-beige) 0%, #fff 100%);
  text-align: center;
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-cta p {
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .cta-actions {
  display: grid;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}

.about-cta .cta-actions .btn-primary,
.about-cta .cta-actions .btn-secondary {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-sponsors {
    margin-top: 30px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero-sponsors-label {
    margin-bottom: 12px;
  }

  .sponsor-logos {
    display: none;
  }

  .sponsor-marquee {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }

  .sponsor-marquee img {
    height: 28px;
  }

  .marquee-track {
    gap: 20px;
  }

  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .nav-brand {
    font-size: 20px;
  }

  .nav-logo {
    height: 32px;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 110;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 24px;
    padding: 24px 24px 32px;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-links {
    margin-top: 8px;
  }

  .mobile-nav-cta .btn-nav-outline:hover {
    background: rgba(107, 84, 55, 0.08);
  }

  .benefits-grid,
  .goals-content,
  .build-grid,
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .copy-overview-grid {
    grid-template-columns: 1fr;
  }

  .copy-overview-intro h2 {
    font-size: 32px;
  }

  .copy-overview-features {
    grid-template-columns: 1fr;
  }

  .copy-overview-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .steps-grid,
  .faq-accordion {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 32px;
  }

  .faq-toggle {
    padding: 20px 22px;
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-bottom {
    justify-content: center;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .stats-grid {
    gap: 24px;
    max-width: 600px;
  }

  .stats-heading h2 {
    font-size: 32px;
  }

  .stat-figure {
    font-size: 48px;
  }

  .stat-suffix {
    font-size: 40px;
  }

  .about-hero {
    padding: 180px 0 90px;
  }

  .about-hero-content h1 {
    font-size: 32px;
  }

  .about-hero-grid,
  .about-story-grid {
    gap: 40px;
  }

  .about-hero-metrics,
  .about-story-highlights,
  .about-pillars-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-actions,
  .about-cta .cta-actions {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .sponsor-marquee img {
    height: 24px;
  }

  .marquee-track {
    gap: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .nav-wrapper {
    padding-right: 44px;
  }

  .nav-brand {
    font-size: 19px;
  }

  .nav-toggle {
    right: 0;
  }

  .nav-logo {
    height: 30px;
  }

  .mobile-menu {
    padding: 20px 20px 28px;
  }

  .mobile-nav-links .nav-link {
    font-size: 16px;
  }
  .about-hero {
  .about-hero {
    padding: 190px 0 80px;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-story-text h2,
  .about-cta h2 {
    font-size: 26px;
  }

  .stats-heading h2 {
    font-size: 28px;
  }

  .stat-figure {
    font-size: 40px;
  }

  .stat-suffix {
    font-size: 32px;
  }

  .stat-flag-img {
    width: 28px;
    height: 18px;
  }

  .copy-overview-intro h2 {
    font-size: 28px;
  }

  .copy-overview-actions {
    gap: 12px;
  }

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

  .faq-heading {
    font-size: 28px;
  }

  .faq-toggle {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
