/* Portfolio V2 - Complete Styles (Premium Dark + Strategic Green) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* Variables */
:root {
  /* OFEED Green + 10th Anniversary Gold */
  --primary: #198f0b;
  --primary-dark: #11670a;
  --secondary: #34b51f;
  --accent: #d4af37;
  
  /* Premium Gray Palette */
  --bg: #fafafa;
  --bg-secondary: #f5f5f5;
  --text: #18181b;
  --text-secondary: #52525b;
  --border: #e4e4e7;
  --bg-alt: #f2f7f0;
  --text-primary: var(--text);
  --anniversary-gold: #d4af37;
  --anniversary-gold-dark: #a47f11;
  
  /* Sophisticated Shadows - No Color Tint */
  --shadow-sm: 0 1px 3px rgba(24, 24, 27, 0.08);
  --shadow-md: 0 4px 12px rgba(24, 24, 27, 0.10);
  --shadow-lg: 0 10px 30px rgba(24, 24, 27, 0.12);
  --shadow-xl: 0 20px 50px rgba(24, 24, 27, 0.15);
}

body.dark-mode {
  --primary: #34b51f;
  --secondary: #8be377;
  --accent: #e8c659;
  --bg: #09090b;
  --bg-secondary: #18181b;
  --text: #fafafa;
  --text-secondary: #d4d4d8;
  --border: #27272a;
  --bg-alt: #111812;
  --text-primary: var(--text);
  --anniversary-gold: #e8c659;
  --anniversary-gold-dark: #c69d23;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

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

.section {
  padding: 4rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(25, 143, 11, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid rgba(25, 143, 11, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 12px rgba(25, 143, 11, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(25, 143, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
}

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

body.dark-mode .btn-white {
  background: var(--bg-secondary);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}

body.dark-mode .header {
  background: rgba(9, 9, 11, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav__logo i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.75rem;
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav__link i {
  font-size: 1.125rem;
  display: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--primary);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

#current-language {
  font-size: 0.875rem;
  font-weight: 600;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 250px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-search {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.language-search input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.language-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 143, 11, 0.1);
}

.language-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 0.5rem;
}

.language-list::-webkit-scrollbar {
  width: 6px;
}

.language-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 50px;
}

.language-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.language-option {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.language-option:hover {
  background: var(--bg-secondary);
}

.language-option.active {
  background: rgba(25, 143, 11, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.language-option.hidden {
  display: none;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__subtitle {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Image */
.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero__blob svg {
  width: 100%;
  height: 100%;
  fill: var(--bg-secondary);
  filter: drop-shadow(var(--shadow-lg));
}

.hero__blob img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 2px;
  animation: scroll-animation 2s ease-in-out infinite;
}

@keyframes scroll-animation {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Features Section */
.features {
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 1rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(25, 143, 11, 0.25);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta__title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer__logo i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(25, 143, 11, 0.25);
}

.footer__title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__copy {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(25, 143, 11, 0.3);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(25, 143, 11, 0.4);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav__link i {
    display: block;
  }

  .nav__link::after {
    display: none;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

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

  .hero__title {
    font-size: 2.5rem;
  }

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

  .hero__blob svg {
    width: 300px;
    height: 300px;
  }

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

  .cta__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Page Hero (for inner pages) */
.page-hero {
  padding: 7rem 0 3rem;
  background: var(--bg-secondary);
}

.page-hero .container {
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Terms of Service layout */
.tos-content {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .tos-content {
    padding: 3rem 3rem;
  }
}

.tos-section {
  margin-bottom: 2.25rem;
}

.tos-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tos-section h3 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
}

.tos-section p,
.tos-section li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.98rem;
}

.tos-section ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}

.warning-box {
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0 1.5rem;
  border-left: 4px solid #ef4444;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.highlight-box {
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0 1.5rem;
  background: rgba(25, 143, 11, 0.05);
  border-left: 4px solid var(--primary);
  border: 1px solid rgba(25, 143, 11, 0.2);
}

.warning-box h3,
.highlight-box h3 {
  margin-top: 0;
}

.warning-box p,
.highlight-box p {
  margin: 0.35rem 0;
}

/* Universities & schools section */
.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.university-card {
  background: var(--bg);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.university-card:hover {
  border-color: rgba(25, 143, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.university-card span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


/* ========================================
   PARTNER SHOWCASE STYLES
   Add this to your main styles.css file
   (Extracted from inline styles for better performance)
   ======================================== */

.partners-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        var(--bg) 0%, 
        var(--bg-alt) 50%, 
        var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.partners-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        transparent);
    opacity: 0.3;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.showcase-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.partners-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
}

.showcase-card:hover::before {
    transform: scaleX(1);
}

.showcase-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.showcase-card:hover .showcase-card-shine {
    left: 100%;
}

.showcase-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.partner-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover .partner-logo-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.partner-initial {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.partner-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.partner-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding: 0.375rem 1rem;
    background: var(--bg-alt);
    border-radius: 50px;
}

.partner-location i {
    color: var(--primary);
}

.partner-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.partners-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05), 
        rgba(59, 130, 246, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.impact-stat {
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.partners-cta {
    margin-top: 3rem;
}

.cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;  /* ← ADD THIS LINE */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-text {
    color: white;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    gap: 1rem;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .partners-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .cta-icon {
        order: -1;
    }
}

@media (max-width: 768px) {
    .partners-showcase {
        padding: 3rem 0;
    }

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

    .partners-showcase-grid {
        grid-template-columns: 1fr;
    }

    .partners-impact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partners-impact {
        grid-template-columns: 1fr;
    }

    .partner-logo-circle {
        width: 80px;
        height: 80px;
    }

    .partner-initial {
        font-size: 1.5rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .showcase-card,
    .showcase-card-shine,
    .partner-logo-circle,
    .cta-button {
        transition: none !important;
    }
    
    .showcase-card:hover {
        transform: none !important;
    }
    
    @keyframes pulse {
        0%, 100% { transform: none; opacity: 0.5; }
    }
}

/* Dark mode support (if you have dark mode) */
@media (prefers-color-scheme: dark) {
    .showcase-card {
        background: var(--dark-bg, #1f2937);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .partner-location {
        background: var(--dark-bg-alt, #111827);
    }
}







//----------------------------


/* ==========================================
   PARTNERS SHOWCASE - Logo Style Design
   ========================================== */

.partners-showcase {
    padding: 6rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.partners-showcase::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.showcase-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.showcase-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.showcase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partners Grid */
.partners-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Showcase Card */
.showcase-card {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

body.dark-mode .showcase-card {
    background: var(--bg-secondary);
}

.showcase-card-content {
    position: relative;
    z-index: 2;
}

/* Featured Card */
.showcase-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, 
        rgba(34, 197, 94, 0.05) 0%, 
        var(--bg-secondary) 100%
    );
}

.showcase-featured-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Card Shine Effect */
.showcase-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

/* Hover Effects */
.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
}

.showcase-card:hover .showcase-card-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.showcase-card:hover .partner-logo-circle {
    transform: scale(1.08) rotate(5deg);
}

/* Logo Circle */
.partner-logo-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.15), 
        rgba(16, 185, 129, 0.15)
    );
    border: 3px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-premium {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.25), 
        rgba(16, 185, 129, 0.25)
    );
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.partner-logo-engineering {
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.15), 
        rgba(16, 185, 129, 0.15)
    );
    border-color: var(--accent);
}

/* Partner Initial/Logo Text */
.partner-initial {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

/* Card Title */
.showcase-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Location */
.showcase-card-location {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.showcase-card-location i {
    color: var(--primary);
}

/* Type Badge */
.showcase-card-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.partner-type-engineering {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent);
}

/* Impact Stats */
.partners-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.impact-stat {
    text-align: center;
}

.impact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.impact-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.impact-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Box */
.partners-join-cta {
    position: relative;
    z-index: 1;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 1.75rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    color: white;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.25);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-content .btn {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-weight: 700;
    white-space: nowrap;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .partners-showcase {
        padding: 4rem 0;
    }

    .showcase-title {
        font-size: 2.25rem;
    }

    .partners-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .cta-icon {
        order: -1;
    }
}

@media (max-width: 768px) {
    .partners-showcase {
        padding: 3rem 0;
    }

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

    .partners-showcase-grid {
        grid-template-columns: 1fr;
    }

    .partners-impact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partners-impact {
        grid-template-columns: 1fr;
    }

    .partner-logo-circle {
        width: 80px;
        height: 80px;
    }

    .partner-initial {
        font-size: 1.5rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .showcase-card,
    .showcase-card-shine,
    .partner-logo-circle {
        transition: none !important;
    }
    
    .showcase-card:hover {
        transform: none !important;
    }
}



.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    margin-bottom: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(16,185,129,0.06));
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(148,163,184,0.35);
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15,23,42,0.16);
    background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(16,185,129,0.10));
}


.faq-answer {
    margin-top: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* large enough for the content */
    opacity: 1;
}



.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-question .fa-chevron-down {
    font-size: 0.9rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-question .fa-chevron-down {
    transform: rotate(180deg);
    background: rgba(59, 130, 246, 0.16);
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(15,23,42,0.04);
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.faq-pill i {
    font-size: 0.7rem;
}


/* ================================================================
   OFEED 10TH ANNIVERSARY / IWA UNIVERSAL 2026 ECOSYSTEM
   Brand system: OFEED green + anniversary gold
   ================================================================ */

.section-alt { background: var(--bg-secondary); }
.section-lead { max-width: 820px; margin: .75rem auto 0; color: var(--text-secondary); font-size: 1.08rem; line-height: 1.8; }
.section-lead--center { text-align: center; }
.section-eyebrow { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .8rem; padding: .42rem .85rem; border-radius: 999px; background: rgba(25,143,11,.09); border: 1px solid rgba(25,143,11,.18); color: var(--primary-dark); font-weight: 800; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
body.dark-mode .section-eyebrow { color: var(--primary); }
.section-eyebrow--light { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }

.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: rgba(25,143,11,.45); color: var(--primary); }
.btn-ghost-light { color: #fff; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }

.anniversary-nav-badge { display: inline-flex; align-items: center; gap: .4rem; margin-left: .45rem; padding: .28rem .55rem; border-left: 1px solid var(--border); color: var(--text); line-height: 1; }
.anniversary-nav-badge strong { font-family: 'Poppins', sans-serif; font-size: 1.12rem; color: var(--anniversary-gold-dark); }
.anniversary-nav-badge > span { display: flex; flex-direction: column; font-size: .52rem; font-weight: 800; letter-spacing: .1em; }
.anniversary-nav-badge small { margin-top: .16rem; font-size: .48rem; color: var(--text-secondary); letter-spacing: .04em; }

.anniversary-kicker { width: fit-content; display: inline-flex; align-items: center; gap: .55rem; padding: .58rem 1rem; border-radius: 999px; background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(25,143,11,.10)); border: 1px solid rgba(212,175,55,.36); color: var(--text); font-weight: 800; font-size: .82rem; letter-spacing: .035em; margin-bottom: 1.2rem; }
.anniversary-kicker i { color: var(--anniversary-gold-dark); }
.anniversary-kicker--center { margin-left: auto; margin-right: auto; }

.hero--anniversary { background: radial-gradient(circle at 85% 30%, rgba(212,175,55,.10), transparent 31%), radial-gradient(circle at 10% 70%, rgba(25,143,11,.08), transparent 38%), var(--bg); }
.hero--anniversary .hero__title { max-width: 760px; }
.hero__tagline { margin: -0.45rem 0 1rem; color: var(--primary); font-size: 1.25rem; font-weight: 800; letter-spacing: .01em; }
.hero-proof-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: -1.25rem; }
.hero-proof-row span { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .72rem; border: 1px solid var(--border); background: var(--bg-secondary); color: var(--text-secondary); border-radius: 999px; font-size: .8rem; font-weight: 700; }
.hero-proof-row i { color: var(--primary); }

.anniversary-orb-mark { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-shadow: 0 4px 18px rgba(0,0,0,.25); }
.anniversary-orb-mark strong { font-family: 'Poppins', sans-serif; font-size: 4.4rem; line-height: .85; }
.anniversary-orb-mark span { margin-top: .45rem; font-weight: 900; letter-spacing: .28em; font-size: .78rem; padding-left: .28em; }
.anniversary-orb-mark small { margin-top: .38rem; font-weight: 700; opacity: .86; }

.page-hero--anniversary { background: radial-gradient(circle at 50% -20%, rgba(212,175,55,.17), transparent 40%), linear-gradient(180deg, rgba(25,143,11,.08), transparent), var(--bg-secondary); border-bottom: 1px solid var(--border); }
.page-hero--anniversary h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }

.anniversary-stats { background: linear-gradient(180deg, var(--bg-secondary), var(--bg)); }
.pillar-grid, .mission-grid, .values-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; margin-top: 2.4rem; }
.mission-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.values-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }

.platform-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.platform-grid--wide { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.6rem; }
.platform-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 1.7rem; border-radius: 1.25rem; background: var(--bg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.platform-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: .7; }
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(25,143,11,.28); }
.platform-card--featured { background: linear-gradient(160deg, rgba(25,143,11,.075), var(--bg) 42%); }
.platform-card--passport { background: linear-gradient(160deg, rgba(25,143,11,.06), rgba(212,175,55,.07), var(--bg) 56%); }
.platform-card--anniversary { background: linear-gradient(160deg, rgba(212,175,55,.11), var(--bg) 46%); }
.platform-card--anniversary::before { background: linear-gradient(90deg, var(--anniversary-gold-dark), var(--primary)); }
.platform-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.platform-card__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 1rem; margin-bottom: 1rem; background: rgba(25,143,11,.09); color: var(--primary); font-size: 1.55rem; }
.platform-card h3 { font-size: 1.32rem; margin-bottom: .7rem; }
.platform-card p { color: var(--text-secondary); line-height: 1.72; }
.platform-card .btn, .platform-card .text-link { margin-top: auto; }
.mini-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 30px; padding: 0 .65rem; border-radius: 999px; background: var(--primary); color: white; font-weight: 900; letter-spacing: .05em; font-size: .78rem; }
.mini-badge--gold { background: var(--anniversary-gold-dark); }
.platform-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.1rem 0 1.35rem; }
.platform-tags span { padding: .3rem .55rem; border-radius: .55rem; background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary); font-size: .72rem; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--primary); text-decoration: none; font-weight: 800; }
.text-link:hover { gap: .75rem; }
.compact-list { margin: 1.1rem 0 1.5rem; padding: 0; list-style: none; display: grid; gap: .55rem; color: var(--text-secondary); }
.compact-list li { position: relative; padding-left: 1.2rem; }
.compact-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

