/*
Theme Name: J29 Theme
Theme URI: https://j29.co.za
Author: J29
Description: Custom theme for J29 - Digital Transformation for MSMEs
Version: 1.0
*/

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

:root {
  --charcoal: #2B4156;
  --sky-blue: #3B78BB;
  --bright-yellow: #FEC123;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-footer: #1a2d3d;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
  --radius-card: 8px;
  --radius-btn: 50px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== BUTTONS (rounded + animated border) ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated border glow effect on hover */
.btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--radius-btn);
  background: linear-gradient(90deg, var(--bright-yellow), var(--sky-blue), var(--bright-yellow));
  background-size: 200% 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderShimmer 2s linear infinite;
}

.btn::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: calc(var(--radius-btn) - 2px);
  background: inherit;
  z-index: -1;
  transition: background var(--transition);
}

@keyframes borderShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn:hover::before {
  opacity: 1;
}

.btn-yellow {
  background: var(--bright-yellow);
  color: var(--charcoal);
  border-color: var(--bright-yellow);
}

.btn-yellow::after {
  background: var(--bright-yellow);
}

.btn-yellow:hover {
  background: #e5ad1a;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(254, 193, 35, 0.4);
}

.btn-yellow:hover::after {
  background: #e5ad1a;
}

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

.btn-outline-white::after {
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-white:hover::after {
  background: var(--white);
}

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

.btn-outline-charcoal::after {
  background: transparent;
}

.btn-outline-charcoal:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-charcoal:hover::after {
  background: var(--charcoal);
}

/* ========== SECTION UTILITY ========== */
.section {
  padding: 40px 0;
}

.section-gray {
  background: var(--light-gray);
}

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

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

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-placeholder {
  width: 120px;
  height: 50px;
  background: var(--light-gray);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
  border: 1px solid #e0e0e0;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bright-yellow);
  transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ========== DESKTOP DROPDOWN ========== */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bright-yellow);
  transition: width var(--transition);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active::after {
  width: 100%;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-dropdown.open .dropdown-arrow,
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge to prevent hover gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 24px;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--charcoal);
  padding-left: 28px;
}

.nav-dropdown-menu a.active {
  color: var(--bright-yellow);
  font-weight: 600;
}

/* ========== MOBILE DROPDOWN ========== */
.mobile-dropdown {
  border-bottom: 1px solid var(--light-gray);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.mobile-dropdown-toggle.active {
  color: var(--bright-yellow);
}

.mobile-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding: 0 0 8px 16px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-dropdown-menu a:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a.active {
  color: var(--bright-yellow);
  font-weight: 600;
}

.mobile-dropdown-menu a:hover {
  color: var(--charcoal);
}

.header-cta {
  display: none;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
  font-size: 1rem;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

/* ========== HERO (animated background with people imagery) ========== */
.hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Animated gradient overlay simulating warm, human-centric atmosphere */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59, 120, 187, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(254, 193, 35, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(59, 120, 187, 0.08) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    background-image:
      radial-gradient(circle at 20% 50%, rgba(59, 120, 187, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(254, 193, 35, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 60% 80%, rgba(59, 120, 187, 0.08) 0%, transparent 40%);
  }
  50% {
    background-image:
      radial-gradient(circle at 40% 30%, rgba(254, 193, 35, 0.14) 0%, transparent 55%),
      radial-gradient(circle at 70% 60%, rgba(59, 120, 187, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 30% 70%, rgba(254, 193, 35, 0.08) 0%, transparent 40%);
  }
  100% {
    background-image:
      radial-gradient(circle at 60% 40%, rgba(59, 120, 187, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 25% 70%, rgba(254, 193, 35, 0.12) 0%, transparent 55%),
      radial-gradient(circle at 80% 30%, rgba(59, 120, 187, 0.06) 0%, transparent 40%);
  }
}

/* Animated floating silhouette shapes representing business owners */
.hero-people {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-person {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatPerson 12s ease-in-out infinite;
}

.hero-person:nth-child(1) {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(254, 193, 35, 0.15) 0%, transparent 70%);
  animation-delay: 0s;
  animation-duration: 10s;
}

.hero-person:nth-child(2) {
  width: 90px;
  height: 90px;
  top: 20%;
  right: 8%;
  background: radial-gradient(circle, rgba(59, 120, 187, 0.18) 0%, transparent 70%);
  animation-delay: 2s;
  animation-duration: 13s;
}

.hero-person:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  background: radial-gradient(circle, rgba(254, 193, 35, 0.12) 0%, transparent 70%);
  animation-delay: 4s;
  animation-duration: 11s;
}

.hero-person:nth-child(4) {
  width: 70px;
  height: 70px;
  top: 30%;
  left: 12%;
  background: radial-gradient(circle, rgba(59, 120, 187, 0.15) 0%, transparent 70%);
  animation-delay: 1s;
  animation-duration: 14s;
}

.hero-person:nth-child(5) {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 40%;
  background: radial-gradient(circle, rgba(254, 193, 35, 0.10) 0%, transparent 70%);
  animation-delay: 3s;
  animation-duration: 12s;
}

@keyframes floatPerson {
  0% { opacity: 0; transform: translateY(20px) scale(0.8); }
  15% { opacity: 1; }
  50% { transform: translateY(-15px) scale(1.05); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px) scale(0.8); }
}

/* Animated SVG people silhouettes */
.hero-silhouettes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-silhouettes svg {
  position: absolute;
  opacity: 0.06;
  fill: var(--white);
}

.hero-silhouettes .sil-1 {
  width: 80px;
  bottom: 5%;
  left: 5%;
  animation: silFloat 8s ease-in-out infinite;
}

.hero-silhouettes .sil-2 {
  width: 60px;
  bottom: 8%;
  left: 18%;
  animation: silFloat 9s ease-in-out 1s infinite;
}

.hero-silhouettes .sil-3 {
  width: 70px;
  bottom: 3%;
  right: 20%;
  animation: silFloat 10s ease-in-out 2s infinite;
}

.hero-silhouettes .sil-4 {
  width: 55px;
  bottom: 10%;
  right: 8%;
  animation: silFloat 7s ease-in-out 0.5s infinite;
}

.hero-silhouettes .sil-5 {
  width: 65px;
  bottom: 6%;
  right: 35%;
  animation: silFloat 11s ease-in-out 3s infinite;
}

@keyframes silFloat {
  0%, 100% { transform: translateY(0px); opacity: 0.06; }
  50% { transform: translateY(-10px); opacity: 0.10; }
}

/* Animated connection lines between people */
.hero-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-connections svg {
  width: 100%;
  height: 100%;
}

.connection-line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 8 4;
  animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image:
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%, #ffffff77),
    linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%, #ffffff77);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--bright-yellow);
}

.hero-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254, 193, 35, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(254, 193, 35, 0); }
}

/* ========== HERO DIAGONAL DIVIDER ========== */
.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ========== INTRO (ENHANCED) ========== */
.intro {
  padding: 40px 0;
  text-align: center;
}

.intro .section-title {
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Intro badge */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 120, 187, 0.08);
  border: 1px solid rgba(59, 120, 187, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sky-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-blue);
  animation: pulse 2s ease-in-out infinite;
}

/* Intro Stats Row */
.intro-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.intro-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.intro-stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bright-yellow);
}

.intro-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--sky-blue), transparent);
  opacity: 0.3;
}

/* ========== PILLARS (CREATIVE GLASS-MORPHISM ON CHARCOAL) ========== */
.pillars-section {
  padding: 40px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(254, 193, 35, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(59, 120, 187, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pillars-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.pillar-card-new {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Gradient border on hover */
.pillar-card-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card-new--learn::before {
  background: linear-gradient(135deg, var(--bright-yellow), rgba(254,193,35,0.3), var(--bright-yellow));
}

.pillar-card-new--grow::before {
  background: linear-gradient(135deg, var(--sky-blue), rgba(59,120,187,0.3), var(--sky-blue));
}

.pillar-card-new--online::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1), rgba(255,255,255,0.5));
}

.pillar-card-new:hover::before {
  opacity: 1;
}

.pillar-card-new:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Background glow */
.pillar-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.04;
  transition: all 0.6s ease;
  pointer-events: none;
}

.pillar-card-new--learn .pillar-card-glow { background: var(--bright-yellow); }
.pillar-card-new--grow .pillar-card-glow { background: var(--sky-blue); }
.pillar-card-new--online .pillar-card-glow { background: var(--white); }

.pillar-card-new:hover .pillar-card-glow {
  opacity: 0.10;
  transform: scale(1.6);
}

