/* ═══════════════════════════════════════════════════════
   SOLUTIONS INSTITUTE: Design System
   Aligned with evolve-solve-lead.base44.app
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* Brand Palette */
  --teal:        #5bc8c2;
  --teal-dark:   #1e656d;
  --teal-deep:   #1e656d;
  --teal-light:  #E8F8F7;
  --teal-mid:    #D1FAF4;
  --teal-strip:  #1e656d;

  /* Text */
  --text-dark:   #1A1F23;
  --text-gray:   #828483;
  --text-light:  #cacaca;

  /* Backgrounds */
  --bg-white:    #FFFFFF;
  --bg-cream:    #F5F1EB;
  --bg-alt:      #F3F5F7;
  --bg-teal-lt:  #F0FAF9;

  /* Accents */
  --star-gold:   #FBBF24;
  --border:      #E5E7EB;
  --border-teal: rgba(91,200,194,0.2);

  /* Footer dark */
  --footer-bg:   #1A1F23;

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-teal: 0 10px 30px rgba(91,200,194,0.18), 0 4px 8px rgba(91,200,194,0.1);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);

  --font-head: 'Cantora One', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --trans: cubic-bezier(0.16,1,0.3,1);
}

html {
  font-size: 16px;
  background: var(--bg-cream);
  color: var(--text-dark);
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--teal-light); color: var(--teal-dark); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
canvas { display: block; }

/* ─── Custom Cursor ──────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
#cursor-dot { width: 6px; height: 6px; background: var(--teal); }
#cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(37,157,145,0.4);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}
body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: var(--teal); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ─── Loader ─────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg-white);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader-logo {
  margin: 0 auto 28px;
  display: flex; justify-content: center;
  width: 44px; height: 44px;
}
.loader-bar {
  width: 180px; height: 2px;
  background: var(--border); border-radius: 2px;
  margin: 0 auto 16px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: var(--teal);
  transition: width 1.8s var(--trans);
}
.loader-text {
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1260px;
  margin: 0 auto; padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}
.btn-primary.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.btn-outline.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* ─── Section Shared ─────────────────────────────────────── */
section { position: relative; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Reveal ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ─── Language fade ──────────────────────────────────────── */
[data-i18n] { transition: opacity 0.12s; }
[data-i18n].lang-fade { opacity: 0; }

/* ─── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 0;
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark img,
.loader-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.lang-dropdown {
  position: relative;
  display: inline-flex;
}
.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 118px;
  padding: 8px 12px 8px 14px;
  background: linear-gradient(135deg, var(--teal-light) 0%, #fff 100%);
  border: 1.5px solid var(--border-teal);
  border-radius: var(--r-pill);
  color: var(--teal-dark);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(37,157,145,0.08);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lang-dropdown-trigger:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(37,157,145,0.14);
}
.lang-dropdown-trigger:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(37,157,145,0.18);
}
.lang-dropdown.is-open .lang-dropdown-trigger {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(37,157,145,0.18);
}
.lang-dropdown-chevron {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.2s var(--trans);
}
.lang-dropdown.is-open .lang-dropdown-chevron {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1100;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1.5px solid var(--border-teal);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), 0 8px 24px rgba(37,157,145,0.12);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s var(--trans), transform 0.2s var(--trans);
}
.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.lang-dropdown-menu[hidden] {
  display: block;
}
.lang-dropdown-option {
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown-option:hover,
.lang-dropdown-option:focus {
  background: var(--teal-light);
  color: var(--teal-dark);
  outline: none;
}
.lang-dropdown-option.is-selected {
  background: var(--teal-mid);
  color: var(--teal-dark);
  font-weight: 600;
}
.lang-dropdown--mobile .lang-dropdown-trigger {
  font-size: 14px;
  min-width: 148px;
  padding: 10px 14px 10px 16px;
}
.lang-dropdown--mobile .lang-dropdown-option {
  font-size: 14px;
  padding: 10px 14px;
}
.nav-cta { font-size: 13px; padding: 9px 20px; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--text-gray);
}
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 16px 0; }
.mobile-menu a { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text-dark); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-lang { display: flex; gap: 12px; align-items: center; justify-content: center; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .nav-cta { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────── */
.section-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #F0FAF9 0%, #FFFFFF 45%, #E8F8F7 100%);
  padding-top: 70px;
  display: flex; align-items: center;
  overflow: visible;
}

