@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --background: #0a0a0a;
  --foreground: #ffffff;
  --card: #111111;
  --card-foreground: #ffffff;
  --primary: #87CEEB;
  --primary-foreground: #0a0a0a;
  --secondary: #1a1a1a;
  --muted: #222222;
  --muted-foreground: #a6a6a6;
  --border: #222222;
  --radius: 0.75rem;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 14px; scroll-behavior: smooth; }
@media (min-width: 768px) { html { font-size: 16px; } }
@media (min-width: 1024px) { html { font-size: 18px; } }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.responsive-py { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px)  { .responsive-py { padding-top: 4rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .responsive-py { padding-top: 6rem; padding-bottom: 6rem; } }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 0.3s;
}
@media (min-width: 768px) { .logo { font-size: 1.5rem; } }
.logo:hover { opacity: 0.8; }
.logo .dot { color: var(--primary); }

.desktop-nav { display: none; gap: 0.25rem; align-items: center; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  color: var(--muted-foreground);
  transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(135,206,235,0.1);
}

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: block; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
}
.btn-primary:hover {
  background: rgba(135,206,235,0.9);
  box-shadow: 0 0 20px rgba(135,206,235,0.3);
  transform: scale(1.02);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(135,206,235,0.5);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
}
.btn-outline:hover {
  background: rgba(135,206,235,0.1);
  border-color: var(--primary);
  transform: scale(1.02);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; min-height: 56px; }

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}
.mobile-menu-btn:hover { color: var(--primary); }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
  position: absolute;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  min-height: 44px;
  transition: all 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--primary);
  background: rgba(135,206,235,0.1);
}
.mobile-nav .mobile-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.mobile-nav .btn-primary { width: 100%; min-height: 48px; font-size: 1rem; }

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--card);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.footer-brand p { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.7; max-width: 280px; }
.footer-links h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; color: var(--muted-foreground); font-size: 0.75rem; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}
@media (min-width: 768px) { .hero { min-height: 100dvh; } }

.wavy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q 250 50 500 100 T 1000 100' fill='none' stroke='%2387CEEB' stroke-width='1.5' stroke-opacity='0.15'/%3E%3Cpath d='M0 120 Q 250 170 500 120 T 1000 120' fill='none' stroke='%2387CEEB' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M0 80 Q 250 30 500 80 T 1000 80' fill='none' stroke='%2387CEEB' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 1000px 200px;
  animation: wave-animation 20s linear infinite;
}
.hero-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: rgba(135,206,235,0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(135,206,235,0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-glow-top  { width: 800px; height: 400px; filter: blur(120px); }
  .hero-glow-bottom { width: 600px; height: 600px; filter: blur(100px); }
}
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 900px; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .badge { font-size: 0.75rem; padding: 0.375rem 1rem; } }
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(135,206,235,0.8);
}
@media (min-width: 768px) { .badge .dot { width: 8px; height: 8px; margin-right: 0.75rem; } }

.hero h1 {
  font-size: clamp(2rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight { color: var(--primary); }

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 3rem;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; max-width: none; }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.9), var(--background));
}
.page-hero-content { position: relative; z-index: 10; text-align: center; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* === SECTIONS === */
.section-label {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-label { font-size: 0.75rem; } }

.section-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subheading {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* === CARDS === */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}
.card:hover { border-color: rgba(135,206,235,0.5); }
.card-body { padding: 1.5rem; }
@media (min-width: 768px) { .card-body { padding: 2rem; } }

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s;
  flex-shrink: 0;
}
@media (min-width: 768px) { .icon-box { width: 3.5rem; height: 3.5rem; } }
.card:hover .icon-box { background: rgba(135,206,235,0.1); }

.scale-hover {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
@media (hover: hover) {
  .scale-hover:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  }
}

/* === STATS === */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17,17,17,0.5);
  position: relative;
  overflow: hidden;
}
.stats-section .wavy-bg { opacity: 0.2; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    divide: solid var(--border);
  }
  .stats-grid .stat + .stat { border-left: 1px solid var(--border); }
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number span { color: var(--primary); }
.stat-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .stat-label { font-size: 0.75rem; } }