/* Step number watermark */
.pillar-card-number {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.pillar-card-new:hover .pillar-card-number {
  opacity: 0.08;
}

/* Icon wrapper */
.pillar-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.pillar-icon-new {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.pillar-card-new--learn .pillar-icon-new {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.pillar-card-new--grow .pillar-icon-new {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.pillar-card-new--online .pillar-icon-new {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.pillar-card-new:hover .pillar-icon-new {
  transform: scale(1.1) translateY(-4px);
}

/* Icon glow */
.pillar-icon-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(16px);
  z-index: 0;
}

.pillar-card-new--learn .pillar-icon-wrap::after { background: var(--bright-yellow); }
.pillar-card-new--grow .pillar-icon-wrap::after { background: var(--sky-blue); }
.pillar-card-new--online .pillar-icon-wrap::after { background: rgba(255,255,255,0.3); }

.pillar-card-new:hover .pillar-icon-wrap::after {
  opacity: 0.4;
  width: 90px;
  height: 90px;
}

.pillar-title-new {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar-subtitle-new {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 8px;
}

/* Divider line */
.pillar-divider {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  margin: 8px auto 16px;
  transition: width 0.4s ease;
}

.pillar-divider--yellow { background: var(--bright-yellow); }
.pillar-divider--blue { background: var(--sky-blue); }
.pillar-divider--charcoal { background: rgba(255,255,255,0.3); }

.pillar-card-new:hover .pillar-divider {
  width: 60px;
}

.pillar-services-new {
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.pillar-services-new li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-services-new li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pillar-card-new--learn .pillar-services-new li::before { background: var(--bright-yellow); }
.pillar-card-new--grow .pillar-services-new li::before { background: var(--sky-blue); }
.pillar-card-new--online .pillar-services-new li::before { background: rgba(255,255,255,0.4); }

.pillar-card-new:hover .pillar-services-new li {
  color: rgba(255, 255, 255, 0.8);
}

.pillar-cta-new {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
}

.pillar-cta-new--yellow {
  color: var(--bright-yellow);
  border-color: rgba(254, 193, 35, 0.3);
}

.pillar-cta-new--blue {
  color: var(--sky-blue);
  border-color: rgba(59, 120, 187, 0.3);
}

.pillar-cta-new--charcoal {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.pillar-cta-new:hover {
  gap: 12px;
  transform: translateX(4px);
}

.pillar-cta-new--yellow:hover {
  background: rgba(254, 193, 35, 0.1);
  border-color: rgba(254, 193, 35, 0.5);
}

.pillar-cta-new--blue:hover {
  background: rgba(59, 120, 187, 0.1);
  border-color: rgba(59, 120, 187, 0.5);
}

.pillar-cta-new--charcoal:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ========== WHY J29 (CREATIVE BRANDED REDESIGN) ========== */
.why-j29 {
  padding: 40px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.why-j29 .section-title {
  color: var(--white);
}

.why-j29 .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-j29::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(254, 193, 35, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(59, 120, 187, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.value-card {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

/* Gradient border on hover */
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card--yellow::before {
  background: linear-gradient(135deg, var(--bright-yellow), rgba(254,193,35,0.3), var(--bright-yellow));
}

.value-card--blue::before {
  background: linear-gradient(135deg, var(--sky-blue), rgba(59,120,187,0.3), var(--sky-blue));
}

.value-card--charcoal::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1), rgba(255,255,255,0.5));
}

.value-card:hover::before {
  opacity: 1;
}

/* Remove old animated bottom line */
.value-card::after {
  display: none;
}

/* Background glow blob */
.value-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.04;
  transition: all 0.6s ease;
  pointer-events: none;
}

.value-card--yellow .value-card-glow { background: var(--bright-yellow); }
.value-card--blue .value-card-glow { background: var(--sky-blue); }
.value-card--charcoal .value-card-glow { background: var(--white); }

.value-card:hover .value-card-glow {
  opacity: 0.10;
  transform: scale(1.6);
}

/* Step number watermark */
.value-card-number {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.value-card:hover .value-card-number {
  opacity: 0.08;
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Icon wrapper + glow */
.value-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.value-card--yellow .value-icon {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.value-card--blue .value-icon {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.value-card--charcoal .value-icon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.value-card:hover .value-icon {
  transform: scale(1.1) translateY(-4px);
}

/* Icon glow */
.value-icon-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(16px);
  z-index: 0;
}

.value-card--yellow .value-icon-wrap::after { background: var(--bright-yellow); }
.value-card--blue .value-icon-wrap::after { background: var(--sky-blue); }
.value-card--charcoal .value-icon-wrap::after { background: rgba(255,255,255,0.3); }

.value-card:hover .value-icon-wrap::after {
  opacity: 0.4;
  width: 90px;
  height: 90px;
}

/* Divider line */
.value-line {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  margin: 12px auto 16px;
  transition: width 0.4s ease;
}

.value-line--yellow { background: var(--bright-yellow); }
.value-line--blue { background: var(--sky-blue); }
.value-line--charcoal { background: rgba(255,255,255,0.3); }

.value-card:hover .value-line {
  width: 60px;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.value-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.value-card:hover .value-text {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes colorLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ========== PARTNERS (CREATIVE LIGHT SECTION) ========== */
.partners-section {
  padding: 40px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.partners-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(43, 65, 86, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--bright-yellow), var(--sky-blue), var(--bright-yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 65, 86, 0.12);
  border-color: transparent;
}

.partner-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(254, 193, 35, 0.10);
  color: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.partner-card:hover .partner-card-icon {
  transform: scale(1.1);
  background: rgba(254, 193, 35, 0.18);
}

.partner-card:nth-child(even) .partner-card-icon {
  background: rgba(59, 120, 187, 0.10);
  color: var(--sky-blue);
}

.partner-card:nth-child(even):hover .partner-card-icon {
  background: rgba(59, 120, 187, 0.18);
}

.partner-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-card-name {
  color: var(--sky-blue);
}

/* ========== CTA SECTION (legacy) ========== */
.cta-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a50 50%, var(--charcoal) 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 50%, rgba(254, 193, 35, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(59, 120, 187, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
}


/* ========== CONTACT SECTION (REDESIGNED) ========== */
.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a2d3d 40%, #1e3a50 70%, var(--charcoal) 100%);
  color: var(--white);
  padding: 80px 0;
}

/* Animated background orbs */
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.contact-bg-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(254, 193, 35, 0.12);
  top: -10%;
  right: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.contact-bg-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 120, 187, 0.15);
  bottom: -10%;
  left: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.contact-bg-orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(254, 193, 35, 0.08);
  top: 40%;
  left: 30%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.15); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(0.9); }
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(254, 193, 35, 0.12);
  border: 1px solid rgba(254, 193, 35, 0.25);
  color: var(--bright-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pathway selector cards */
.contact-pathways {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-pathway-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  transition: height 0.3s ease;
}

.contact-pathway-card--corporate::before {
  background: var(--bright-yellow);
}

.contact-pathway-card--msme::before {
  background: var(--sky-blue);
}

.contact-pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-pathway-card--corporate:hover {
  border-color: rgba(254, 193, 35, 0.35);
}

.contact-pathway-card--msme:hover {
  border-color: rgba(59, 120, 187, 0.35);
}

.pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-pathway-card--corporate .pathway-icon {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.contact-pathway-card--msme .pathway-icon {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.contact-pathway-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-pathway-card > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pathway-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pathway-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-pathway-card--corporate .pathway-features li svg {
  color: var(--bright-yellow);
  flex-shrink: 0;
}

.contact-pathway-card--msme .pathway-features li svg {
  color: var(--sky-blue);
  flex-shrink: 0;
}

.pathway-select-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-pathways {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Form Card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.form-input-wrap svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  transition: color 0.3s ease;
}

.form-input-wrap.focused {
  border-color: var(--bright-yellow);
  background: rgba(254, 193, 35, 0.06);
  box-shadow: 0 0 0 3px rgba(254, 193, 35, 0.1);
}

.form-input-wrap.focused svg {
  color: var(--bright-yellow);
}

.form-input-wrap.has-value {
  border-color: rgba(59, 120, 187, 0.4);
}

.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  resize: vertical;
}

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

.form-input-wrap select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.form-input-wrap select option {
  background: var(--charcoal);
  color: var(--white);
  padding: 12px;
}

.form-textarea-wrap {
  align-items: flex-start;
}

.form-textarea-wrap svg {
  margin-top: 4px;
}

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  margin-top: 8px;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-submit .send-icon {
  transition: transform 0.3s ease;
}

.contact-submit:hover:not(:disabled) .send-icon {
  transform: translate(3px, -3px);
}

.contact-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 40px 20px;
}

.contact-success-icon {
  margin-bottom: 20px;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.contact-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--bright-yellow);
}

.contact-success p {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-success .btn-outline-charcoal {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-success .btn-outline-charcoal:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon--yellow {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.contact-info-icon--blue {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.contact-info-icon--charcoal {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--white);
}

.contact-info-card a {
  font-size: 0.95rem;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.contact-info-card:hover a {
  opacity: 1;
  color: var(--bright-yellow);
}

/* Social card */
.contact-social-card {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 193, 35, 0.08), rgba(59, 120, 187, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-social-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-social-card p {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-social-btn span {
  display: none;
}

.contact-social-btn--fb {
  background: rgba(24, 119, 242, 0.12);
  color: #4293f5;
  border-color: rgba(24, 119, 242, 0.25);
}

.contact-social-btn--fb:hover {
  background: rgba(24, 119, 242, 0.25);
  transform: translateY(-2px);
}

.contact-social-btn--li {
  background: rgba(10, 102, 194, 0.12);
  color: #3b96e8;
  border-color: rgba(10, 102, 194, 0.25);
}

.contact-social-btn--li:hover {
  background: rgba(10, 102, 194, 0.25);
  transform: translateY(-2px);
}

.contact-social-btn--yt {
  background: rgba(255, 0, 0, 0.10);
  color: #ff4444;
  border-color: rgba(255, 0, 0, 0.2);
}

.contact-social-btn--yt:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Response promise */
.contact-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(254, 193, 35, 0.06);
  border: 1px solid rgba(254, 193, 35, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-promise svg {
  flex-shrink: 0;
}

/* Contact responsive - tablet */
@media (min-width: 768px) {
  .contact-section {
    padding: 100px 0;
  }

  .contact-header h2 {
    font-size: 2.25rem;
  }

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

  .contact-form-card {
    padding: 40px 36px;
  }

  .contact-social-btn span {
    display: inline;
  }
}

/* Contact responsive - desktop */
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
  }

  .contact-header h2 {
    font-size: 2.5rem;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-placeholder {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 300px;
}

.footer-contact h4,
.footer-services h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--bright-yellow);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--bright-yellow);
}

.footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-badge--learn {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.service-badge--grow {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.service-badge--online {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.45s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.6s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.75s; }

/* ========== TABLET (768px+) ========== */
@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

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

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

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

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

  .intro {
    padding: 60px 0;
  }

  .intro-stat-number {
    font-size: 2.5rem;
  }

  .hero-divider svg {
    height: 80px;
  }

  .pillars-section {
    padding: 60px 0;
  }

  .why-j29 {
    padding: 60px 0;
  }

  .partners-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .site-footer {
    padding: 60px 0 0;
  }
}

/* ========== DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }

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

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .hero {
    padding: 160px 0 100px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-text {
    font-size: 1.15rem;
  }

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

  .partners-grid-new {
    grid-template-columns: repeat(6, 1fr);
  }

  .cta-section h2 {
    font-size: 2.25rem;
  }

  .intro {
    padding: 80px 0;
  }

  .intro-stat-number {
    font-size: 2.75rem;
  }

  .hero-divider svg {
    height: 100px;
  }

  .pillars-section {
    padding: 80px 0;
  }

  .why-j29 {
    padding: 80px 0;
  }

  .partners-section {
    padding: 80px 0;
  }

  .cta-section {
    padding: 100px 0;
  }

  .site-footer {
    padding: 80px 0 0;
  }
}


/* ========== HOMEPAGE PILLARS (LIGHT CARD STYLE - MATCHING ABOUT METHODOLOGY) ========== */
.pillars-section-light {
  padding: 40px 0;
  background: var(--light-gray);
}

.pillars-section-light .methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

/* ========== HOMEPAGE PARTNERS (WHITE BG - ALTERNATING RHYTHM) ========== */
.partners-section-light {
  padding: 40px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.partners-section-light .partners-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* ========== HOMEPAGE LIGHT SECTIONS - TABLET (768px+) ========== */
@media (min-width: 768px) {
  .pillars-section-light {
    padding: 60px 0;
  }

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

  .partners-section-light {
    padding: 60px 0;
  }

  .partners-section-light .partners-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== HOMEPAGE LIGHT SECTIONS - DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
  .pillars-section-light {
    padding: 80px 0;
  }

  .partners-section-light {
    padding: 80px 0;
  }

  .partners-section-light .partners-grid-new {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* ========== REDESIGNED HERO ========== */
.hero-redesigned {
  background: linear-gradient(135deg, #1a2d3d 0%, var(--charcoal) 40%, #1e3a50 100%);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 120, 187, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(254, 193, 35, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(59, 120, 187, 0.08) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(254, 193, 35, 0.12);
  border: 1px solid rgba(254, 193, 35, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bright-yellow);
  margin-bottom: 24px;
}

.hero-redesigned h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-redesigned .hero-text {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-redesigned .hero-buttons {
  margin-bottom: 32px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.hero-trust-item svg {
  color: var(--bright-yellow);
  flex-shrink: 0;
}

/* Hero Visual - Floating pillar cards */
.hero-visual {
  width: 100%;
  max-width: 480px;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 12px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-card:nth-child(2) { animation-delay: 0.5s; }
.hero-card:nth-child(3) { animation-delay: 1s; }

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

.hero-card--learn {
  background: rgba(254, 193, 35, 0.12);
  border: 1px solid rgba(254, 193, 35, 0.25);
}

.hero-card--grow {
  background: rgba(59, 120, 187, 0.12);
  border: 1px solid rgba(59, 120, 187, 0.25);
}

.hero-card--online {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card--learn .hero-card-icon { background: rgba(254, 193, 35, 0.2); color: var(--bright-yellow); }
.hero-card--grow .hero-card-icon { background: rgba(59, 120, 187, 0.2); color: var(--sky-blue); }
.hero-card--online .hero-card-icon { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.hero-card span {
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-card small {
  font-size: 0.75rem;
  opacity: 0.65;
}

.hero-stat-overlay {
  background: linear-gradient(135deg, rgba(254, 193, 35, 0.15), rgba(59, 120, 187, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bright-yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* Hero tagline */
.hero-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bright-yellow);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* ========== HERO PHOTO COLLAGE ========== */
.hero-photo-collage {
  max-width: 520px;
}

.hero-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-collage-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-collage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-collage-item:hover img {
  transform: scale(1.05);
}

.hero-collage-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 280px;
}

.hero-collage-item--top-right {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  min-height: 130px;
}

.hero-collage-item--bottom-right {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  min-height: 130px;
}

.hero-collage-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-collage-label svg {
  color: var(--bright-yellow);
  flex-shrink: 0;
}

.hero-collage-item:hover .hero-collage-label {
  opacity: 1;
  transform: translateY(0);
}

/* Hero responsive */
@media (min-width: 768px) {
  .hero-redesigned h1 {
    font-size: 2.5rem;
  }

  .hero-collage-item--large {
    min-height: 320px;
  }

  .hero-collage-item--top-right,
  .hero-collage-item--bottom-right {
    min-height: 150px;
  }
}

@media (min-width: 1024px) {
  .hero-redesigned {
    padding: 140px 0 100px;
  }

  .hero-split {
    flex-direction: row;
    gap: 60px;
  }

  .hero-content-left {
    flex: 1;
  }

  .hero-visual {
    flex: 0 0 480px;
  }

  .hero-redesigned h1 {
    font-size: 2.8rem;
  }

  .hero-collage-item--large {
    min-height: 360px;
  }

  .hero-collage-item--top-right,
  .hero-collage-item--bottom-right {
    min-height: 168px;
  }
}


/* ========== IMPACT GALLERY SECTION ========== */
.impact-gallery-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.impact-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(254, 193, 35, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(59, 120, 187, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.impact-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(254, 193, 35, 0.12);
  border: 1px solid rgba(254, 193, 35, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bright-yellow);
  margin-bottom: 20px;
}

.impact-badge svg {
  color: var(--bright-yellow);
}

.impact-gallery-section .section-title {
  color: var(--white);
}

.impact-gallery-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Mosaic layout */
.impact-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.impact-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.impact-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.impact-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.impact-tile:hover img {
  transform: scale(1.05);
}

.impact-tile--wide {
  min-height: 220px;
}

.impact-tile:not(.impact-tile--wide) {
  min-height: 200px;
}

.impact-tile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.impact-tile:hover .impact-tile-overlay {
  transform: translateY(0);
  opacity: 1;
}

.impact-tile-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--bright-yellow);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.impact-tile-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* Impact stats bar */
.impact-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.impact-stat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.impact-stat-chip:hover {
  background: rgba(254, 193, 35, 0.1);
  border-color: rgba(254, 193, 35, 0.25);
}

.impact-stat-chip svg {
  color: var(--bright-yellow);
  flex-shrink: 0;
}

.impact-stat-chip strong {
  color: var(--bright-yellow);
  font-weight: 700;
}

/* Impact gallery responsive */
@media (min-width: 768px) {
  .impact-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .impact-tile--wide {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .impact-tile:not(.impact-tile--wide) {
    min-height: 260px;
  }

  .impact-gallery-section {
    padding: 100px 0 80px;
  }
}

@media (min-width: 1024px) {
  .impact-mosaic {
    grid-template-columns: 3fr 2fr 2fr;
    gap: 20px;
  }

  .impact-tile--wide {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-height: 360px;
  }

  .impact-tile:not(.impact-tile--wide) {
    min-height: 360px;
  }
}

/* Mobile: always show labels/overlays (no hover on touch) */
@media (hover: none) {
  .hero-collage-label {
    opacity: 1;
    transform: translateY(0);
  }

  .impact-tile-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Collage entrance animation */
@keyframes collageReveal {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-collage-item {
  animation: collageReveal 0.8s ease-out both;
}

.hero-collage-item--large {
  animation-delay: 0.1s;
}

.hero-collage-item--top-right {
  animation-delay: 0.3s;
}

.hero-collage-item--bottom-right {
  animation-delay: 0.5s;
}


/* ========== PARTNERS LOGO GRID (image-based) ========== */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: center;
  justify-items: center;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(43, 65, 86, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 110px;
}

.partner-logo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--bright-yellow), var(--sky-blue), var(--bright-yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-logo-card:hover::before {
  opacity: 1;
}

.partner-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 65, 86, 0.12);
  border-color: transparent;
}

.partner-logo-card img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: all 0.4s ease;
}

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

@media (min-width: 768px) {
  .partners-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .partner-logo-card img {
    max-height: 90px;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .partners-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .partner-logo-card {
    padding: 28px 32px;
    min-height: 120px;
  }
}

@media (min-width: 1200px) {
  .partners-logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .partner-logo-card {
    padding: 24px 20px;
    min-height: 110px;
  }

  .partner-logo-card img {
    max-height: 85px;
    max-width: 100%;
  }
}


/* ========== YOUTUBE / BUSINESS HUB SECTION ========== */
.youtube-section {
  padding: 60px 0;
}

.youtube-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.youtube-content {
  max-width: 560px;
}

.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #FF0000;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.youtube-badge svg {
  width: 20px;
  height: 20px;
}

.youtube-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.youtube-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.youtube-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.youtube-features li svg {
  flex-shrink: 0;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: #FF0000;
  color: #fff;
  border: 2px solid #FF0000;
  transition: all var(--transition);
}

.btn-youtube:hover {
  background: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.3);
}

.btn-youtube svg {
  width: 20px;
  height: 20px;
}

/* YouTube Visual / Mock Player */
.youtube-visual {
  width: 100%;
  max-width: 480px;
}

.youtube-player-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.youtube-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.youtube-play-btn:hover {
  transform: scale(1.1);
  background: #FF0000;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 16px rgba(255, 0, 0, 0); }
}

.youtube-channel-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.youtube-channel-logo {
  height: 28px;
  width: auto;
}

.youtube-channel-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.youtube-channel-info span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .youtube-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .youtube-split {
    flex-direction: row;
    gap: 60px;
  }

  .youtube-content {
    flex: 1;
  }

  .youtube-visual {
    flex: 0 0 480px;
  }
}


/* YouTube player mock as link */
a.youtube-player-mock {
  text-decoration: none;
  color: inherit;
}

a.youtube-player-mock:hover .youtube-play-btn {
  transform: scale(1.1);
  background: #FF0000;
}

/* ========== FOOTER LEGAL LINKS ========== */
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.8rem;
  opacity: 0.6;
  transition: all var(--transition);
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--bright-yellow);
}

.footer-legal-divider {
  opacity: 0.3;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ==========================================================
   ABOUT PAGE STYLES
   ========================================================== */

/* ========== ABOUT HERO (with photo collage) ========== */
.about-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 500px;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(59, 120, 187, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(254, 193, 35, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(59, 120, 187, 0.10) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}

/* Photo collage elements */
.about-hero-photos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-photo {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo--1 {
  width: 180px;
  height: 240px;
  bottom: 8%;
  left: -2%;
  transform: rotate(-6deg);
  animation: photoFloat1 6s ease-in-out infinite;
  opacity: 0.3;
}

.hero-photo--2 {
  width: 160px;
  height: 220px;
  top: 12%;
  right: -2%;
  transform: rotate(5deg);
  animation: photoFloat2 7s ease-in-out 1s infinite;
  opacity: 0.3;
}

@keyframes photoFloat1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-12px); }
}

@keyframes photoFloat2 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}

/* Diagonal divider at bottom */
.about-hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.about-hero-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero .hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero h1 .highlight {
  color: var(--bright-yellow);
}

.about-hero .hero-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ========== OUR STORY ========== */
/* ========== OUR STORY - MAGAZINE LAYOUT ========== */
.about-story {
  padding: 60px 0 0;
  position: relative;
  overflow: visible;
}

/* Eyebrow */
.story-eyebrow-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sky-blue);
}

.story-eyebrow::before,
.story-eyebrow::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--bright-yellow);
  display: block;
}

/* Question block — mobile: stacked */
.story-question-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.story-big-question {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  margin: 0;
}

.story-highlight {
  color: var(--sky-blue);
  position: relative;
  display: inline;
}

.story-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(254, 193, 35, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.story-intro-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  border-left: 3px solid var(--bright-yellow);
  padding-left: 20px;
}

/* Chapter cards — horizontal on desktop, stacked on mobile */
.story-chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.story-chapter {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-chapter:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Colour accent bar at top of card */
.chapter-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.chapter-accent--yellow { background: var(--bright-yellow); }
.chapter-accent--blue { background: var(--sky-blue); }
.chapter-accent--charcoal { background: var(--charcoal); }

.chapter-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  opacity: 0.06;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.chapter-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 10px;
}

.chapter-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.chapter-text strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Impact numbers ribbon — dark full-width band */
.story-impact-ribbon {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--charcoal);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  /* Break out of container to go full-width */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.story-impact-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-yellow), var(--sky-blue), var(--bright-yellow));
  background-size: 200% 100%;
  animation: colorLine 4s linear infinite;
}

.story-impact-ribbon::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(254, 193, 35, 0.06);
  pointer-events: none;
}

.impact-stat {
  position: relative;
  z-index: 1;
}

.impact-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.impact-stat .stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bright-yellow);
}

.impact-stat .stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Keep these for counter animation compatibility */
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bright-yellow);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 8px;
}

/* ========== VISION & MISSION ========== */
.about-vision-mission {
  padding: 40px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border-top: 4px solid transparent;
}

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

.vm-card--vision {
  border-top-color: var(--bright-yellow);
}

.vm-card--mission {
  border-top-color: var(--sky-blue);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card--vision .vm-icon {
  background: rgba(254, 193, 35, 0.12);
  color: #d4a017;
}

.vm-card--mission .vm-icon {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
}

.vm-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.vm-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.vm-text strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ========== METHODOLOGY (THREE PILLARS) ========== */
.about-methodology {
  padding: 40px 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.method-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.method-card--learn { border-left-color: var(--bright-yellow); }
.method-card--grow { border-left-color: var(--sky-blue); }
.method-card--online { border-left-color: var(--charcoal); }

.method-number {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.06;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  color: var(--charcoal);
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.method-card--learn .method-icon { background: rgba(254, 193, 35, 0.12); color: #d4a017; }
.method-card--grow .method-icon { background: rgba(59, 120, 187, 0.12); color: var(--sky-blue); }
.method-card--online .method-icon { background: rgba(43, 65, 86, 0.12); color: var(--charcoal); }

.method-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.method-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.method-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.method-card:hover .method-logo {
  opacity: 1;
}

/* ========== ABOUT VALUES (CREATIVE REDESIGN) ========== */
.about-values {
  padding: 40px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Background pattern for values section */
.about-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(254, 193, 35, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(59, 120, 187, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.about-values .section-title {
  color: var(--white);
}

.about-values .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.about-value-card {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

/* Animated gradient border on hover */
.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-value-card--yellow::before {
  background: linear-gradient(135deg, var(--bright-yellow), rgba(254, 193, 35, 0.3), var(--bright-yellow));
}

.about-value-card--blue::before {
  background: linear-gradient(135deg, var(--sky-blue), rgba(59, 120, 187, 0.3), var(--sky-blue));
}

.about-value-card--charcoal::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1), rgba(255,255,255,0.5));
}

.about-value-card:hover::before {
  opacity: 1;
}

/* Remove old ::after */
.about-value-card::after {
  display: none;
}

/* Background decorative shape */
.value-card-bg-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.04;
  transition: all 0.6s ease;
  pointer-events: none;
}

.about-value-card--yellow .value-card-bg-shape {
  background: var(--bright-yellow);
}

.about-value-card--blue .value-card-bg-shape {
  background: var(--sky-blue);
}

.about-value-card--charcoal .value-card-bg-shape {
  background: var(--white);
}

.about-value-card:hover .value-card-bg-shape {
  opacity: 0.08;
  transform: scale(1.5);
}

/* Step number watermark */
.value-card-number {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--white);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-value-card:hover .value-card-number {
  opacity: 0.08;
}

/* Icon wrapper with glow */
.about-value-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.about-value-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1) translateY(-4px);
}

/* Icon glow on hover */
.about-value-icon-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(16px);
  z-index: 0;
}

.about-value-card--yellow .about-value-icon-wrap::after {
  background: var(--bright-yellow);
}

.about-value-card--blue .about-value-icon-wrap::after {
  background: var(--sky-blue);
}

.about-value-card--charcoal .about-value-icon-wrap::after {
  background: rgba(255, 255, 255, 0.3);
}

.about-value-card:hover .about-value-icon-wrap::after {
  opacity: 0.4;
  width: 90px;
  height: 90px;
}

.about-value-icon--yellow {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.about-value-icon--blue {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.about-value-icon--charcoal {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

/* Divider line under title */
.value-divider {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  margin: 12px auto 16px;
  transition: width 0.4s ease;
}

.value-divider--yellow { background: var(--bright-yellow); }
.value-divider--blue { background: var(--sky-blue); }
.value-divider--charcoal { background: rgba(255, 255, 255, 0.3); }

.about-value-card:hover .value-divider {
  width: 60px;
}

.about-value-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-value-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.about-value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.about-value-card:hover .about-value-text {
  color: rgba(255, 255, 255, 0.8);
}


/* ========== ABOUT PAGE - TABLET (768px+) ========== */
@media (min-width: 768px) {
  .about-hero {
    padding: 160px 0 100px;
    min-height: 560px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero .hero-text {
    font-size: 1.1rem;
  }

  .about-hero-divider svg {
    height: 80px;
  }

  .hero-photo--1 {
    width: 220px;
    height: 300px;
    left: 2%;
    opacity: 0.4;
  }

  .hero-photo--2 {
    width: 200px;
    height: 280px;
    right: 2%;
    opacity: 0.4;
  }

  .story-question-block {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
  }

  .story-big-question {
    font-size: 1.85rem;
  }

  .story-chapters {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .story-impact-ribbon {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 44px 36px;
  }

  .impact-stat {
    flex: 1;
    position: relative;
  }

  /* Vertical divider lines between stats */
  .impact-stat + .impact-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
  }

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

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

  .method-card {
    border-left: none;
    border-top: 4px solid transparent;
  }

  .method-card--learn { border-top-color: var(--bright-yellow); border-left-color: transparent; }
  .method-card--grow { border-top-color: var(--sky-blue); border-left-color: transparent; }
  .method-card--online { border-top-color: var(--charcoal); border-left-color: transparent; }

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

  /* Centre the 5th (orphan) card on tablet */
  .about-values-grid .about-value-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .about-story {
    padding: 60px 0;
  }

  .about-vision-mission {
    padding: 60px 0;
  }

  .about-methodology {
    padding: 60px 0;
  }

  .about-values {
    padding: 60px 0;
  }
}

/* ========== ABOUT PAGE - DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
  .about-hero {
    padding: 180px 0 120px;
    min-height: 620px;
  }

  .about-hero h1 {
    font-size: 3.25rem;
  }

  .about-hero .hero-text {
    font-size: 1.15rem;
  }

  .about-hero-divider svg {
    height: 100px;
  }

  .hero-photo--1 {
    width: 280px;
    height: 380px;
    left: 3%;
    bottom: 5%;
    opacity: 0.5;
  }

  .hero-photo--2 {
    width: 250px;
    height: 340px;
    right: 3%;
    top: 10%;
    opacity: 0.5;
  }

  .story-question-block {
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
  }

  .story-big-question {
    font-size: 2.25rem;
  }

  .story-intro-text {
    font-size: 1.1rem;
  }

  .story-chapters {
    gap: 28px;
    margin-bottom: 56px;
  }

  .story-chapter {
    padding: 36px 28px 32px;
  }

  .chapter-title {
    font-size: 1.2rem;
  }

  .chapter-text {
    font-size: 1rem;
  }

  .impact-stat .stat-number {
    font-size: 3rem;
  }

  .story-impact-ribbon {
    padding: 52px 48px;
  }

  /* Flexbox layout: all cards identical size, bottom row centred */
  .about-values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .about-values-grid .about-value-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  /* Reset tablet orphan override on 5th card */
  .about-values-grid .about-value-card:nth-child(5) {
    grid-column: unset;
    max-width: calc(33.333% - 16px);
    justify-self: auto;
  }

  .about-story {
    padding: 80px 0;
  }

  .about-vision-mission {
    padding: 80px 0;
  }

  .about-methodology {
    padding: 80px 0;
  }

  .about-values {
    padding: 80px 0;
  }
}

/* ========== FOOTER SOCIAL ========== */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--bright-yellow);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ========== FOOTER SERVICE PILLS (animated rounded boxes) ========== */
.footer-service-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
}

/* Animated shimmer sweep */
.footer-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  animation: pillShimmer 3s ease-in-out infinite;
}

@keyframes pillShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Pulsing border glow */
.footer-pill::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-pill:hover::after {
  opacity: 1;
}

/* Learn pill - Yellow */
.footer-pill--learn {
  background: rgba(254, 193, 35, 0.12);
  color: var(--bright-yellow);
  border-color: rgba(254, 193, 35, 0.25);
}

.footer-pill--learn::after {
  box-shadow: 0 0 12px rgba(254, 193, 35, 0.4), inset 0 0 12px rgba(254, 193, 35, 0.1);
}

.footer-pill--learn::before {
  animation-delay: 0s;
}

.footer-pill--learn:hover {
  background: rgba(254, 193, 35, 0.22);
  border-color: rgba(254, 193, 35, 0.5);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(254, 193, 35, 0.2);
}

/* Grow pill - Blue */
.footer-pill--grow {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
  border-color: rgba(59, 120, 187, 0.25);
}

.footer-pill--grow::after {
  box-shadow: 0 0 12px rgba(59, 120, 187, 0.4), inset 0 0 12px rgba(59, 120, 187, 0.1);
}

.footer-pill--grow::before {
  animation-delay: 1s;
}

.footer-pill--grow:hover {
  background: rgba(59, 120, 187, 0.22);
  border-color: rgba(59, 120, 187, 0.5);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(59, 120, 187, 0.2);
}

/* Get Online pill - White/Light */
.footer-pill--online {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-pill--online::after {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2), inset 0 0 12px rgba(255, 255, 255, 0.05);
}

.footer-pill--online::before {
  animation-delay: 2s;
}

.footer-pill--online:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* ========== LOGO IMG ========== */
.logo-img {
  height: 40px;
  width: auto;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

/* ========== CUSTOM CURSOR (J29 BRANDED MOUSE OUTLINE) ========== */
.j29-cursor {
  position: fixed;
  top: -14px;
  left: -20px;
  width: 28px;
  height: 40px;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.j29-cursor svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 6px rgba(254, 193, 35, 0.3));
}

.j29-cursor--hover svg {
  transform: scale(1.3);
  filter: drop-shadow(0 0 12px rgba(254, 193, 35, 0.5));
}

.j29-cursor--click svg {
  transform: scale(0.8);
  filter: drop-shadow(0 0 18px rgba(254, 193, 35, 0.7));
}

.j29-cursor-trail {
  position: fixed;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(254, 193, 35, 0.25);
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.j29-cursor-trail--hover {
  width: 20px;
  height: 20px;
  top: -10px;
  left: -10px;
  background: rgba(59, 120, 187, 0.3);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .j29-cursor,
  .j29-cursor-trail {
    display: none !important;
  }
}

/* Hide native cursor on desktop when custom cursor is active */
@media (hover: hover) {
  body:has(.j29-cursor) {
    cursor: none;
  }

  body:has(.j29-cursor) a,
  body:has(.j29-cursor) button,
  body:has(.j29-cursor) .btn,
  body:has(.j29-cursor) .about-value-card,
  body:has(.j29-cursor) .method-card,
  body:has(.j29-cursor) .vm-card,
  body:has(.j29-cursor) .pillar-card-new,
  body:has(.j29-cursor) .value-card,
  body:has(.j29-cursor) .partner-card,
  body:has(.j29-cursor) .partner-logo-card,
  body:has(.j29-cursor) .hero-card,
  body:has(.j29-cursor) .youtube-player-mock,
  body:has(.j29-cursor) .contact-info-card,
  body:has(.j29-cursor) .contact-social-btn,
  body:has(.j29-cursor) .form-input-wrap,
  body:has(.j29-cursor) .footer-pill,
  body:has(.j29-cursor) .story-chapter,
  body:has(.j29-cursor) .impact-stat,
  body:has(.j29-cursor) .learn-programme-card,
  body:has(.j29-cursor) .learn-feature-card {
    cursor: none;
  }
}


/* ============================================================
   LEARN PAGE STYLES
   ============================================================ */

/* ========== LEARN HERO ========== */
.learn-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a50 50%, var(--charcoal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

/* Animated gradient overlay */
.learn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(254, 193, 35, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(59, 120, 187, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(254, 193, 35, 0.04) 0%, transparent 40%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.learn-hero .container {
  position: relative;
  z-index: 2;
}

.learn-hero .hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.learn-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.learn-hero h1 .highlight {
  color: var(--bright-yellow);
}

.learn-hero .hero-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.learn-hero .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
  justify-content: center;
}

.learn-hero .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.learn-hero-badge {
  margin-bottom: 20px;
}

.learn-hero-logo {
  height: 48px;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* ========== LEARN INTRO ========== */
.learn-intro {
  padding: 40px 0;
  text-align: center;
}

/* ========== LEARN PROGRAMMES (LIGHT CARD STYLE) ========== */
.learn-programmes-light {
  padding: 40px 0;
  background: var(--light-gray);
}

.learn-programmes-light .methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

/* Learn outcomes list inside method cards */
.learn-outcomes {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(43, 65, 86, 0.08);
}

.learn-outcomes li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.learn-outcomes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bright-yellow);
}

.method-card--grow .learn-outcomes li::before {
  background: var(--sky-blue);
}

.method-card--online .learn-outcomes li::before {
  background: var(--charcoal);
}

/* ========== LEARN PROGRAMMES (GLASS-MORPHISM ON CHARCOAL - LEGACY) ========== */
.learn-programmes-section {
  padding: 60px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.learn-programmes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(254, 193, 35, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(59, 120, 187, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.learn-programmes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* Programme Card */
.learn-programme-card {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Gradient border on hover */
.learn-programme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.learn-programme-card--yellow::before {
  background: linear-gradient(135deg, var(--bright-yellow), rgba(254,193,35,0.3), var(--bright-yellow));
}

.learn-programme-card--blue::before {
  background: linear-gradient(135deg, var(--sky-blue), rgba(59,120,187,0.3), var(--sky-blue));
}

.learn-programme-card--charcoal::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1), rgba(255,255,255,0.5));
}

.learn-programme-card:hover::before {
  opacity: 1;
}

.learn-programme-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Background glow */
.learn-programme-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.04;
  transition: all 0.6s ease;
  pointer-events: none;
}

.learn-programme-card--yellow .learn-programme-glow { background: var(--bright-yellow); }
.learn-programme-card--blue .learn-programme-glow { background: var(--sky-blue); }
.learn-programme-card--charcoal .learn-programme-glow { background: var(--white); }

.learn-programme-card:hover .learn-programme-glow {
  opacity: 0.12;
  transform: scale(1.6);
}

/* Step number watermark */
.learn-programme-number {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.learn-programme-card:hover .learn-programme-number {
  opacity: 0.08;
}

/* Icon wrapper */
.learn-programme-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.learn-programme-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.learn-programme-icon--yellow {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
}

.learn-programme-icon--blue {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
}

.learn-programme-icon--charcoal {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.learn-programme-card:hover .learn-programme-icon {
  transform: scale(1.1) translateY(-4px);
}

/* Icon glow */
.learn-programme-icon-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(16px);
  z-index: 0;
}

.learn-programme-card--yellow .learn-programme-icon-wrap::after { background: var(--bright-yellow); }
.learn-programme-card--blue .learn-programme-icon-wrap::after { background: var(--sky-blue); }
.learn-programme-card--charcoal .learn-programme-icon-wrap::after { background: rgba(255,255,255,0.3); }

.learn-programme-card:hover .learn-programme-icon-wrap::after {
  opacity: 0.4;
  width: 90px;
  height: 90px;
}

.learn-programme-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

/* Divider line */
.learn-programme-divider {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  margin: 8px auto 16px;
  transition: width 0.4s ease;
}

.learn-programme-divider--yellow { background: var(--bright-yellow); }
.learn-programme-divider--blue { background: var(--sky-blue); }
.learn-programme-divider--charcoal { background: rgba(255,255,255,0.3); }

.learn-programme-card:hover .learn-programme-divider {
  width: 60px;
}

.learn-programme-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-programme-card:hover .learn-programme-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Feature list inside programme cards */
.learn-programme-features {
  text-align: left;
  display: inline-block;
}

.learn-programme-features li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.learn-programme-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.learn-programme-card--yellow .learn-programme-features li::before { background: var(--bright-yellow); }
.learn-programme-card--blue .learn-programme-features li::before { background: var(--sky-blue); }
.learn-programme-card--charcoal .learn-programme-features li::before { background: rgba(255,255,255,0.4); }

.learn-programme-card:hover .learn-programme-features li {
  color: rgba(255, 255, 255, 0.75);
}


/* ========== WHAT'S INCLUDED (FEATURE GRID) ========== */
.learn-included {
  padding: 60px 0;
  background: var(--white);
}

.learn-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.learn-feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(43, 65, 86, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.learn-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--bright-yellow), var(--sky-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.learn-feature-card:hover::before {
  opacity: 1;
}

.learn-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 65, 86, 0.10);
  border-color: transparent;
}

.learn-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}

.learn-feature-icon--yellow {
  background: rgba(254, 193, 35, 0.12);
  color: #d4a017;
}

.learn-feature-icon--blue {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
}

.learn-feature-card:hover .learn-feature-icon {
  transform: scale(1.1);
}

.learn-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.learn-feature-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}


/* ========== LEARN PAGE RESPONSIVE ========== */
@media (min-width: 768px) {
  .learn-hero {
    padding: 140px 0 100px;
  }

  .learn-hero h1 {
    font-size: 2.5rem;
  }

  .learn-hero .hero-text {
    font-size: 1.1rem;
  }

  .learn-hero .hero-buttons {
    flex-direction: row;
  }

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

  .learn-programmes-light {
    padding: 60px 0;
  }

  .learn-programmes-light .methodology-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .learn-programmes-section {
    padding: 80px 0;
  }

  .learn-included {
    padding: 80px 0;
  }

  .learn-hero-logo {
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .learn-hero {
    padding: 160px 0 120px;
  }

  .learn-hero h1 {
    font-size: 3rem;
  }

  .learn-hero .hero-text {
    font-size: 1.15rem;
  }

  .learn-programmes-light {
    padding: 80px 0;
  }

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

  .learn-programmes-section {
    padding: 100px 0;
  }

  .learn-included {
    padding: 100px 0;
  }

  .learn-hero-logo {
    height: 64px;
  }
}


/* ============================================================
   GET ONLINE PAGE STYLES
   ============================================================ */

/* ========== GET ONLINE HERO ========== */
.getonline-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a50 50%, var(--charcoal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

/* Animated gradient overlay */
.getonline-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 120, 187, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(254, 193, 35, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59, 120, 187, 0.04) 0%, transparent 40%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.getonline-hero .container {
  position: relative;
  z-index: 2;
}

.getonline-hero .hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.getonline-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.getonline-hero h1 .highlight {
  color: var(--sky-blue);
}

.getonline-hero .hero-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.getonline-hero .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
  justify-content: center;
}

.getonline-hero .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.getonline-hero-badge {
  margin-bottom: 20px;
}

.getonline-hero-logo {
  height: 48px;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* ========== GET ONLINE INTRO ========== */
.getonline-intro {
  padding: 40px 0;
  text-align: center;
}

/* ========== SERVICES GRID (Innovative staggered cards) ========== */
.getonline-services-section {
  padding: 40px 0;
  background: var(--light-gray);
}

.getonline-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.getonline-service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(43, 65, 86, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Gradient border on hover */
.getonline-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--bright-yellow), var(--sky-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.getonline-service-card:hover::before {
  opacity: 1;
}

.getonline-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43, 65, 86, 0.12);
  border-color: transparent;
}

/* Service number watermark */
.getonline-service-number {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--charcoal);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.getonline-service-card:hover .getonline-service-number {
  opacity: 0.08;
}

/* Service icon */
.getonline-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.getonline-service-icon--yellow {
  background: rgba(254, 193, 35, 0.12);
  color: #d4a017;
}

.getonline-service-icon--blue {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
}

.getonline-service-icon--charcoal {
  background: rgba(43, 65, 86, 0.10);
  color: var(--charcoal);
}

.getonline-service-card:hover .getonline-service-icon {
  transform: scale(1.1);
}

/* Service content */
.getonline-service-content {
  flex: 1;
}

.getonline-service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.getonline-service-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Service feature list */
.getonline-service-features {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(43, 65, 86, 0.06);
}

.getonline-service-features li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.getonline-service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--sky-blue);
}

/* Alternate bullet colours per card */
.getonline-service-card:nth-child(odd) .getonline-service-features li::before {
  background: var(--bright-yellow);
}

.getonline-service-card:nth-child(even) .getonline-service-features li::before {
  background: var(--sky-blue);
}


/* ========== PROCESS TIMELINE ========== */
.getonline-process {
  padding: 40px 0;
  background: var(--light-gray);
}

.process-timeline {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(43, 65, 86, 0.2);
}

.process-step:nth-child(2) .process-step-num {
  background: var(--sky-blue);
}

.process-step:nth-child(3) .process-step-num {
  background: var(--bright-yellow);
  color: var(--charcoal);
}

.process-step:nth-child(4) .process-step-num {
  background: var(--charcoal);
}

.process-step:hover .process-step-num {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(43, 65, 86, 0.3);
}

.process-step-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--charcoal), rgba(43, 65, 86, 0.15));
  margin-top: 4px;
}

.process-step:nth-child(2) .process-step-line {
  background: linear-gradient(to bottom, var(--sky-blue), rgba(59, 120, 187, 0.15));
}

.process-step:nth-child(3) .process-step-line {
  background: linear-gradient(to bottom, var(--bright-yellow), rgba(254, 193, 35, 0.15));
}

/* Hide line on last step */
.process-step:last-child .process-step-line {
  display: none;
}

.process-step-content {
  padding-bottom: 32px;
}

.process-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.process-step-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Outline charcoal button (for YouTube CTA etc.) */
.btn-outline-charcoal {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-outline-charcoal:hover {
  background: var(--charcoal);
  color: var(--white);
}


/* ========== GET ONLINE RESPONSIVE ========== */
@media (min-width: 768px) {
  .getonline-hero {
    padding: 140px 0 100px;
  }

  .getonline-hero h1 {
    font-size: 2.5rem;
  }

  .getonline-hero .hero-text {
    font-size: 1.1rem;
  }

  .getonline-hero .hero-buttons {
    flex-direction: row;
  }

  .getonline-services-section {
    padding: 60px 0;
  }

  .getonline-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .getonline-service-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 36px 28px;
  }

  .getonline-process {
    padding: 60px 0;
  }

  .getonline-hero-logo {
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .getonline-hero {
    padding: 160px 0 120px;
  }

  .getonline-hero h1 {
    font-size: 3rem;
  }

  .getonline-hero .hero-text {
    font-size: 1.15rem;
  }

  .getonline-services-section {
    padding: 80px 0;
  }

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

  .getonline-service-card {
    flex-direction: column;
  }

  .getonline-process {
    padding: 80px 0;
  }

  .getonline-hero-logo {
    height: 64px;
  }
}


/* ============================================================
   GROW / MENTORING PAGE STYLES
   ============================================================ */

/* ========== GROW HERO ========== */
.grow-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a50 50%, var(--charcoal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

.grow-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(59, 120, 187, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(59, 120, 187, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(254, 193, 35, 0.04) 0%, transparent 40%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.grow-hero .container {
  position: relative;
  z-index: 2;
}

.grow-hero .hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.grow-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.grow-hero h1 .highlight {
  color: var(--sky-blue);
}

.grow-hero .hero-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.grow-hero .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
  justify-content: center;
}

.grow-hero .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.grow-hero-badge {
  margin-bottom: 20px;
}

.grow-hero-logo {
  height: 48px;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* ========== GROW INTRO ========== */
.grow-intro {
  padding: 40px 0;
  text-align: center;
}

/* ========== S.E.E.D.S FRAMEWORK — INNOVATIVE SHOWCASE ========== */
.seeds-showcase {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a2d3d 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Animated background particles */
.seeds-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.seeds-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: seedsFloat 14s ease-in-out infinite;
}

.seeds-particle--1 {
  width: 6px; height: 6px;
  background: var(--sky-blue);
  top: 15%; left: 10%;
  animation-delay: 0s;
}
.seeds-particle--2 {
  width: 4px; height: 4px;
  background: var(--bright-yellow);
  top: 30%; right: 15%;
  animation-delay: 2.5s;
}
.seeds-particle--3 {
  width: 8px; height: 8px;
  background: var(--sky-blue);
  bottom: 25%; left: 20%;
  animation-delay: 5s;
}
.seeds-particle--4 {
  width: 5px; height: 5px;
  background: var(--bright-yellow);
  top: 60%; right: 8%;
  animation-delay: 7.5s;
}
.seeds-particle--5 {
  width: 3px; height: 3px;
  background: var(--white);
  top: 10%; right: 30%;
  animation-delay: 3s;
}
.seeds-particle--6 {
  width: 6px; height: 6px;
  background: var(--white);
  bottom: 15%; right: 40%;
  animation-delay: 10s;
}

@keyframes seedsFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  15% { opacity: 0.6; }
  50% { opacity: 0.4; transform: translateY(-40px) scale(1.3); }
  85% { opacity: 0.6; }
}

/* Title */
.seeds-showcase .container {
  position: relative;
  z-index: 1;
}

.seeds-showcase-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.seeds-showcase-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

/* ---- SEEDS Word — Vertical on mobile ---- */
.seeds-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

/* Individual letter block */
.seeds-letter-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
}

/* Big letter */
.seeds-big-letter {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
  -webkit-text-stroke: 1.5px;
}

.seeds-big-letter--blue {
  color: transparent;
  -webkit-text-stroke-color: var(--sky-blue);
  text-shadow: 0 0 30px rgba(59, 120, 187, 0.15);
}

.seeds-big-letter--yellow {
  color: transparent;
  -webkit-text-stroke-color: var(--bright-yellow);
  text-shadow: 0 0 30px rgba(254, 193, 35, 0.15);
}

/* On hover: fill the letter */
.seeds-letter-block:hover .seeds-big-letter--blue {
  color: var(--sky-blue);
  text-shadow: 0 0 40px rgba(59, 120, 187, 0.4);
  transform: scale(1.12);
}

.seeds-letter-block:hover .seeds-big-letter--yellow {
  color: var(--bright-yellow);
  text-shadow: 0 0 40px rgba(254, 193, 35, 0.4);
  transform: scale(1.12);
}

/* Connector line from letter to detail */
.seeds-connector {
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(255,255,255,0));
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 4px 0;
}

.seeds-letter-block:hover .seeds-connector {
  height: 20px;
}

/* Detail card (below/beside the letter) */
.seeds-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 16px;
  max-width: 280px;
}

.seeds-letter-block:hover .seeds-detail {
  max-height: 200px;
  opacity: 1;
  padding: 12px 16px;
}

.seeds-detail-icon {
  color: var(--bright-yellow);
  margin-bottom: 8px;
}

.seeds-letter-block:nth-child(odd) .seeds-detail-icon {
  color: var(--sky-blue);
}

.seeds-detail-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.seeds-detail-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Dot separator between letters */
.seeds-dot-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}

.seeds-dot-separator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* Full acronym reveal */
.seeds-acronym {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: inline-block;
}

.seeds-acronym-full {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ========== PROGRAMME COMPARISON CARDS ========== */
.grow-programmes {
  padding: 40px 0;
  background: var(--white);
}

.grow-programmes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.grow-programme-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(43, 65, 86, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.grow-programme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43, 65, 86, 0.12);
}

/* Featured card (Accelerate) */
.grow-programme-card--accelerate {
  border: 2px solid var(--sky-blue);
  box-shadow: 0 4px 20px rgba(59, 120, 187, 0.10);
}

.grow-programme-card--accelerate:hover {
  box-shadow: 0 12px 40px rgba(59, 120, 187, 0.18);
}

.grow-programme-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Programme badge (duration) */
.grow-programme-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(43, 65, 86, 0.08);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.grow-programme-badge--featured {
  background: rgba(59, 120, 187, 0.10);
  color: var(--sky-blue);
}

.grow-programme-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.grow-programme-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 14px;
  font-weight: 500;
}

.grow-programme-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Best For section */
.grow-programme-for {
  margin-bottom: 20px;
}

.grow-programme-for h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.grow-programme-for ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.grow-programme-for li {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--light-gray);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Includes section */
.grow-programme-includes {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(43, 65, 86, 0.06);
}

.grow-programme-includes h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.grow-programme-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.grow-programme-card--sprint .grow-programme-includes svg {
  color: var(--charcoal);
}

.grow-programme-card--accelerate .grow-programme-includes svg {
  color: var(--sky-blue);
}

/* Programme CTA buttons */
.grow-programme-btn {
  width: 100%;
  text-align: center;
}

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

.btn-outline-blue:hover {
  background: var(--sky-blue);
  color: var(--white);
}

.btn-blue {
  background: var(--sky-blue);
  color: var(--white);
  border: 2px solid var(--sky-blue);
}

.btn-blue:hover {
  background: #2d6299;
  border-color: #2d6299;
}


/* ========== EXPERT TEAM – ORBITAL SHOWCASE ========== */
.experts-showcase {
  padding: 60px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Floating particles */
.experts-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.experts-particle--1 {
  width: 200px; height: 200px;
  background: var(--bright-yellow);
  top: 10%; left: -5%;
  animation: expertFloat 18s ease-in-out infinite;
}

.experts-particle--2 {
  width: 120px; height: 120px;
  background: var(--sky-blue);
  top: 60%; right: -3%;
  animation: expertFloat 22s ease-in-out infinite reverse;
}

.experts-particle--3 {
  width: 80px; height: 80px;
  background: var(--bright-yellow);
  bottom: 15%; left: 20%;
  animation: expertFloat 15s ease-in-out infinite 3s;
}

.experts-particle--4 {
  width: 150px; height: 150px;
  background: var(--sky-blue);
  top: 5%; right: 15%;
  animation: expertFloat 20s ease-in-out infinite 5s;
}

.experts-particle--5 {
  width: 60px; height: 60px;
  background: var(--bright-yellow);
  bottom: 30%; right: 30%;
  animation: expertFloat 16s ease-in-out infinite 2s;
}

@keyframes expertFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(20px, -30px) scale(1.05); }
  50%      { transform: translate(-15px, 20px) scale(0.95); }
  75%      { transform: translate(25px, 10px) scale(1.02); }
}

.experts-showcase-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

.experts-showcase-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.experts-showcase-subtitle strong {
  color: var(--bright-yellow);
  font-weight: 700;
}

/* ---- Orbital Container ---- */
/* Mobile: stacked column layout */
.experts-orbit {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ---- Central Hub ---- */
/* Mobile: static in flow, centered */
.experts-hub {
  position: relative;
  width: 130px; height: 130px;
  z-index: 5;
  order: -1;
  margin-bottom: 10px;
}

.experts-hub-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.experts-hub-ring--outer {
  width: 130px; height: 130px;
  border: 2px solid rgba(254, 193, 35, 0.25);
  animation: hubPulse 3s ease-in-out infinite;
}

.experts-hub-ring--inner {
  width: 100px; height: 100px;
  border: 1.5px solid rgba(59, 120, 187, 0.35);
  animation: hubPulse 3s ease-in-out infinite 1.5s;
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.experts-hub-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-yellow), #e6ac00);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(254, 193, 35, 0.3), 0 0 80px rgba(254, 193, 35, 0.1);
  z-index: 6;
}

.experts-hub-label {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--charcoal);
  line-height: 1;
}

.experts-hub-sublabel {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(43, 65, 86, 0.7);
  line-height: 1;
  margin-top: 2px;
}

/* ---- Connector Lines ---- */
/* Hidden on mobile, shown on tablet+ */
.experts-connectors {
  display: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

.experts-connector-line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
  transition: stroke 0.4s ease, stroke-width 0.4s ease;
}

/* ---- Expert Nodes ---- */
/* Mobile: static in flex flow */
.expert-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 4;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

/* Position overrides only apply on tablet+ (set in media query) */
.expert-node--top,
.expert-node--right,
.expert-node--bottom,
.expert-node--left {
  /* No absolute positioning on mobile */
}

/* Node Icon */
.expert-node-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.expert-node-icon::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.expert-node-icon--yellow {
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
  border: 1.5px solid rgba(254, 193, 35, 0.3);
}

.expert-node-icon--yellow::before {
  box-shadow: 0 0 0 0 rgba(254, 193, 35, 0);
}

.expert-node-icon--blue {
  background: rgba(59, 120, 187, 0.15);
  color: var(--sky-blue);
  border: 1.5px solid rgba(59, 120, 187, 0.3);
}

.expert-node-icon--blue::before {
  box-shadow: 0 0 0 0 rgba(59, 120, 187, 0);
}

/* Hover: glow effect on icon */
.expert-node:hover .expert-node-icon--yellow {
  background: rgba(254, 193, 35, 0.25);
  transform: scale(1.12);
  border-color: rgba(254, 193, 35, 0.6);
}

.expert-node:hover .expert-node-icon--yellow::before {
  box-shadow: 0 0 20px rgba(254, 193, 35, 0.3), 0 0 40px rgba(254, 193, 35, 0.1);
}

.expert-node:hover .expert-node-icon--blue {
  background: rgba(59, 120, 187, 0.25);
  transform: scale(1.12);
  border-color: rgba(59, 120, 187, 0.6);
}

.expert-node:hover .expert-node-icon--blue::before {
  box-shadow: 0 0 20px rgba(59, 120, 187, 0.3), 0 0 40px rgba(59, 120, 187, 0.1);
}

/* Node Title */
.expert-node-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.expert-node:hover .expert-node-title {
  color: var(--bright-yellow);
}

/* Node Detail (visible on mobile, hover-reveal on tablet+) */
.expert-node-detail {
  max-height: 150px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  max-width: 280px;
}

.expert-node-detail p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.expert-node:hover .expert-node-detail {
  max-height: 150px;
  opacity: 1;
}

/* Connector line animation */
@keyframes connectorDash {
  to { stroke-dashoffset: -20; }
}

.experts-connector-line {
  animation: connectorDash 2s linear infinite;
}

/* ---- Bottom Tagline ---- */
.experts-tagline {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.experts-tagline-icon {
  display: flex;
  align-items: center;
  color: var(--bright-yellow);
}


/* ========== GROW PAGE RESPONSIVE ========== */
@media (min-width: 768px) {
  .grow-hero {
    padding: 140px 0 100px;
  }

  .grow-hero h1 {
    font-size: 2.5rem;
  }

  .grow-hero .hero-text {
    font-size: 1.1rem;
  }

  .grow-hero .hero-buttons {
    flex-direction: row;
  }

  .seeds-showcase {
    padding: 100px 0 80px;
  }

  .seeds-showcase-title {
    font-size: 2.2rem;
  }

  /* Switch to horizontal row on tablet+ */
  .seeds-word {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    align-items: flex-start;
  }

  .seeds-letter-block {
    flex: 0 0 auto;
  }

  .seeds-big-letter {
    font-size: 5rem;
  }

  .seeds-dot-separator {
    padding: 22px 4px 0;
  }

  .seeds-detail {
    max-width: 180px;
  }

  .grow-programmes {
    padding: 60px 0;
  }

  .grow-programmes-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  /* Switch to orbital layout */
  .experts-showcase {
    padding: 80px 0;
  }

  .experts-showcase-title {
    font-size: 2.2rem;
  }

  .experts-orbit {
    display: block;
    position: relative;
    max-width: 550px;
    aspect-ratio: 1 / 1;
  }

  .experts-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    margin-bottom: 0;
  }

  .experts-hub-ring--outer {
    width: 120px; height: 120px;
  }

  .experts-hub-ring--inner {
    width: 92px; height: 92px;
  }

  .experts-hub-core {
    width: 74px; height: 74px;
  }

  .experts-connectors {
    display: block;
  }

  .expert-node {
    position: absolute;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
  }

  .expert-node--top {
    top: 0; left: 50%;
    transform: translateX(-50%);
  }

  .expert-node--right {
    top: 50%; right: 0;
    transform: translateY(-50%);
  }

  .expert-node--bottom {
    bottom: 0; left: 50%;
    transform: translateX(-50%);
  }

  .expert-node--left {
    top: 50%; left: 0;
    transform: translateY(-50%);
  }

  .expert-node-icon {
    width: 64px; height: 64px;
  }

  .expert-node-title {
    font-size: 0.85rem;
  }

  /* Hide detail on tablet, show on hover */
  .expert-node-detail {
    max-height: 0;
    opacity: 0;
    max-width: 160px;
  }

  .expert-node:hover .expert-node-detail {
    max-height: 150px;
    opacity: 1;
  }

  .grow-hero-logo {
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .grow-hero {
    padding: 160px 0 120px;
  }

  .grow-hero h1 {
    font-size: 3rem;
  }

  .grow-hero .hero-text {
    font-size: 1.15rem;
  }

  .seeds-showcase {
    padding: 120px 0 100px;
  }

  .seeds-showcase-title {
    font-size: 2.5rem;
  }

  .seeds-big-letter {
    font-size: 6.5rem;
  }

  .seeds-dot-separator {
    padding: 30px 6px 0;
  }

  .seeds-detail {
    max-width: 200px;
  }

  .grow-programmes {
    padding: 80px 0;
  }

  .experts-showcase {
    padding: 100px 0;
  }

  .experts-showcase-title {
    font-size: 2.5rem;
  }

  .experts-orbit {
    max-width: 700px;
  }

  .experts-hub {
    width: 150px; height: 150px;
  }

  .experts-hub-ring--outer {
    width: 150px; height: 150px;
  }

  .experts-hub-ring--inner {
    width: 116px; height: 116px;
  }

  .experts-hub-core {
    width: 90px; height: 90px;
  }

  .experts-hub-label {
    font-size: 0.95rem;
  }

  .expert-node-icon {
    width: 76px; height: 76px;
  }

  .expert-node-icon svg {
    width: 34px; height: 34px;
  }

  .expert-node-title {
    font-size: 0.95rem;
  }

  .expert-node-detail {
    max-width: 210px;
  }

  .expert-node-detail p {
    font-size: 0.8rem;
  }

  .grow-hero-logo {
    height: 64px;
  }
}


/* ===========================================================
   AI PAGE STYLES
   =========================================================== */

/* ========== AI HERO ========== */
.ai-hero {
  position: relative;
  background: var(--charcoal);
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Neural network background */
.ai-hero-neural {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.ai-neural-svg {
  width: 100%;
  height: 100%;
}

.ai-node {
  fill: var(--bright-yellow);
  animation: aiNodePulse 3s ease-in-out infinite;
}

.ai-node--1 { animation-delay: 0s; }
.ai-node--2 { animation-delay: 0.3s; }
.ai-node--3 { animation-delay: 0.6s; }
.ai-node--4 { animation-delay: 0.9s; }
.ai-node--5 { animation-delay: 1.2s; }
.ai-node--6 { animation-delay: 0.15s; }
.ai-node--7 { animation-delay: 0.45s; }
.ai-node--8 { animation-delay: 0.75s; }
.ai-node--9 { animation-delay: 1.05s; }
.ai-node--10 { animation-delay: 1.35s; }
.ai-node--11 { animation-delay: 0.5s; }
.ai-node--12 { animation-delay: 0.8s; }

@keyframes aiNodePulse {
  0%, 100% { r: 3; opacity: 0.5; }
  50% { r: 6; opacity: 1; }
}

.ai-synapse {
  stroke: var(--sky-blue);
  stroke-width: 0.8;
  stroke-dasharray: 8 6;
  opacity: 0.4;
  animation: aiSynapseFlow 4s linear infinite;
}

@keyframes aiSynapseFlow {
  to { stroke-dashoffset: -28; }
}

.ai-hero .hero-content {
  position: relative;
  z-index: 3;
}

.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 193, 35, 0.12);
  border: 1px solid rgba(254, 193, 35, 0.25);
  color: var(--bright-yellow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.ai-hero-badge-icon {
  display: flex;
  align-items: center;
}

.ai-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ai-hero .hero-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}


/* ========== AI INTRO ========== */
.ai-intro {
  padding: 50px 0;
  background: var(--white);
  text-align: center;
}

/* Dual-audience badges */
.ai-audience-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}

.ai-audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.ai-audience-badge:hover {
  transform: translateY(-2px);
}

.ai-audience-badge--msme {
  background: rgba(254, 193, 35, 0.10);
  color: #b8860b;
  border: 1px solid rgba(254, 193, 35, 0.25);
}

.ai-audience-badge--corp {
  background: rgba(59, 120, 187, 0.10);
  color: var(--sky-blue);
  border: 1px solid rgba(59, 120, 187, 0.25);
}


/* ========== AI TOOLS SHOWCASE ========== */
.ai-tools-showcase {
  padding: 60px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.ai-tools-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.ai-tools-particle--1 {
  width: 250px; height: 250px;
  background: var(--bright-yellow);
  top: -5%; left: -8%;
  animation: expertFloat 20s ease-in-out infinite;
}

.ai-tools-particle--2 {
  width: 180px; height: 180px;
  background: var(--sky-blue);
  bottom: 5%; right: -5%;
  animation: expertFloat 24s ease-in-out infinite reverse;
}

.ai-tools-particle--3 {
  width: 100px; height: 100px;
  background: var(--bright-yellow);
  top: 40%; right: 15%;
  animation: expertFloat 16s ease-in-out infinite 2s;
}

.ai-tools-particle--4 {
  width: 140px; height: 140px;
  background: var(--sky-blue);
  bottom: 20%; left: 10%;
  animation: expertFloat 18s ease-in-out infinite 4s;
}

.ai-tools-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.ai-tools-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: 44px;
}

.ai-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Tool cards */
.ai-tool-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 26px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.ai-tool-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(254, 193, 35, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ai-tool-card:hover .ai-tool-card-glow {
  opacity: 1;
}

.ai-tool-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.ai-tool-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ai-tool-icon--yellow {
  background: rgba(254, 193, 35, 0.12);
  color: var(--bright-yellow);
  border: 1px solid rgba(254, 193, 35, 0.2);
}

.ai-tool-icon--blue {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
  border: 1px solid rgba(59, 120, 187, 0.2);
}

.ai-tool-card:hover .ai-tool-icon {
  transform: scale(1.08);
}

.ai-tool-card:hover .ai-tool-icon--yellow {
  box-shadow: 0 0 24px rgba(254, 193, 35, 0.2);
}

.ai-tool-card:hover .ai-tool-icon--blue {
  box-shadow: 0 0 24px rgba(59, 120, 187, 0.2);
}

.ai-tool-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ai-tool-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ai-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-tool-tags span {
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}


/* ========== AI PROCESS TIMELINE ========== */
.ai-process {
  padding: 60px 0;
  background: var(--white);
}

.ai-timeline {
  max-width: 680px;
  margin: 40px auto 0;
}

.ai-timeline-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}

.ai-timeline-step:last-child {
  padding-bottom: 0;
}

.ai-timeline-step:last-child .ai-timeline-line {
  display: none;
}

.ai-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ai-timeline-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--bright-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.ai-timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--charcoal), rgba(43, 65, 86, 0.1));
  margin-top: 8px;
  border-radius: 2px;
}