.hero-bg-decor {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.decor-icon {
  position: absolute;
  font-size: 18px;
  color: rgba(37,157,145,0.18);
  line-height: 1;
}
.decor-1 { top: 12%; left: 8%; }
.decor-2 { top: 22%; right: 12%; font-size: 14px; }
.decor-3 { top: 55%; left: 4%; font-size: 16px; }
.decor-4 { top: 68%; right: 6%; }
.decor-5 { bottom: 18%; left: 42%; font-size: 13px; }
.decor-6 { top: 38%; left: 48%; font-size: 12px; opacity: 0.5; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 64px;
  position: relative; z-index: 1;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; }
}

/* Hero text */
.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,157,145,0.06);
  border: 1px solid rgba(37,157,145,0.18);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--teal);
  margin-bottom: 28px;
}
.badge-heart { color: var(--teal); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-line1 { display: block; }
.hero-line2-wrap {
  display: block;
  position: relative;
  margin-top: 2px;
}
.hero-line2 {
  color: var(--teal);
  display: inline-block;
}
.hero-underline {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 10px;
  margin-top: -2px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 24px;
}

.hero-quote { margin-bottom: 28px; }
.hero-stars {
  color: var(--star-gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hero-quote-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}
.hero-quote-text em { font-style: italic; color: var(--text-dark); }
.hero-quote-author {
  display: inline;
  margin-left: 4px;
  font-style: normal;
  color: var(--text-gray);
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}
.hero-ctas .btn-primary {
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
}
.hero-ctas .btn-outline {
  padding: 14px 28px;
  font-size: 15px;
  border-color: var(--border);
  color: var(--text-dark);
}
.hero-ctas .btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #fff;
}
.hero-cta-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.svc-card-workbook {
  cursor: pointer;
}
.svc-card-workbook:hover {
  border-color: var(--border-teal);
}
.svc-card-workbook .svc-link {
  pointer-events: none;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 8px;
}
.h-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.h-stat span {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.3;
}

.hero-avatars {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.av1 { background-image: linear-gradient(135deg, #5bc8c2, #7dd9d4); }
.av2 { background-image: linear-gradient(135deg, #1e656d, #5bc8c2); }
.av3 { background-image: linear-gradient(135deg, #2BB5A8, #5ED4C8); }
.av4 { background-image: linear-gradient(135deg, #34C5B8, #7EE8DC); }
.av-more {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hero image */
.hero-image-col {
  position: relative;
  align-self: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 0 28px 0;
}

.hero-card {
  border-radius: 24px;
  overflow: hidden;
  background: #f5f1eb;
  box-shadow: 0 20px 50px rgba(91,200,194,0.14), 0 8px 24px rgba(0,0,0,0.08);
  line-height: 0;
}

/* Top row: sits above the image card */
.hero-card-top {
  position: relative;
  min-height: 48px;
  padding: 0 4px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: none;
}
.hero-top-accent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-top-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(37,157,145,0.25);
  background: rgba(37,157,145,0.06);
  position: relative;
}
.hero-top-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-top-line {
  width: 48px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(37,157,145,0.35), transparent);
}

.hero-location-badge {
  position: relative;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-teal);
  flex-shrink: 0;
}
.hero-location-badge strong {
  display: block;
  font-size: 11px; font-weight: 700;
  line-height: 1.2;
}
.hero-location-badge span {
  font-size: 9px;
  opacity: 0.9;
  display: block;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 480;
  overflow: hidden;
  background: #f5f1eb;
  line-height: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

/* Quote chip: sits left of card, does NOT cover image */
.hero-float-card {
  position: absolute;
  left: 0;
  bottom: 52px;
  transform: translateX(calc(-100% - 14px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
  width: 220px;
  z-index: 5;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateX(calc(-100% - 14px)) translateY(0); }
  50%      { transform: translateX(calc(-100% - 14px)) translateY(-5px); }
}
.fc-icon {
  width: 30px; height: 30px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon svg { width: 16px; height: 16px; }
.hero-float-card strong {
  display: block;
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}
.fc-author {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  display: block;
}

/* Play button: outside card, bottom-right */
.hero-play-btn {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: var(--shadow-teal);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: transform 0.2s;
}
.hero-play-btn:hover { transform: scale(1.05); }
.hero-play-btn span {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  display: block;
}

.hero-dots {
  position: absolute;
  right: -18px;
  bottom: 56px;
  width: 90px; height: 90px;
  background-image: radial-gradient(circle, rgba(37,157,145,0.22) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-visual { max-width: 520px; padding-left: 0; }
  .hero-float-card {
    position: relative;
    left: auto; bottom: auto;
    transform: none;
    width: 100%;
    margin-bottom: 14px;
    animation: none;
  }
  @keyframes floatCard {
    0%,100% { transform: none; }
    50%      { transform: none; }
  }
}

@media (max-width: 1024px) {
  .hero-visual { max-width: 100%; }
  .hero-avatars { margin-left: 0; width: 100%; margin-top: 8px; }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a,
  .hero-ctas button { justify-content: center; width: 100%; }
  .hero-stats { gap: 20px; }
  .hero-dots { display: none; }
}

/* ─── STATS STRIP ────────────────────────────────────────── */
.section-stats {
  background: var(--teal);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px; } }
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(32px,4vw,48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ─── VALUES STRIP ───────────────────────────────────────── */
.section-values {
  background: var(--teal-deep);
  padding: 28px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.value-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.value-item:last-child { border-right: none; }
.value-icon {
  width: 32px; height: 32px;
  min-width: 32px; min-height: 32px;
  max-width: 32px; max-height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  overflow: hidden;
}
.value-icon svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px;
  max-height: 15px;
  flex-shrink: 0;
}
.value-item strong { display: block; font-size: 12px; font-weight: 600; line-height: 1.2; }
.value-item span   { font-size: 10px; color: rgba(255,255,255,0.65); line-height: 1.3; }
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .value-item:nth-child(3) { border-right: none; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ─── SERVICES ───────────────────────────────────────────── */
.section-services {
  position: relative;
  padding: 100px 0;
  background: var(--bg-white);
  overflow: hidden;
}
.services-bg-decor {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.svc-decor {
  position: absolute;
  font-size: 16px;
  color: rgba(37,157,145,0.12);
  line-height: 1;
}
.svc-decor-1 { top: 8%; left: 6%; }
.svc-decor-2 { top: 12%; right: 8%; font-size: 13px; }
.svc-decor-3 { top: 42%; left: 3%; font-size: 14px; }
.svc-decor-4 { top: 55%; right: 5%; }
.svc-decor-5 { bottom: 18%; left: 8%; font-size: 13px; }
.svc-decor-6 { bottom: 12%; right: 10%; font-size: 12px; }

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

.services-header { margin-bottom: 48px; }
.services-icon-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.services-icon-box {
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  max-width: 44px; max-height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  overflow: hidden;
}
.services-icon-box svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
}
.services-icon-box.icon-individual {
  background: rgba(37,157,145,0.08);
  color: var(--teal);
  border-color: rgba(37,157,145,0.15);
}
.services-icon-box.icon-family {
  background: rgba(34,197,94,0.08);
  color: #16A34A;
  border-color: rgba(34,197,94,0.15);
}
.services-icon-box.icon-nature {
  background: rgba(132,204,22,0.1);
  color: #65A30D;
  border-color: rgba(132,204,22,0.18);
}
.services-icon-box.icon-online {
  background: rgba(59,130,246,0.08);
  color: #2563EB;
  border-color: rgba(59,130,246,0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.35s var(--trans), box-shadow 0.35s;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,157,145,0.12);
}

.svc-img-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-alt);
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--trans);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.04); }

.svc-img-icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}
.svc-img-icon svg { width: 16px; height: 16px; }
.svc-img-icon.icon-individual { background: var(--teal); }
.svc-img-icon.icon-family    { background: #16A34A; }
.svc-img-icon.icon-nature    { background: #65A30D; }
.svc-img-icon.icon-online    { background: #2563EB; }

.svc-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.svc-tag-teal {
  background: rgba(232,248,247,0.95);
  color: var(--teal-dark);
  border: 1px solid rgba(37,157,145,0.15);
}
.svc-tag-green {
  background: rgba(220,252,231,0.95);
  color: #15803D;
  border: 1px solid rgba(34,197,94,0.2);
}
.svc-tag-lime {
  background: rgba(236,252,203,0.95);
  color: #4D7C0F;
  border: 1px solid rgba(132,204,22,0.25);
}
.svc-tag-blue {
  background: rgba(219,234,254,0.95);
  color: #1D4ED8;
  border: 1px solid rgba(59,130,246,0.2);
}

.svc-body { padding: 18px 18px 22px; }
.svc-body h3 {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.svc-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.svc-link {
  font-size: 13px; font-weight: 600;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 4px;
}
.svc-arrow { transition: transform 0.2s; }
.svc-link:hover .svc-arrow { transform: translateX(4px); }

/* ─── ABOUT ──────────────────────────────────────────────── */
.section-about {
  position: relative;
  padding: 100px 0;
  background: var(--bg-cream);
  overflow: hidden;
}
.about-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}
.about-deco--flower {
  top: 48px;
  left: 24px;
  font-size: clamp(80px, 12vw, 140px);
  color: var(--teal);
  line-height: 1;
}
.about-deco--heart {
  top: 120px;
  right: 5%;
  width: 120px;
  height: 100px;
  border: 2px dashed rgba(91, 200, 194, 0.5);
  border-radius: 50% 50% 45% 45%;
  transform: rotate(12deg);
}
.about-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.about-header .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}
.about-header-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.about-header-sub {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0 0 14px;
}
.about-header-sub:last-of-type {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 22px;
  border: 1px solid rgba(91, 200, 194, 0.14);
  box-shadow: 0 10px 32px rgba(30, 101, 109, 0.07);
  transition: transform 0.35s var(--trans), box-shadow 0.35s var(--trans), border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 101, 109, 0.12);
  border-color: rgba(91, 200, 194, 0.3);
}

.team-card-photo-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.team-card-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(30, 101, 109, 0.15);
}
.team-card-photo--esther { object-position: center 12%; }
.team-card-photo--patricia { object-position: 60% center; }
.team-card-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(30, 101, 109, 0.2);
}
.team-card-icon svg { width: 15px; height: 15px; }
.team-card-icon--heart { background: #e57373; }
.team-card-icon--award { background: var(--teal-dark); }

.team-card-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.team-card-role {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.team-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  width: 100%;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(91, 200, 194, 0.15);
}
.team-card-meta-icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex-shrink: 0;
}
.team-card-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.team-card-meta-value {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  width: 100%;
  line-height: 1.4;
}
.team-card-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.team-card-more {
  margin-top: auto;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.team-card-more:hover {
  color: var(--teal);
  transform: translateX(3px);
}

.about-values-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--bg-teal-lt) 0%, rgba(91, 200, 194, 0.12) 100%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(91, 200, 194, 0.2);
}
@media (max-width: 768px) {
  .about-values-bar {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }
}
.about-values-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.about-values-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30, 101, 109, 0.08);
}
.about-values-icon svg { width: 18px; height: 18px; }
.about-values-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.about-values-item span {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ─── PROGRAM SPOTLIGHT ──────────────────────────────────── */
.section-program-spotlight {
  padding: 0 0 100px;
  background: var(--bg-white);
  margin-top: -24px;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .spotlight-grid { grid-template-columns: 1fr; } }
.spotlight-card {
  padding: 40px 36px;
  border-radius: var(--r-xl);
  background: var(--bg-cream);
  border: 1px solid rgba(91, 200, 194, 0.15);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--trans), border-color 0.3s;
}
.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-teal);
}
.spotlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.spotlight-icon svg { width: 24px; height: 24px; }
.spotlight-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 14px;
}
.spotlight-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0 0 20px;
}
.spotlight-desc p {
  margin: 0 0 14px;
}
.spotlight-desc p:last-child {
  margin-bottom: 0;
}
.spotlight-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spotlight-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.spotlight-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.spotlight-cta { display: inline-flex; }
.spotlight-pricing {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(91, 200, 194, 0.1);
  border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
}
.spotlight-price {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 4px;
}
.spotlight-price-note {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* ─── JOURNEY ────────────────────────────────────────────── */
.section-journey {
  padding: 100px 0;
  background: var(--bg-white);
}
.journey-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .journey-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .journey-cards { grid-template-columns: 1fr; } }
.journey-card {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--trans), box-shadow 0.4s;
}
.journey-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-teal); }
.jc-img-wrap { position: absolute; inset: 0; }
.jc-img-wrap img,
.jc-img-wrap .jc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--trans);
}
.jc-step-1 .jc-img { object-position: center 15%; }
.jc-step-2 .jc-img { object-position: center 20%; }
.jc-step-3 .jc-img { object-position: center 30%; }
.jc-step-4 .jc-img { object-position: center 45%; }
.jc-step-5 .jc-img { object-position: center 35%; }
.journey-card:hover .jc-img-wrap img,
.journey-card:hover .jc-img-wrap .jc-img { transform: scale(1.06); }
.jc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,101,109,0.88) 0%, rgba(30,101,109,0.35) 50%, rgba(30,101,109,0.08) 100%);
}
.jc-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  color: #fff;
  z-index: 1;
}
.jc-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  margin-bottom: 8px;
  box-shadow: 0 0 16px rgba(91,200,194,0.5);
}
.jc-content h3 {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  margin-bottom: 4px;
}
.jc-content p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  display: none; /* show on hover */
  transition: opacity 0.3s;
}
.journey-card:hover .jc-content p { display: block; }
@media (max-width: 600px) {
  .journey-card:hover .jc-content p { display: block; }
  .journey-card { aspect-ratio: 4 / 3; }
  .jc-step-1 .jc-img { object-position: center 30%; }
  .jc-step-2 .jc-img { object-position: center 40%; }
  .jc-step-3 .jc-img { object-position: center 45%; }
  .jc-step-4 .jc-img { object-position: center 35%; }
  .jc-step-5 .jc-img { object-position: center 30%; }
}