.spotlight-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 3rem; align-items: center; }
.spotlight-grid--reverse > :first-child { order: 1; }
.spotlight-grid--reverse > :last-child { order: 2; }
.spotlight-copy h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.spotlight-copy > p { color: var(--text-secondary); font-size: 1.06rem; line-height: 1.8; }
.check-list { list-style: none; display: grid; gap: .75rem; margin: 1.5rem 0 0; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--text-secondary); }
.check-list i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(25,143,11,.10); color: var(--primary); font-size: .7rem; flex: 0 0 auto; }

.passport-visual { position: relative; min-height: 380px; border-radius: 1.7rem; padding: 2.2rem; overflow: hidden; background: linear-gradient(145deg, #0d5f0b, #188d0e 55%, #8b731b 140%); color: #fff; box-shadow: 0 28px 65px rgba(9,60,7,.22); }
.passport-visual::before { content: ''; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; top: -80px; right: -50px; box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 80px rgba(255,255,255,.018); }
.passport-chip { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; font-weight: 900; }
.passport-title { position: relative; z-index: 1; margin-top: 3.3rem; font-family: 'Poppins',sans-serif; font-size: clamp(1.8rem,4vw,3.1rem); line-height: 1.04; letter-spacing: -.03em; }
.passport-lines { position: relative; z-index: 1; display: grid; gap: .5rem; margin-top: 2rem; width: 70%; }
.passport-lines span { height: 5px; border-radius: 999px; background: rgba(255,255,255,.26); }
.passport-lines span:nth-child(2) { width: 75%; }.passport-lines span:nth-child(3) { width: 55%; }
.passport-seal { position: absolute; z-index: 1; right: 1.6rem; bottom: 1.6rem; padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }

.journey-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: .8rem; margin-top: 2.4rem; }
.journey-step { position: relative; padding: 1.35rem 1rem; border-radius: 1rem; background: var(--bg); border: 1px solid var(--border); }
.journey-step > span { position: absolute; right: .8rem; top: .65rem; color: var(--border); font-size: 1.45rem; font-weight: 900; }
.journey-step i { color: var(--primary); font-size: 1.3rem; margin-bottom: 1.5rem; }
.journey-step h3 { font-size: 1rem; margin-bottom: .45rem; }
.journey-step p { color: var(--text-secondary); font-size: .82rem; line-height: 1.55; }

.evaluation-choice { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin: 1.5rem 0; }
.evaluation-choice > div { padding: 1.3rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--bg-secondary); }
.evaluation-choice i { font-size: 1.45rem; color: var(--primary); margin-bottom: .8rem; }
.evaluation-choice h3 { font-size: 1rem; margin-bottom: .5rem; }
.evaluation-choice p { font-size: .88rem; line-height: 1.6; }
.evaluation-visual { display: grid; place-items: center; min-height: 430px; }
.evaluation-orbit { position: relative; width: 340px; height: 340px; border-radius: 50%; border: 1px dashed rgba(25,143,11,.3); box-shadow: inset 0 0 60px rgba(25,143,11,.06); }
.evaluation-orbit::before,.evaluation-orbit::after { content:''; position:absolute; border-radius:50%; border:1px solid rgba(212,175,55,.25); inset:35px; }.evaluation-orbit::after{inset:72px;border-color:rgba(25,143,11,.22)}
.evaluation-core { position: absolute; inset: 105px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color:#fff; text-align:center; font-weight:800; box-shadow: 0 18px 40px rgba(25,143,11,.28); }
.evaluation-core strong { font-size: 2rem; }
.orbit-label { position:absolute; padding:.4rem .65rem; border-radius:999px; background:var(--bg); border:1px solid var(--border); box-shadow:var(--shadow-sm); font-size:.72rem; font-weight:800; }.orbit-label--1{top:20px;left:125px}.orbit-label--2{right:-28px;top:155px}.orbit-label--3{bottom:18px;left:132px}.orbit-label--4{left:-16px;top:155px}

.framework-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1.2rem; margin-top:2.5rem; }
.framework-card { padding:1.5rem; border-radius:1.15rem; border:1px solid var(--border); background:var(--bg); box-shadow:var(--shadow-sm); }
.framework-card--gold { background:linear-gradient(160deg,rgba(212,175,55,.13),var(--bg)); border-color:rgba(212,175,55,.35); }
.framework-icon { width:52px;height:52px;display:grid;place-items:center;border-radius:.9rem;background:rgba(25,143,11,.09);color:var(--primary);font-size:1.35rem;margin-bottom:1rem; }
.framework-card--gold .framework-icon { background:rgba(212,175,55,.15);color:var(--anniversary-gold-dark); }
.framework-card h3 { font-size:1.08rem;margin-bottom:.6rem; }.framework-card p{color:var(--text-secondary);font-size:.9rem;line-height:1.65}