.ai-timeline-content {
  padding-top: 4px;
}

.ai-timeline-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sky-blue);
  background: rgba(59, 120, 187, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.ai-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.ai-timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* ========== AI INDUSTRIES ========== */
.ai-industries {
  padding: 60px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.ai-industries-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.ai-industries-particle--1 {
  width: 200px; height: 200px;
  background: var(--sky-blue);
  top: 10%; right: -5%;
  animation: expertFloat 22s ease-in-out infinite;
}

.ai-industries-particle--2 {
  width: 120px; height: 120px;
  background: var(--bright-yellow);
  bottom: 15%; left: -3%;
  animation: expertFloat 18s ease-in-out infinite 3s;
}

.ai-industries-particle--3 {
  width: 90px; height: 90px;
  background: var(--sky-blue);
  top: 50%; left: 30%;
  animation: expertFloat 20s ease-in-out infinite 6s;
}

.ai-industries-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.ai-industries-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.ai-industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Industry cards */
.ai-industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.ai-industry-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.ai-industry-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ai-industry-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-industry-icon--yellow {
  background: rgba(254, 193, 35, 0.12);
  color: var(--bright-yellow);
  border: 1px solid rgba(254, 193, 35, 0.2);
}

.ai-industry-icon--blue {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
  border: 1px solid rgba(59, 120, 187, 0.2);
}

.ai-industry-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.ai-industry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-industry-problem h5,
.ai-industry-solution h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.ai-industry-problem h5 {
  color: rgba(255, 255, 255, 0.4);
}

.ai-industry-solution h5 {
  color: var(--bright-yellow);
}

.ai-industry-problem li,
.ai-industry-solution li {
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 3px 0;
  list-style: none;
}

.ai-industry-problem li {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}

.ai-industry-solution li {
  color: rgba(255, 255, 255, 0.7);
}

.ai-industry-solution li::before {
  content: '\2192  ';
  color: var(--bright-yellow);
  font-weight: 700;
}


/* ========== AI CORPORATE SECTION ========== */
.ai-corporate {
  padding: 60px 0;
  background: var(--white);
}

.ai-corporate-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.ai-corporate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 120, 187, 0.08);
  color: var(--sky-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.ai-corporate-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ai-corporate-content > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ai-corporate-list {
  list-style: none;
  margin-bottom: 28px;
}

.ai-corporate-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 8px 0;
}

.ai-corporate-list svg {
  color: var(--sky-blue);
  flex-shrink: 0;
}

/* Stats grid */
.ai-corporate-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-corp-stat {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(43, 65, 86, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-corp-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(43, 65, 86, 0.08);
}

.ai-corp-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.ai-corp-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Footer pill for AI */
.footer-pill--ai {
  border-color: rgba(254, 193, 35, 0.3);
  color: var(--bright-yellow);
}

.footer-pill--ai:hover {
  background: rgba(254, 193, 35, 0.08);
  border-color: var(--bright-yellow);
}


/* ========== AI HERO — CANVAS, OVERLAY, TYPED TEXT, SDG TAGS ========== */
.ai-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.ai-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(43, 65, 86, 0.3) 0%, rgba(43, 65, 86, 0.7) 100%);
  pointer-events: none;
}