/* ─── CASE STUDIES ───────────────────────────────────────── */
.section-cases {
  padding: 100px 0;
  background: var(--bg-cream);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px)  { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--trans), border-color 0.3s;
}
.case-card:hover { transform: translateY(-4px); border-color: var(--border-teal); }
.case-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.case-sector {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal);
}
.case-metric-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 13px; font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.case-card h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px; line-height: 1.2;
  letter-spacing: -0.01em;
}
.case-row { margin-bottom: 14px; }
.case-label {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 4px;
}
.case-row p { font-size: 14px; color: var(--text-gray); line-height: 1.55; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.section-testimonials {
  padding: 88px 0 100px;
  background: #f3f4f6;
}
.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.testimonials-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.testimonials-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.testimonials-avatar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}
.testimonials-avatar-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid #f3f4f6;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.testimonials-avatar-chip:first-child { margin-left: 0; }
.testimonials-avatar-chip:nth-child(1) { background: #1e656d; z-index: 5; }
.testimonials-avatar-chip:nth-child(2) { background: #5bc8c2; z-index: 4; }
.testimonials-avatar-chip:nth-child(3) { background: #3d9e98; z-index: 3; }
.testimonials-avatar-chip:nth-child(4) { background: #2a7a75; z-index: 2; }
.testimonials-avatar-chip:nth-child(5) { background: #174f55; z-index: 1; }

.testimonials-carousel-outer {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(52px, 6vw, 64px);
}
.testimonials-carousel {
  position: relative;
}
.test-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.test-nav-prev { left: 0; }
.test-nav-next { right: 0; }
.test-nav:hover {
  background: #fff;
  border-color: #d1d5db;
  color: var(--teal-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
}
.test-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.test-nav:disabled:hover {
  color: #9ca3af;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.testimonials-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-track {
  display: flex;
  gap: 16px;
  padding: 8px 4px 12px;
  width: max-content;
}
.test-card {
  flex: 0 0 300px;
  width: 300px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 18px;
  border: 1px solid #eceff3;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s var(--trans), transform 0.3s var(--trans);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.test-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.test-stars-sm {
  font-size: 15px;
  color: #f5b301;
  letter-spacing: 1px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.test-headline {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 10px;
}
.test-body {
  flex: 1;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.test-read-more {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  transition: color 0.2s;
}
.test-read-more:hover { color: var(--teal); }
.testimonial-modal-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.testimonial-modal-body {
  font-style: italic;
}
.testimonial-modal-body strong {
  font-style: normal;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}
.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.test-author span {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.35;
}

@media (max-width: 600px) {
  .section-testimonials { padding: 72px 0 80px; }
  .testimonials-carousel-outer { padding: 0 48px; }
  .testimonials-scroll { scroll-padding-inline: 56px; }
  .test-nav { width: 40px; height: 40px; border-radius: 10px; }
  .test-card {
    flex: 0 0 calc(100vw - 112px);
    width: calc(100vw - 112px);
    min-height: 200px;
    padding: 20px 18px 16px;
    scroll-snap-align: center;
  }
  .testimonials-track {
    gap: 12px;
    padding-inline: 8px;
  }
}

/* ─── INSIGHTS ───────────────────────────────────────────── */
.section-insights {
  padding: 100px 0;
  background: var(--bg-cream);
}
.insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } }
.insight-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, border-color 0.2s;
  cursor: pointer;
}
.insight-card:hover { transform: translateY(-4px); border-color: var(--border-teal); }
.insight-featured { padding: 40px 36px; }
.insight-cat {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.insight-card h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
  letter-spacing: -0.01em; line-height: 1.25;
}
.insight-featured h3 { font-size: 26px; }
.insight-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; margin-bottom: 20px; }

/* ─── Insight article modal ──────────────────────────────── */
.insight-modal {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.insight-modal[hidden] { display: none; }
body.insight-modal-open { overflow: hidden; }
.insight-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 30, 28, 0.65);
  backdrop-filter: blur(4px);
}
.insight-modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(720px, 100%);
  max-height: min(85vh, 900px);
  overflow: hidden;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.insight-modal-scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 40px 36px;
}
.insight-modal-close {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  width: 36px; height: 36px;
  border: none; background: var(--bg-cream);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-gray);
  transition: background 0.2s, color 0.2s;
}
.insight-modal-close:hover { background: var(--teal-light); color: var(--teal-dark); }
.insight-modal-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 48px 24px 0;
  line-height: 1.25;
}
.insight-modal-body {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
}
.insight-modal-body p { margin: 0 0 16px; }
.insight-modal-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 12px;
}
.insight-modal-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--teal);
  background: var(--bg-cream);
  font-style: italic;
  color: var(--text-dark);
}
.insight-modal-body strong { color: var(--text-dark); }