/* === PARTNERSHIP TIERS === */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .tiers-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.tier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.tier-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(135,206,235,0.1);
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.tier-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}
.tier-card.featured .tier-name { color: var(--primary); }
.tier-benefits { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.tier-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.tier-benefit::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.tier-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.tier-card:not(.featured) .tier-cta {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.tier-card:not(.featured) .tier-cta:hover { border-color: var(--primary); color: var(--primary); }
.tier-card.featured .tier-cta {
  background: var(--primary);
  color: var(--primary-foreground);
}
.tier-card.featured .tier-cta:hover { opacity: 0.9; box-shadow: 0 0 20px rgba(135,206,235,0.3); }

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s;
}
.service-card:hover { border-color: rgba(135,206,235,0.4); transform: translateY(-2px); }
.service-pricing {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(135,206,235,0.1);
  border: 1px solid rgba(135,206,235,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin: 0.5rem 0 1.25rem;
}
.service-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; }
.service-benefits { display: flex; flex-direction: column; gap: 0.5rem; }
.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.service-benefit::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
}

/* === INSTITUTIONS GRID === */
.institutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .institutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .institutions-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.institution-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.institution-card:hover { border-color: var(--primary); color: var(--primary); }
.institution-card .init {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(135,206,235,0.1);
  border: 1px solid rgba(135,206,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 0.75rem;
  font-family: 'Poppins', sans-serif;
}
.institution-card p { font-size: 0.8125rem; font-weight: 500; color: var(--muted-foreground); line-height: 1.5; }

/* === FOUNDERS === */
.founder-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s;
}
.founder-card:hover { border-color: rgba(135,206,235,0.4); }
.founder-initials {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(135,206,235,0.1);
  border: 1px solid rgba(135,206,235,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.founder-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.founder-card .title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.founder-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 1fr; gap: 2rem; }
}
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2rem; }
.form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-foreground); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(135,206,235,0.1); }
.form-group select option { background: var(--background); color: var(--foreground); }
.form-group textarea { resize: none; min-height: 150px; }
.form-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover { opacity: 0.9; transform: scale(1.01); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card .icon-box { margin-bottom: 0; }
.contact-info-card h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.contact-info-card a:hover { color: var(--primary); }
.hours-card { background: rgba(135,206,235,0.05); border-color: rgba(135,206,235,0.2); }

/* Alert messages */
.alert {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}
.alert.show { display: block; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }

/* === CTA SECTION === */
.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(135,206,235,0.03);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(135,206,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 10; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.75rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.25rem; }
.cta-content h2 span { color: var(--primary); }
.cta-content p { font-size: clamp(0.875rem, 1.5vw, 1.125rem); color: var(--muted-foreground); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* === PARTNERS LOGOS === */
.partners-section { border-top: 1px solid var(--border); background: rgba(17,17,17,0.3); padding: 4rem 0; overflow: hidden; }
.partners-label { text-align: center; font-size: 0.625rem; font-weight: 700; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 2rem; }
@media (min-width: 768px) { .partners-label { font-size: 0.75rem; } }
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.partners-logos:hover { opacity: 1; }
@media (min-width: 768px) { .partners-logos { gap: 2.5rem; } }
@media (min-width: 1024px) { .partners-logos { gap: 4rem; } }
.partner-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  text-align: center;
  cursor: default;
}
.partner-name:hover { color: var(--primary); }

/* === ANIMATIONS === */
@keyframes wave-animation {
  0% { background-position: 0px 0px; }
  100% { background-position: 1000px 0px; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* Text helpers */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }

.bg-card { background: var(--card); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }

/* About story card */
.story-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2.5rem; max-width: 900px; margin: 0 auto; }
.story-card h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.story-card p { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1rem; font-size: 0.9375rem; }
.story-card p:last-child { margin-bottom: 0; }

/* Values section bg */
.bg-card-half { background: rgba(17,17,17,0.5); }