.ai-hero-badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-yellow);
  animation: heroStatusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroStatusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(254, 193, 35, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(254, 193, 35, 0); }
}

.ai-hero-line1,
.ai-hero-line2,
.ai-hero-line3 {
  display: block;
}

.ai-hero-line1 {
  font-size: 0.85em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.ai-hero-line2 {
  font-size: 1em;
  color: var(--white);
}

.ai-hero-line3 {
  font-size: 1em;
  color: var(--white);
}

.ai-hero-typed {
  color: var(--bright-yellow);
  border-right: 2px solid var(--bright-yellow);
  padding-right: 2px;
  animation: typedCursorBlink 0.8s ease-in-out infinite;
}

@keyframes typedCursorBlink {
  0%, 100% { border-color: var(--bright-yellow); }
  50% { border-color: transparent; }
}

.ai-hero-credibility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-hero-sdg {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.ai-sdg-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ai-sdg-tag--4 {
  background: rgba(200, 30, 30, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(200, 30, 30, 0.3);
}

.ai-sdg-tag--8 {
  background: rgba(163, 28, 59, 0.2);
  color: #e87b9c;
  border: 1px solid rgba(163, 28, 59, 0.3);
}

.ai-sdg-tag--9 {
  background: rgba(253, 105, 37, 0.2);
  color: #fd9a5e;
  border: 1px solid rgba(253, 105, 37, 0.3);
}

.ai-hero-credibility-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  display: none;
}

.ai-hero-sdg-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .ai-hero-credibility {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .ai-hero-credibility-divider {
    display: block;
    height: 24px;
  }
}


/* ========== AI CRISIS SECTION ========== */
.ai-crisis {
  background: var(--white);
  position: relative;
}

.ai-crisis-header {
  text-align: center;
  margin-bottom: 48px;
}

.ai-crisis-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ai-crisis-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.ai-crisis-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.ai-crisis-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(43, 65, 86, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-crisis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43, 65, 86, 0.1);
}

.ai-crisis-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(254, 193, 35, 0.1);
  color: var(--bright-yellow);
  border: 1px solid rgba(254, 193, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.ai-crisis-icon--blue {
  background: rgba(59, 120, 187, 0.1);
  color: var(--sky-blue);
  border: 1px solid rgba(59, 120, 187, 0.2);
}

.ai-crisis-card:hover .ai-crisis-icon {
  transform: scale(1.08);
}

.ai-crisis-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 2px;
}

.ai-crisis-unit {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.ai-crisis-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.ai-crisis-mission {
  background: var(--charcoal);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ai-crisis-mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(254, 193, 35, 0.15);
  color: var(--bright-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-crisis-mission p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.ai-crisis-mission p strong {
  color: var(--bright-yellow);
  font-weight: 700;
}

@media (min-width: 768px) {
  .ai-crisis-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-crisis-header h2 {
    font-size: 2rem;
  }

  .ai-crisis-mission {
    padding: 32px 36px;
  }
}

@media (min-width: 1024px) {
  .ai-crisis-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .ai-crisis-header h2 {
    font-size: 2.3rem;
  }

  .ai-crisis-number {
    font-size: 3.2rem;
  }
}


/* ========== AI FRAMEWORK SECTION ========== */
.ai-framework {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.ai-framework-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(254, 193, 35, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(59, 120, 187, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.ai-framework-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.ai-framework-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 120, 187, 0.08);
  color: var(--sky-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.ai-framework-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ai-framework-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.ai-framework-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.ai-framework-pillar {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(43, 65, 86, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.ai-framework-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-yellow), var(--sky-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-framework-pillar:hover::before {
  opacity: 1;
}

.ai-framework-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(43, 65, 86, 0.1);
}

.ai-pillar-phase {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sky-blue);
  background: rgba(59, 120, 187, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ai-pillar-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ai-pillar-icon-wrap--yellow {
  background: rgba(254, 193, 35, 0.1);
  color: var(--bright-yellow);
  border: 1px solid rgba(254, 193, 35, 0.2);
}

.ai-pillar-icon-wrap--blue {
  background: rgba(59, 120, 187, 0.1);
  color: var(--sky-blue);
  border: 1px solid rgba(59, 120, 187, 0.2);
}

.ai-framework-pillar:hover .ai-pillar-icon-wrap {
  transform: scale(1.08);
}

.ai-framework-pillar h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.ai-framework-pillar > p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ai-pillar-deliverables {
  margin-bottom: 20px;
}

.ai-pillar-deliverables h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--charcoal);
  margin-bottom: 10px;
  opacity: 0.6;
}

.ai-pillar-deliverables ul {
  list-style: none;
}

.ai-pillar-deliverables ul li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.ai-pillar-deliverables ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bright-yellow);
}

.ai-pillar-metric {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(43, 65, 86, 0.06);
}

.ai-pillar-metric-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  white-space: nowrap;
}

.ai-pillar-metric-label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Framework connectors (arrows between pillars) */
.ai-framework-connector {
  display: none;
  align-items: center;
  justify-content: center;
}

.ai-framework-connector-line {
  display: none;
}

.ai-framework-connector-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(43, 65, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
}

@media (min-width: 768px) {
  .ai-framework-header h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .ai-framework-pillars {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }

  .ai-framework-connector {
    display: flex;
    padding: 0 12px;
  }

  .ai-framework-connector-arrow {
    transform: rotate(0deg);
  }

  .ai-framework-header h2 {
    font-size: 2.3rem;
  }

  .ai-framework-pillar {
    padding: 36px 28px;
  }
}


/* ========== AI JOURNEY TIMELINE ========== */
.ai-journey {
  background: var(--white);
  position: relative;
}

.ai-journey-header {
  text-align: center;
  margin-bottom: 48px;
}

.ai-journey-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sky-blue);
  background: rgba(59, 120, 187, 0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ai-journey-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.ai-journey-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}

.ai-journey-step:last-child {
  padding-bottom: 0;
}

.ai-journey-step:last-child .ai-journey-line {
  display: none;
}

.ai-journey-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ai-journey-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--bright-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ai-journey-step:hover .ai-journey-number {
  background: var(--bright-yellow);
  color: var(--charcoal);
  transform: scale(1.1);
}

.ai-journey-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--charcoal), rgba(43, 65, 86, 0.1));
  margin-top: 8px;
  border-radius: 2px;
}