/* ─── CTA ────────────────────────────────────────────────── */
.section-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  min-height: 500px;
  display: flex; align-items: center;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg-img {
  filter: sepia(0.06) saturate(1.05) hue-rotate(18deg) brightness(0.96);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,40,35,0.72) 0%, rgba(15,55,48,0.62) 100%);
}
#ctaCanvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  pointer-events: none; z-index: 1;
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 20px;
}
.cta-quote {
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto 40px; line-height: 1.65;
}
.cta-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-bottom: 40px;
}
.cta-contact-info {
  display: flex; flex-wrap: wrap; gap: 28px;
  justify-content: center;
}
.cta-info-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.cta-info-item svg { opacity: 0.65; }
.cta-info-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.cta-info-item a:hover { color: rgba(255,255,255,0.9); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: rgba(255,255,255,0.85); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 20px; font-style: italic; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span {
  font-size: 14px; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-copy {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.6;
}
.footer-kookxtra,
.footer-powered-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-kookxtra:hover,
.footer-powered-link:hover { color: #5ec4b8; text-decoration: underline; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: calc(100% - 168px);
}
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── Ripple ─────────────────────────────────────────────── */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #ctaCanvas { display: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-float-card { animation: none !important; }
}

/* ─── Mobile responsive tweaks ───────────────────────────── */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a,
  .hero-ctas button { text-align: center; width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .float-card-1 { bottom: -10px; left: -8px; }
  .float-card-2 { top: -10px; right: -8px; }
  .hero-dots { display: none; }
  .section-services, .section-program-spotlight, .section-about, .section-journey,
  .section-cases, .section-testimonials, .section-insights { padding: 72px 0; }
  .workbook-modal-dialog {
    padding: 28px 22px 24px;
    margin: 12px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }
  .workbook-modal-title { font-size: 22px; }
  .workbook-download-btn { width: 100%; justify-content: center; }
  .footer-legal { max-width: 100%; }
}

/* ─── Workbook download modal ────────────────────────────── */
.workbook-modal {
  position: fixed;
  inset: 0;
  z-index: 1000002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.workbook-modal[hidden] { display: none; }
body.workbook-modal-open { overflow: hidden; }

.workbook-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 35, 0.55);
  backdrop-filter: blur(4px);
}

.workbook-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(91, 200, 194, 0.2);
  animation: workbookModalIn 0.35s var(--trans);
}
@keyframes workbookModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.workbook-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.workbook-modal-close:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.workbook-modal-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.workbook-modal-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
  line-height: 1.25;
  padding: 0 8px;
}

.workbook-modal-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 24px;
  padding: 0 4px;
}

.workbook-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  padding: 14px 24px;
  margin-bottom: 12px;
  font-size: 15px;
}

.workbook-modal-dismiss {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.workbook-modal-dismiss:hover { color: var(--teal-dark); }
