/* ============================================
   GROUNDS FOR CHANGE — Design Tokens & Styles
   ============================================ */

/* --- Type Scale --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* --- Spacing --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Fonts --- */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  /* --- Colors: Espresso & Forest --- */
  --color-bg:             #FBF8F4;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F5F0E8;
  --color-surface-offset: #EDE7DB;
  --color-divider:        #D4C9B8;
  --color-border:         #C4B8A4;

  --color-text:           #2C1810;
  --color-text-muted:     #6B5B4F;
  --color-text-faint:     #9A8B7D;
  --color-text-inverse:   #FBF8F4;

  --color-espresso:       #3E2723;
  --color-espresso-light: #5D4037;
  --color-espresso-dark:  #1B0F0A;

  --color-primary:        #2E7D32;
  --color-primary-hover:  #1B5E20;
  --color-primary-active: #145218;
  --color-primary-light:  #4CAF50;
  --color-primary-highlight: #E8F5E9;

  --color-accent:         #8BC34A;
  --color-warm:           #D4A373;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Shadows --- */
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 12px 32px rgba(44, 24, 16, 0.12);
  --shadow-xl: 0 20px 48px rgba(44, 24, 16, 0.16);

  /* --- Content Widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

body {
  background-color: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-hover);
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 248, 244, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  background: rgba(251, 248, 244, 0.95);
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-espresso);
}

.header__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.header__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .header__logo-text {
    font-size: var(--text-lg);
  }
}

.header__logo-text span {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.header__nav {
  display: none;
  gap: var(--space-6);
  list-style: none;
}

@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}

.header__nav a:hover {
  color: var(--color-espresso);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: none !important;
}

@media (min-width: 900px) {
  .header__cta {
    display: inline-flex !important;
  }
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-espresso);
}

@media (min-width: 900px) {
  .header__menu-btn { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-espresso);
  text-decoration: none;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-espresso);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-text-inverse);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text-inverse);
  border-color: rgba(255,255,255,0.5);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  color: var(--color-text-inverse);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--gofundme {
  background: #02A95C;
  color: white;
  border-color: #02A95C;
}

.btn--gofundme:hover {
  background: #028a4c;
  border-color: #028a4c;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 15, 10, 0.5) 0%,
    rgba(27, 15, 10, 0.7) 50%,
    rgba(27, 15, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-32) var(--space-6) var(--space-16);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.4);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-10);
  line-height: 1.6;
  max-width: 600px;
  margin-inline: auto;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

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

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

.section--dark {
  background: var(--color-espresso);
  color: var(--color-text-inverse);
}

.section--dark .section__subtitle {
  color: rgba(255,255,255,0.7);
}

.section--green {
  background: var(--color-primary);
  color: white;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section--dark .section__label {
  color: var(--color-accent);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  position: relative;
  overflow: hidden;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.problem__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.problem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.problem__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.problem__stat {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
}

.problem__stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.problem__stat-icon--red {
  background: #FBE9E7;
  color: #D84315;
}

.problem__stat-icon--orange {
  background: #FFF3E0;
  color: #E65100;
}

.problem__stat-icon--brown {
  background: #EFEBE9;
  color: var(--color-espresso);
}

.problem__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-espresso);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.problem__stat-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .solution__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.solution__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  order: -1;
}

@media (min-width: 768px) {
  .solution__image { order: 1; }
}

.solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.solution__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.solution__step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.solution__step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
}

.solution__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: var(--space-1);
}

.solution__step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   PRODUCTS / REVENUE CARDS
   ============================================ */

.products__intro {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
  aspect-ratio: 21/9;
}

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

.products__intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,15,10,0.85) 0%, rgba(27,15,10,0.6) 40%, rgba(27,15,10,0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-8);
  padding-bottom: var(--space-10);
}

.products__intro-text {
  color: white;
  font-size: var(--text-base);
  max-width: 600px;
  line-height: 1.6;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

.product-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
  background: var(--color-primary-highlight);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-espresso);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.product-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-surface-2);
  color: var(--color-text-muted);
}

/* ============================================
   SUPPORT SOCIAL LINKS
   ============================================ */

.support-social {
  margin-top: var(--space-10);
  text-align: center;
}

.support-social__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-6);
}

.support-social__links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.support-social__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.support-social__link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.support-social__link--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.support-social__link--linkedin {
  background: #0A66C2;
  color: white;
}

.support-social__link svg {
  flex-shrink: 0;
}

/* ============================================
   PILOT BUDGET BREAKDOWN
   ============================================ */

.pilot-breakdown {
  margin-top: var(--space-10);
  max-width: 900px;
  margin-inline: auto;
}

.pilot-breakdown__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-8);
  color: white;
}

.pilot-breakdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .pilot-breakdown__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pilot-breakdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-3);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
}

.pilot-breakdown__amount {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: white;
}

.pilot-breakdown__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.pilot-breakdown__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.pilot-breakdown__note {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-6);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================
   RED III / POLICY SECTION
   ============================================ */

.policy__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .policy__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.policy__text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.policy__highlight {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-5);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-block: var(--space-6);
}

.policy__highlight p {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 0;
}

.policy__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.policy__stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
}

.policy__stat-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.policy__stat-card p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* ============================================
   UNIVERSITY SECTION
   ============================================ */

.university__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .university__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.university__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.university__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.university__logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.university__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-espresso);
}

.university__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.university__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.university__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 2px;
}

.university__feature p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.university__feature strong {
  color: var(--color-espresso);
}

/* ============================================
   CROWDFUNDING SECTION
   ============================================ */

.crowdfunding {
  position: relative;
  overflow: hidden;
}

.crowdfunding__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1B5E20 100%);
}

.crowdfunding__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
                     radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
  background-size: 50px 50px;
}

.crowdfunding__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.crowdfunding__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.crowdfunding__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.crowdfunding__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  max-width: 900px;
  margin-inline: auto;
}

.crowdfunding__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.crowdfunding__feature-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-2);
}

.crowdfunding__feature-icon svg {
  fill: rgba(255,255,255,0.9);
}

.crowdfunding__feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}

.crowdfunding__feature p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}

.crowdfunding__target {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-8);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: var(--space-1);
}

.contact__info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-espresso);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

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

.contact__form .btn {
  align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-espresso-dark);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-16) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.footer__brand-logo img {
  width: 40px;
  height: 40px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: white;
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 300px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: white;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}

.footer__social a:hover {
  background: var(--color-primary);
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: white;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   STAT COUNTER ANIMATION
   ============================================ */

.counter {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  .products__intro {
    aspect-ratio: 16/9;
  }
  .products__intro-overlay {
    padding-bottom: var(--space-6);
  }
  .products__intro-text {
    font-size: var(--text-sm);
  }
}