.ai-journey-content {
  padding-top: 6px;
}

.ai-journey-week {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sky-blue);
  background: rgba(59, 120, 187, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.ai-journey-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.ai-journey-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.ai-journey-output {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254, 193, 35, 0.08);
  border: 1px solid rgba(254, 193, 35, 0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--text-dark);
}

.ai-journey-output span {
  font-weight: 700;
  color: var(--charcoal);
}


/* ========== AI SECTORS SECTION ========== */
.ai-sectors {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.ai-sectors-bg-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--bright-yellow);
  opacity: 0.04;
  top: -10%;
  right: -8%;
  pointer-events: none;
  animation: expertFloat 22s ease-in-out infinite;
}

.ai-sectors-bg-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--sky-blue);
  opacity: 0.04;
  bottom: -5%;
  left: -5%;
  pointer-events: none;
  animation: expertFloat 18s ease-in-out infinite 3s;
}

.ai-sectors-header {
  text-align: center;
  margin-bottom: 48px;
}

.ai-sectors-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ai-sectors-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.ai-sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ai-sector-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.ai-sector-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.ai-sector-front {
  margin-bottom: 20px;
}

.ai-sector-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ai-sector-icon--yellow {
  background: rgba(254, 193, 35, 0.12);
  color: var(--bright-yellow);
  border: 1px solid rgba(254, 193, 35, 0.2);
}

