/* ========================================
   SYNOD GROUPS - MAIN STYLES
   ======================================== */

/* CSS Variables */
:root {
  --synod-navy: #0f345c;
  --synod-green: #22c55e;
  --synod-blue: #0ea5e9;
  --synod-red: #ef4444;
  --synod-orange: #f97316;
  --synod-cyan: #06b6d4;

  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: rgba(255, 255, 255, 0.03);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);

  --border-color: rgba(255, 255, 255, 0.1);

  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #22c55e 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
}

/* ========================================
   SHARED GLOW PULSE (used by sustainability glows)
   ======================================== */

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: transform var(--transition-normal);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--synod-green);
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--synod-green), #16a34a);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all var(--transition-normal);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-menu-btn:hover {
  color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  color: var(--text-secondary);
}

.mobile-cta {
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--synod-green), #16a34a);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  /* svh = small viewport height — accounts for mobile browser chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.glow-2 {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.glow-3 {
  position: absolute;
  top: 60%;
  left: 30%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Hidden on mobile — they bleed through content at small sizes */
}

.float-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.icon-1 {
  top: 25%;
  right: 20%;
  width: 40px;
  height: 40px;
}

.icon-2 {
  top: 40%;
  left: 15%;
  width: 35px;
  height: 35px;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 35%;
  right: 25%;
  width: 45px;
  height: 45px;
  animation-delay: 2s;
}

.icon-4 {
  top: 15%;
  left: 40%;
  width: 30px;
  height: 30px;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--synod-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-badge span:last-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-align: center;
  /* Ensure no CSS transitions are fighting with GSAP */
  transition: transform 0s;
  padding-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--synod-green), #16a34a);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 9999px;
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--synod-green), var(--synod-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

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

section {
  position: relative;
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  color: var(--synod-green);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
  position: relative;
  z-index: 1;
}

.glow-left {
  top: 20%;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.05);
}

.glow-right {
  bottom: 10%;
  left: 0;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.05);
}

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

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

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: background var(--transition-normal), transform var(--transition-normal);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.icon-mission {
  background: linear-gradient(135deg, var(--synod-green), #16a34a);
}

.icon-vision {
  background: linear-gradient(135deg, var(--synod-blue), #0284c7);
}

.icon-values {
  background: linear-gradient(135deg, var(--synod-orange), #ea580c);
}

.icon-approach {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-quote {
  text-align: center;
}

.about-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.quote-author {
  color: var(--synod-green);
  font-weight: 500;
}

/* ========================================
   COMPANIES SECTION
   ======================================== */

.companies {
  background: var(--bg-primary);
}

.glow-companies {
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.05);
}

.companies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.company-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
  background: transparent !important;
  height: auto !important;
  padding: 1.25rem 0 0 !important;
}

.card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 20px 20px;
}

.card-logo {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.card-body {
  padding: 1.5rem;
}

.card-title-row {
  margin-bottom: 0.75rem;
}

.card-title-row h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.card-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.card-features span {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.card-btn {
  width: 100%;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.card-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.card-btn:hover svg {
  transform: translate(2px, -2px);
}

.companies-cta {
  text-align: center;
}

.companies-cta p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ========================================
   SUSTAINABILITY SECTION
   ======================================== */

.sustainability {
  background: var(--bg-primary);
}

.sustainability-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sus-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: glowPulse 4s ease-in-out infinite;
}

.sus-glow.glow-1 {
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.1);
}

.sus-glow.glow-2 {
  bottom: 30%;
  right: 15%;
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.1);
  animation-delay: 2s;
}

.sus-glow.glow-3 {
  top: 60%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.1);
  animation-delay: 4s;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pillar-card {
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.icon-green {
  background: rgba(34, 197, 94, 0.2);
}

.icon-green svg {
  color: var(--synod-green);
}

.icon-blue {
  background: rgba(59, 130, 246, 0.2);
}

.icon-blue svg {
  color: #3b82f6;
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.2);
}

.icon-cyan svg {
  color: var(--synod-cyan);
}

.icon-amber {
  background: rgba(245, 158, 11, 0.2);
}

.icon-amber svg {
  color: #f59e0b;
}

.icon-emerald {
  background: rgba(16, 185, 129, 0.2);
}

.icon-emerald svg {
  color: #10b981;
}

.icon-rose {
  background: rgba(244, 63, 94, 0.2);
}

.icon-rose svg {
  color: #f43f5e;
}

.pillar-card h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pillar-card>p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pillar-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--synod-green);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* SDG Section */
.sdg-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.sdg-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.sdg-content>p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.sdg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sdg-badges span {
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  color: var(--synod-green);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.sdg-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdg-item span {
  width: 32px;
  height: 32px;
  background: rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--synod-green);
}

/* ========================================
   JOURNEY SECTION
   ======================================== */

.journey {
  background: var(--bg-primary);
}

.glow-journey {
  top: 15%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.05);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-left: 64px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--dot-color);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--dot-color);
}

