/* ===================================================
   GOGI FEEDS — Main Stylesheet
   Color Palette inspired by logo: cream bg, dark brown, red accent
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --cream:        #F5EFE9;
  --cream-dark:   #EDE3D9;
  --brown:        #2C1F1A;
  --brown-mid:    #4A3128;
  --brown-light:  #7A5C4E;
  --red:          #D93A2B;
  --red-dark:     #B52E22;
  --red-light:    #F4A49D;
  --white:        #FFFFFF;
  --text-dark:    #1E1410;
  --text-mid:     #5A4039;
  --text-light:   #9A7B70;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    48px;

  --shadow-sm:    0 2px 8px rgba(44,31,26,.08);
  --shadow-md:    0 8px 32px rgba(44,31,26,.12);
  --shadow-lg:    0 20px 60px rgba(44,31,26,.18);

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label.light { color: var(--red-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}
.section-sub.light { color: rgba(255,255,255,0.75); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(217,58,43,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,58,43,.4);
}
.btn-ghost {
  color: var(--brown);
  border-color: var(--brown-light);
}
.btn-ghost:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-outline {
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-ghost-white {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(245,239,233,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(217,58,43,.3);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217,58,43,.4) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(217,58,43,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(44,31,26,0.04) 0%, transparent 60%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(44,31,26,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.hero .container { display: none; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,58,43,0.1);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(217,58,43,0.2);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
  font-family: var(--font-serif);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-quote {
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  background: rgba(217,58,43,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.hero-quote p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 6px;
}
.hero-quote cite {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: normal;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 460px;
}
.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217,58,43,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 320px; height: 320px; animation: ringPulse 4s infinite; }
.ring-2 { width: 420px; height: 420px; animation: ringPulse 4s infinite 1s; }
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.04); }
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card--main {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  padding: 28px 36px;
  min-width: 180px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card--secondary {
  top: 15%; right: 5%;
  animation-delay: 0.8s;
}
.hero-card--tertiary {
  bottom: 15%; left: 5%;
  animation-delay: 1.6s;
}
@keyframes floatCard {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}
.hero-card--secondary { animation: floatAlt 4s ease-in-out infinite 0.8s; }
.hero-card--tertiary { animation: floatAlt 4s ease-in-out infinite 1.6s; }
@keyframes floatAlt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.card-icon { font-size: 2rem; margin-bottom: 8px; }
.card-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brown);
}
.hero-card--main .card-value { font-size: 2.6rem; }

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--brown);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 500;
}
.ticker-track span {
  display: inline-block;
  padding: 0 10px;
  letter-spacing: 0.05em;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MISSION ===== */
.mission { padding: 100px 0; background: var(--white); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}
.mission-text p:last-of-type { margin-bottom: 32px; }
.mission-text strong { color: var(--brown); }
.mission-visual { display: flex; flex-direction: column; gap: 28px; }
.mission-quote-block {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
  opacity: 0.3;
}
.mission-quote-block p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.quote-author strong {
  display: block;
  color: var(--brown);
  font-weight: 700;
}
.quote-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217,58,43,0.2);
}
.pillar-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.pillar p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ===== IMPACT ===== */
.impact {
  padding: 100px 0;
  position: relative;
  color: var(--white);
}
.impact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 60%, #6B2D28 100%);
  z-index: 0;
}
.impact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.impact .container { position: relative; z-index: 1; }
.impact .section-header { margin-bottom: 64px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}
.stat-card.featured {
  background: var(--red);
  border-color: var(--red-dark);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(217,58,43,0.4);
}
.stat-card.featured:hover {
  background: var(--red-dark);
  transform: scale(1.04) translateY(-4px);
}
.stat-icon { font-size: 2rem; margin-bottom: 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.stat-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.impact-update-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.impact-update-note a { color: var(--red-light); text-decoration: underline; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--cream); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 64px;
}
.step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217,58,43,0.2);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(217,58,43,0.1);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.step-icon { font-size: 2.4rem; margin-bottom: 20px; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}
.step-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.step-connector {
  font-size: 1.8rem;
  color: var(--red);
  opacity: 0.5;
  flex-shrink: 0;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--cream-dark);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tier-card.popular {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(217,58,43,.15);
}
.tier-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}
.tier-popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
}
.tier-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.tier-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 8px;
}
.tier-amount span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-light);
  font-weight: 400;
}
.tier-impact {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.tier-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.tier-perks li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 6px 0;
}
.custom-donate {
  text-align: center;
  margin-top: 40px;
}
.custom-donate p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ===== WHY MONTHLY ===== */
.why-monthly { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-point-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  background: var(--cream);
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-point h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.why-point p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
.progress-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--cream-dark);
}
.progress-visual h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 28px;
}
.progress-bar-wrap { margin-bottom: 20px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.progress-track {
  background: var(--cream-dark);
  border-radius: 50px;
  height: 16px;
  overflow: hidden;
}
.progress-fill {
  background: linear-gradient(90deg, var(--red), #F06448);
  height: 100%;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  transition: width 2s ease;
}
.progress-cta {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.progress-cta strong { color: var(--red); }

/* ===== TEAM ===== */
.team { padding: 100px 0; background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 64px auto 0;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
}
.team-avatar--founder { background: linear-gradient(135deg, var(--red), #F06448); }
.team-avatar--organizer { background: linear-gradient(135deg, var(--brown), var(--brown-mid)); }
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.team-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.team-since {
  display: inline-block;
  background: var(--cream);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #F06448 100%);
}
.cta-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-logo img {
  height: 80px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-fine { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1.02rem;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item a {
  color: var(--red);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--red-dark); }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-success {
  text-align: center;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer { background: var(--brown); color: var(--cream); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-cta h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.footer-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--cream); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    text-align: center;
  }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-quote { text-align: left; }
  .hero-visual { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .mission-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card.popular { transform: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 460px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
}