.ai-sector-icon--blue {
  background: rgba(59, 120, 187, 0.12);
  color: var(--sky-blue);
  border: 1px solid rgba(59, 120, 187, 0.2);
}

.ai-sector-card:hover .ai-sector-icon {
  transform: scale(1.08);
}

.ai-sector-front h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ai-sector-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.ai-sector-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.ai-sector-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-sector-before h5,
.ai-sector-after h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.ai-sector-before h5 {
  color: rgba(255, 255, 255, 0.4);
}

.ai-sector-after h5 {
  color: var(--bright-yellow);
}

.ai-sector-before li,
.ai-sector-after li {
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 3px 0;
  list-style: none;
}

.ai-sector-before li {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}

.ai-sector-after li {
  color: rgba(255, 255, 255, 0.7);
}

.ai-sector-after li::before {
  content: '\2192  ';
  color: var(--bright-yellow);
  font-weight: 700;
}

@media (min-width: 768px) {
  .ai-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-sectors-header h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .ai-sectors-header h2 {
    font-size: 2.5rem;
  }
}


/* ========== AI GLOBAL PARTNERSHIP SECTION ========== */
.ai-global {
  background: var(--white);
  position: relative;
}

.ai-global-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.ai-global-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 120, 187, 0.08);
  color: var(--sky-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.ai-global-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ai-global-content > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-global-features {
  list-style: none;
  margin-bottom: 32px;
}

.ai-global-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(43, 65, 86, 0.06);
}