.iwa-showcase--2026 { padding:3rem; border-radius:1.7rem; text-align:center; color:#fff; background:radial-gradient(circle at 50% 0,rgba(255,255,255,.14),transparent 38%),linear-gradient(135deg,#11670a,#198f0b 58%,#9b7d13); box-shadow:0 24px 65px rgba(11,80,7,.2); }
.iwa-showcase--2026 h2 { color:#fff;font-size:clamp(2rem,5vw,3.2rem);margin:.45rem 0 1rem; }.iwa-showcase__lead{max-width:780px;margin:0 auto 2rem;opacity:.93;font-size:1.05rem;line-height:1.75}.iwa-showcase__icon{width:78px;height:78px;display:grid;place-items:center;margin:0 auto 1rem;border-radius:50%;background:rgba(255,255,255,.12);font-size:2rem;color:#ffe493}.iwa-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;max-width:850px;margin:2rem auto}.iwa-metrics div{padding:1rem;border:1px solid rgba(255,255,255,.18);border-radius:1rem;background:rgba(255,255,255,.07)}.iwa-metrics strong{display:block;font-size:2.1rem}.iwa-metrics span{font-size:.78rem;opacity:.86}.iwa-feature-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;margin-bottom:2rem}.iwa-feature-pills span{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem .75rem;border-radius:999px;background:rgba(255,255,255,.10);font-size:.78rem;font-weight:700}
.continuous-cycle { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:.65rem; padding:2rem; border-radius:1.4rem; border:1px solid var(--border); background:linear-gradient(145deg,var(--bg-secondary),var(--bg)); }.continuous-cycle span{padding:.6rem .8rem;border-radius:.7rem;background:var(--bg);border:1px solid var(--border);font-weight:800}.continuous-cycle i{color:var(--primary)}

.decade-timeline-section { background:linear-gradient(180deg,var(--bg),rgba(25,143,11,.035)); }
.decade-timeline { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:1rem; align-items:stretch; margin-top:2.6rem; }.decade-node{padding:1.5rem;border-radius:1.1rem;border:1px solid var(--border);background:var(--bg);box-shadow:var(--shadow-sm)}.decade-node strong{color:var(--anniversary-gold-dark);font-size:1.5rem}.decade-node h3{margin:.45rem 0}.decade-node p{color:var(--text-secondary);font-size:.9rem}.decade-line{width:45px;height:2px;background:linear-gradient(90deg,var(--primary),var(--anniversary-gold));align-self:center}

.anniversary-cta-section { background:var(--bg); }
.anniversary-cta { display:flex; align-items:center; justify-content:space-between; gap:2rem; padding:2.6rem; border-radius:1.6rem; color:#fff; background:radial-gradient(circle at 20% 0,rgba(255,255,255,.12),transparent 35%),linear-gradient(135deg,#0e6109,#198f0b 58%,#8b7114); box-shadow:0 24px 55px rgba(14,97,9,.2); }
.anniversary-cta h2 { color:#fff; font-size:clamp(1.8rem,4vw,2.8rem); margin:.2rem 0 .7rem; max-width:760px; }.anniversary-cta p{max-width:760px;opacity:.92}.anniversary-cta .cta-buttons{display:flex;gap:.8rem;flex-wrap:wrap;flex:0 0 auto}
.anniversary-footer-note { margin-bottom:.7rem; color:var(--anniversary-gold-dark); font-size:.78rem; font-weight:800; letter-spacing:.03em; }

.form-honeypot { position:absolute !important; left:-10000px !important; width:1px;height:1px;overflow:hidden; }
.form-api-note { display:flex;align-items:center;gap:.45rem;justify-content:center;margin:0 0 .85rem;color:var(--text-secondary);font-size:.78rem }.form-api-note i{color:var(--primary)}
select.form-input { appearance:auto; }

@media (max-width: 1100px) {
  .platform-grid, .values-grid, .framework-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .journey-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .anniversary-nav-badge { display:none; }
}
@media (max-width: 820px) {
  .pillar-grid, .mission-grid, .platform-grid, .platform-grid--wide, .values-grid, .framework-grid, .spotlight-grid { grid-template-columns:1fr; }
  .spotlight-grid--reverse > :first-child,.spotlight-grid--reverse > :last-child { order:initial; }
  .journey-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .iwa-metrics { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .decade-timeline { grid-template-columns:1fr; }.decade-line{width:2px;height:34px;justify-self:center}
  .anniversary-cta { flex-direction:column;align-items:flex-start; }.anniversary-cta .cta-buttons{width:100%}
  .passport-visual { min-height:330px; }.evaluation-visual{min-height:360px}
}
@media (max-width: 560px) {
  .journey-grid,.evaluation-choice,.iwa-metrics { grid-template-columns:1fr; }
  .anniversary-cta { padding:1.7rem; }.anniversary-cta .btn{width:100%}
  .hero-proof-row{justify-content:center}.platform-card{padding:1.35rem}.iwa-showcase--2026{padding:2rem 1.2rem}
  .evaluation-orbit{transform:scale(.82)}
}