.timeline-content {
  flex: 1;
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.timeline-badge span:first-child {
  width: 40px;
  height: 40px;
  background: var(--badge-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-badge span:first-child svg {
  width: 20px;
  height: 20px;
  color: white;
}

.timeline-badge span:last-child {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--badge-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.journey-stats {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
}

.journey-stats h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.journey-stats>p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.journey-stat .stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--synod-green), var(--synod-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.contact {
  background: var(--bg-primary);
}

.glow-contact {
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form {
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--synod-green), #16a34a);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--synod-green);
}

.info-content {
  flex: 1;
}

.info-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.info-value {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
}

.info-arrow {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.info-card:hover .info-arrow {
  color: var(--synod-green);
  transform: translate(2px, -2px);
}

.social-card,
.quick-links-card {
  padding: 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.social-label,
.quick-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: rgba(34, 197, 94, 0.2);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.social-links a:hover svg {
  color: var(--synod-green);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.quick-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.quick-links a:hover {
  color: var(--synod-green);
}

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

.footer {
  position: relative;
  background: #020617;
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand>p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-tagline svg {
  width: 16px;
  height: 16px;
  color: var(--synod-green);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--synod-green);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.made-with {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.made-with svg {
  width: 16px;
  height: 16px;
  color: #ef4444;
  fill: #ef4444;
}

/* ========================================
   MODAL
   ======================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 400px;
  width: 90%;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  color: var(--synod-green);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-content p {
  color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (min-width: 640px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .section-title {
    font-size: 3rem;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .sdg-section {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line,
  .timeline-progress {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
  }

  .timeline-item.right {
    direction: rtl;
  }

  .timeline-item.right>* {
    direction: ltr;
  }

  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--synod-navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--synod-green);
}

/* Selection */
::selection {
  background: rgba(34, 197, 94, 0.3);
  color: white;
}

/* ========================================
   RESPONSIVE — MOBILE & TABLET
   ======================================== */

/* All headings: Inter to match hero */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-family: 'Inter', sans-serif !important;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   MOBILE  (≤ 639px)
───────────────────────────────────────── */
@media (max-width: 639px) {

  /* ── Navbar ── */
  .navbar {
    padding: 0.75rem 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 28px;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  /* ── Hero ── */
  /* Remove fixed min-height so there's no blank space below stats */
  .hero {
    min-height: unset;
    height: auto;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .hero-content {
    padding: 5rem 1.25rem 2.5rem;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    margin-bottom: 1.25rem;
  }

  .hero-badge span:last-child {
    font-size: 0.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  /* Hide decorative floating icons on mobile */
  .floating-icons {
    display: none;
  }

  /* Smaller glow blobs so they don't add empty space */
  .glow-1,
  .glow-2,
  .glow-3 {
    display: none;
  }

  /* Hero fade doesn't need to be tall on mobile */
  .hero-fade {
    height: 60px;
  }

  /* ── Sections ── */
  section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.6rem !important;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  /* ── About ── */
  .about-text {
    font-size: 0.9375rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  /* ── Companies ── */
  .companies-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .card-logo {
    width: 120px !important;
    height: 120px !important;
  }

  /* ── Sustainability ── */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  /* ── Journey ── */
  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .timeline-line,
  .timeline-progress {
    left: 16px !important;
    transform: none !important;
  }

  .timeline-item {
    display: block !important;
    padding-left: 48px !important;
    direction: ltr !important;
    position: relative;
  }

  .timeline-item.right {
    direction: ltr !important;
  }

  .timeline-dot {
    position: absolute !important;
    left: 16px !important;
    transform: translateX(-50%) !important;
  }

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-brand {
    max-width: 100%;
  }
}

/* ─────────────────────────────────────────
   TABLET  (640px – 1023px)
───────────────────────────────────────── */
@media (min-width: 640px) and (max-width: 1023px) {

  /* ── Navbar ── */
  .mobile-menu-btn {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 6rem 2rem 4rem;
    max-width: 720px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem) !important;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  /* ── Sections ── */
  section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 2.2rem !important;
  }

  /* ── Grids — 2 columns on tablet ── */
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Timeline ── single column on tablet ── */
  .timeline-line,
  .timeline-progress {
    left: 20px !important;
    transform: none !important;
  }

  .timeline-item {
    display: block !important;
    padding-left: 56px !important;
    direction: ltr !important;
    position: relative;
  }

  .timeline-item.right {
    direction: ltr !important;
  }

  .timeline-dot {
    position: absolute !important;
    left: 20px !important;
    transform: translateX(-50%) !important;
  }
}

/* ─────────────────────────────────────────
   TINY PHONES  (≤ 380px)
───────────────────────────────────────── */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.85rem !important;
  }

  .section-title {
    font-size: 1.35rem !important;
  }
}

/* Desktop nav — always show links ≥ 768px */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .nav-cta {
    display: inline-flex !important;
  }
}

/* card-btn as anchor link */
a.card-btn {
  display: flex;
  text-decoration: none;
}

a.card-btn:hover {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: var(--synod-green) !important;
}

a.card-btn:hover svg {
  color: var(--synod-green);
  transform: translate(2px, -2px);
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--synod-green), var(--synod-cyan));
  border-radius: 9999px;
  margin: 1rem auto 0;
}