.ai-global-features li:last-child {
  border-bottom: none;
}

.ai-global-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 120, 187, 0.08);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-global-features li strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.ai-global-features li span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.ai-global-partners-wrap {
  margin-bottom: 28px;
}

.ai-global-partners-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.ai-global-partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-global-partner-tags span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(43, 65, 86, 0.06);
  color: var(--charcoal);
  border: 1px solid rgba(43, 65, 86, 0.08);
  transition: all 0.3s ease;
}

.ai-global-partner-tags span:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Global stats sidebar */
.ai-global-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-global-stat-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(43, 65, 86, 0.06);
  transition: all 0.3s ease;
}

.ai-global-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 65, 86, 0.08);
}

.ai-global-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(254, 193, 35, 0.1);
  color: var(--bright-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.ai-global-stat-icon--blue {
  background: rgba(59, 120, 187, 0.1);
  color: var(--sky-blue);
}

.ai-global-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.ai-global-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

/* SDG strip at bottom of stats */
.ai-global-sdg-strip {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: var(--charcoal);
  border-radius: 16px;
  flex-wrap: wrap;
}

.ai-global-sdg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
}

.ai-global-sdg {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
}

.ai-global-sdg--4 {
  background: #c5192d;
}

.ai-global-sdg--8 {
  background: #a21942;
}

.ai-global-sdg--9 {
  background: #fd6925;
}

@media (min-width: 768px) {
  .ai-global-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .ai-global-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .ai-global-layout {
    gap: 64px;
  }

  .ai-global-content h2 {
    font-size: 2.3rem;
  }

  .ai-global-stat-number {
    font-size: 2.2rem;
  }
}


/* ========== AI CTA SECTION ========== */
.ai-cta-section {
  position: relative;
  overflow: hidden;
}

.ai-cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ai-cta-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.ai-cta-particle--1 {
  width: 250px;
  height: 250px;
  background: var(--bright-yellow);
  top: -15%;
  right: -10%;
  animation: expertFloat 20s ease-in-out infinite;
}

.ai-cta-particle--2 {
  width: 150px;
  height: 150px;
  background: var(--sky-blue);
  bottom: -10%;
  left: -5%;
  animation: expertFloat 16s ease-in-out infinite 4s;
}

.ai-cta-particle--3 {
  width: 100px;
  height: 100px;
  background: var(--bright-yellow);
  top: 40%;
  left: 15%;
  animation: expertFloat 18s ease-in-out infinite 2s;
}

.ai-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.ai-cta-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bright-yellow);
  background: rgba(254, 193, 35, 0.12);
  border: 1px solid rgba(254, 193, 35, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ai-cta-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ai-cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-cta-content p strong {
  color: var(--white);
}

.ai-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.ai-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.ai-cta-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(254, 193, 35, 0.5);
  display: inline-block;
}

@media (min-width: 768px) {
  .ai-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .ai-cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .ai-cta-content h2 {
    font-size: 2.5rem;
  }
}


/* ========== AI PAGE RESPONSIVE (GLOBAL) ========== */
@media (min-width: 768px) {
  .ai-hero {
    padding: 140px 0 100px;
  }

  .ai-hero h1 {
    font-size: 2.8rem;
  }

  .ai-hero .hero-text {
    font-size: 1.1rem;
  }

  .ai-tools-showcase {
    padding: 80px 0;
  }

  .ai-tools-title {
    font-size: 2.2rem;
  }

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

@media (min-width: 1024px) {
  .ai-hero {
    padding: 160px 0 120px;
  }

  .ai-hero h1 {
    font-size: 3.2rem;
  }

  .ai-hero .hero-text {
    font-size: 1.15rem;
  }

  .ai-tools-showcase {
    padding: 100px 0;
  }

  .ai-tools-title {
    font-size: 2.5rem;
  }

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


/* ========== AI AUDIENCE TARGETING SECTION ========== */
.ai-audience {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.ai-audience::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 193, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ai-audience-header {
  text-align: center;
  margin-bottom: 48px;
}

.ai-audience-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.ai-audience-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.ai-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ai-audience-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(43, 65, 86, 0.06);
}

.ai-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(43, 65, 86, 0.12);
}

.ai-audience-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-yellow), var(--sky-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-audience-card:hover .ai-audience-card-accent {
  opacity: 1;
}

.ai-audience-card--featured {
  border: 2px solid var(--bright-yellow);
  box-shadow: 0 8px 30px rgba(254, 193, 35, 0.12);
}

.ai-audience-card--featured .ai-audience-card-accent {
  opacity: 1;
  background: var(--bright-yellow);
}

.ai-audience-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bright-yellow);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--light-gray);
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.ai-audience-card:hover .ai-audience-icon {
  background: var(--charcoal);
  color: var(--bright-yellow);
}

.ai-audience-card--featured .ai-audience-icon {
  background: var(--charcoal);
  color: var(--bright-yellow);
}

.ai-audience-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.ai-audience-card > p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ai-audience-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.ai-audience-card ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.ai-audience-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-yellow);
}

.ai-audience-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.ai-audience-link:hover {
  color: var(--sky-blue);
  gap: 12px;
}

.ai-audience-link svg {
  transition: transform 0.3s ease;
}

.ai-audience-link:hover svg {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .ai-audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ai-audience-header h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .ai-audience-header h2 {
    font-size: 2.25rem;
  }

  .ai-audience-card {
    padding: 40px 32px;
  }
}
