/* ============================================================
   COREEXCEL — VERSION 3 : Emerald & Black
   #050F05 · #0A1F0A · #0D2B0D · #1A4A1A · #2D7A2D
   #3DAA3D · #52C752 · #E8F5E8 · #FFFFFF
   Gradients: deep forest → emerald → lime-green
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #050F05;
  --deep:       #0A1F0A;
  --forest:     #0D2B0D;
  --dark-green: #1A4A1A;
  --mid-green:  #2D7A2D;
  --emerald:    #3DAA3D;
  --bright:     #52C752;
  --pale:       #E8F5E8;
  --off-white:  #F0F7F0;
  --white:      #FFFFFF;
  --text:       #1A2E1A;
  --text-light: #4A6B4A;
  --border:     rgba(61,170,61,0.2);
  --glass:      rgba(61,170,61,0.06);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --t:          0.4s;

  /* Gradient presets */
  --grad-hero:    linear-gradient(135deg, #050F05 0%, #0A1F0A 40%, #0D2B0D 70%, #1A4A1A 100%);
  --grad-green:   linear-gradient(135deg, #1A4A1A 0%, #2D7A2D 50%, #3DAA3D 100%);
  --grad-emerald: linear-gradient(135deg, #2D7A2D 0%, #3DAA3D 50%, #52C752 100%);
  --grad-subtle:  linear-gradient(135deg, rgba(61,170,61,0.08) 0%, rgba(82,199,82,0.04) 100%);
  --grad-glow:    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(61,170,61,0.15) 0%, transparent 70%);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--black);
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.85; color: var(--text-light); font-size: 0.97rem; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--grad-emerald);
  flex-shrink: 0;
}

.section-title { margin-bottom: 1.4rem; }
.section-title span { color: var(--emerald); }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 110px 0; }
.section-sm { padding: 75px 0; }

/* ── GREEN RULE ── */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0 2rem;
}
.rule::before {
  content: '';
  width: 48px; height: 2px;
  background: var(--grad-emerald);
  flex-shrink: 0;
}
.rule::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(61,170,61,0.3), transparent);
}
.rule.center { justify-content: center; }
.rule.center::after { display: none; }
.rule.center::before { width: 32px; }
.rule-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  z-index: 0;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.55s var(--ease);
  z-index: 1;
}
.btn:hover::after { left: 140%; }
.btn svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); position: relative; z-index: 2; }
.btn:hover svg { transform: translateX(5px); }
.btn span { position: relative; z-index: 2; }

.btn-green {
  background: var(--grad-emerald);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(61,170,61,0.35);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(61,170,61,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(61,170,61,0.12);
  border-color: var(--emerald);
  color: var(--bright);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
}
.btn-outline-green:hover {
  background: var(--grad-emerald);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,170,61,0.3);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(61,170,61,0.2);
}
.btn-dark:hover {
  background: var(--grad-green);
  color: var(--white);
  border-color: var(--emerald);
  transform: translateY(-2px);
}

/* legacy compat */
.btn-primary { background: var(--grad-emerald); color: var(--white); box-shadow: 0 4px 24px rgba(61,170,61,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(61,170,61,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(61,170,61,0.12); border-color: var(--emerald); color: var(--bright); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.4rem 0;
  transition: all 0.5s var(--ease);
}
.navbar::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(5,15,5,0);
  backdrop-filter: blur(0px);
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled::before {
  background: rgba(5,15,5,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(61,170,61,0.25);
}
.navbar.scrolled { padding: 0.9rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.nav-logo span { color: var(--emerald); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; transition: color var(--t) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--grad-emerald);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; position: relative; z-index: 1; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--t) var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--grad-hero);
}
.hero-parallax {
  position: absolute; inset: -20%;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&q=85') center/cover no-repeat;
  opacity: 0.07; will-change: transform;
}
/* Green geometric grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(61,170,61,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,170,61,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(10,31,10,0.97) 0%, transparent 70%),
    linear-gradient(180deg, rgba(5,15,5,0.5) 0%, rgba(5,15,5,0.2) 50%, rgba(5,15,5,0.85) 100%);
}
/* Green glow orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,170,61,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,122,45,0.12) 0%, transparent 70%);
  bottom: -50px; left: 25%;
  animation: orbFloat 14s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(82,199,82,0.1) 0%, transparent 70%);
  top: 30%; left: 60%;
  animation: orbFloat 10s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(25px,-35px) scale(1.12); }
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-content h1 { color: var(--white); margin-bottom: 1.8rem; line-height: 1.08; }
.hero-content h1 em { font-style: italic; color: var(--bright); display: block; }
.hero-content p { color: rgba(232,245,232,0.75); font-size: 1.05rem; max-width: 600px; margin-bottom: 0.9rem; line-height: 1.9; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 3rem; }
.hero-stats {
  display: flex; gap: 3.5rem; margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(61,170,61,0.25);
}
.stat-item { text-align: left; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--bright); line-height: 1; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; color: rgba(232,245,232,0.5); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 0.4rem; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(232,245,232,0.3);
  font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--emerald), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── PAGE BANNER ── */
.page-banner {
  height: 480px; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.page-banner-parallax {
  position: absolute; inset: -30%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,15,5,0.95) 0%, rgba(10,31,10,0.88) 50%, rgba(13,43,13,0.78) 100%);
}
/* Green accent stripe at bottom */
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--mid-green), var(--emerald), var(--bright), var(--emerald), var(--mid-green), transparent);
}
.page-banner .container { position: relative; z-index: 2; padding-bottom: 3.5rem; width: 100%; }
.page-banner h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 40px rgba(0,0,0,0.5); }
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,245,232,0.45); }
.breadcrumb a { color: var(--emerald); transition: opacity var(--t); }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb-sep { color: rgba(61,170,61,0.4); }

/* ── FADE ON SCROLL ── */
[data-anim] { opacity: 0; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-anim="fade-up"]    { transform: translateY(50px); }
[data-anim="fade-down"]  { transform: translateY(-30px); }
[data-anim="fade-left"]  { transform: translateX(-50px); }
[data-anim="fade-right"] { transform: translateX(50px); }
[data-anim="zoom-in"]    { transform: scale(0.88); }
[data-anim="zoom-out"]   { transform: scale(1.08); }
[data-anim="flip-up"]    { transform: perspective(600px) rotateX(20deg) translateY(30px); }
[data-anim].visible { opacity: 1; transform: none; }

/* ── 3D TRAINING CUBE ── */
.training-3d-scene { perspective: 800px; width: 180px; height: 180px; margin: 0 auto 2rem; cursor: pointer; }
.training-3d-cube { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: cubeRotate 12s linear infinite; }
.training-3d-scene:hover .training-3d-cube { animation-play-state: paused; }
@keyframes cubeRotate { 0%{transform:rotateX(15deg) rotateY(0deg)} 100%{transform:rotateX(15deg) rotateY(360deg)} }
.cube-face { position: absolute; width: 100px; height: 100px; top: 50%; left: 50%; margin: -50px 0 0 -50px; background: linear-gradient(135deg, rgba(61,170,61,0.15), rgba(61,170,61,0.05)); border: 1px solid rgba(61,170,61,0.4); display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.cube-face svg { width: 40px; height: 40px; color: var(--emerald); }
.cube-face.front  { transform: translateZ(50px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(50px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(50px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(50px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(50px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(50px); }
.tilt-card { transform-style: preserve-3d; transition: transform 0.1s linear; will-change: transform; }

/* ── PILLARS ── */
.pillars-section { background: var(--off-white); border-bottom: 1px solid rgba(61,170,61,0.12); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.pillar { padding: 3rem 2.5rem; border-right: 1px solid rgba(61,170,61,0.12); position: relative; transition: background var(--t) var(--ease); }
.pillar:last-child { border-right: none; }
.pillar::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--grad-emerald); transition: width 0.5s var(--ease); }
.pillar:hover::before { width: 100%; }
.pillar:hover { background: rgba(61,170,61,0.04); }
.pillar-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(61,170,61,0.15), rgba(61,170,61,0.05)); border: 1px solid rgba(61,170,61,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; color: var(--emerald); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.pillar:hover .pillar-icon { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(61,170,61,0.2); }
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--black); }
.pillar p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--deep); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(61,170,61,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(61,170,61,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.testimonials-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.testimonials-header h2 { color: var(--white); }
.testimonials-header h2 span { color: var(--bright); }
.testimonial-track-wrap { overflow: hidden; position: relative; z-index: 1; }
.testimonial-track { display: flex; transition: transform 0.7s var(--ease); }
.testimonial-card { min-width: 100%; padding: 0 4rem; text-align: center; }
.testimonial-card .quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; line-height: 0.8; color: var(--emerald); opacity: 0.2; display: block; margin-bottom: -1rem; }
.testimonial-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; font-style: italic; line-height: 1.7; color: rgba(232,245,232,0.88); max-width: 820px; margin: 0 auto 2rem; }
.testimonial-card .author { font-family: 'Montserrat', sans-serif; color: var(--bright); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; position: relative; z-index: 1; }
.t-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(61,170,61,0.35); background: transparent; color: var(--emerald); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--t) var(--ease); }
.t-btn:hover { background: var(--grad-emerald); color: var(--white); border-color: var(--emerald); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dot { width: 6px; height: 6px; border-radius: 50%; border: none; background: rgba(232,245,232,0.2); cursor: pointer; transition: all var(--t) var(--ease); }
.t-dot.active { background: var(--emerald); transform: scale(1.5); }

/* ── INFO SPLIT ── */
.info-split { background: var(--white); position: relative; }
.info-split::before { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: var(--off-white); }
.info-split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; position: relative; z-index: 1; }
.info-col p { color: var(--text-light); }
.info-col p + p { margin-top: 1rem; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--black); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(61,170,61,0.1) 0%, transparent 70%),
    linear-gradient(135deg, var(--forest) 0%, var(--black) 100%);
}
.cta-banner-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(61,170,61,0.03) 40px, rgba(61,170,61,0.03) 41px);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-banner h2 span { color: var(--bright); }
.cta-banner p { color: rgba(232,245,232,0.65); max-width: 560px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ── CLIENTS ── */
.clients-section { background: var(--off-white); border-top: 1px solid rgba(61,170,61,0.1); }
.clients-header { text-align: center; margin-bottom: 3.5rem; }
.clients-header p { max-width: 640px; margin: 0 auto; color: var(--text-light); }
.clients-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; align-items: center; }
.client-logo-box { padding: 0.9rem 1.8rem; background: var(--white); border: 1px solid rgba(61,170,61,0.15); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.65rem; letter-spacing: 0.14em; color: var(--text-light); text-transform: uppercase; transition: all var(--t) var(--ease); }
.client-logo-box:hover { border-color: var(--emerald); color: var(--black); box-shadow: 0 4px 20px rgba(61,170,61,0.15); transform: translateY(-2px); }

/* ── ABOUT ── */
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; filter: grayscale(10%) contrast(1.05); }
.about-img-frame { position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid rgba(61,170,61,0.35); pointer-events: none; z-index: -1; }
.about-img-badge { position: absolute; bottom: -2rem; right: -2rem; background: var(--grad-emerald); color: var(--white); padding: 1.8rem 2.2rem; text-align: center; font-weight: 700; }
.about-img-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; line-height: 1; font-weight: 700; }
.about-img-badge .lbl { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.3rem; }

/* ── TEAM ── */
.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.team-card { background: var(--white); border: 1px solid rgba(61,170,61,0.1); overflow: hidden; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(61,170,61,0.1); border-color: rgba(61,170,61,0.4); }
.team-card-img { height: 200px; background: linear-gradient(135deg, var(--forest) 0%, var(--dark-green) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(61,170,61,0.12), transparent); }
.team-card-img .initials { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--bright); opacity: 0.6; position: relative; z-index: 1; }
.team-card-body { padding: 1.6rem; }
.team-card-body h3 { font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--black); }
.team-card-body .role { font-family: 'Montserrat', sans-serif; color: var(--emerald); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.9rem; padding-bottom: 0.9rem; border-bottom: 1px solid rgba(61,170,61,0.15); }
.team-card-body p { font-size: 0.86rem; color: var(--text-light); line-height: 1.75; }

/* ── SERVICES ── */
.expertise-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.expertise-img { width: 100%; height: 500px; object-fit: cover; filter: grayscale(15%) contrast(1.05); }
.feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }
.feature-card { background: var(--white); border: 1px solid rgba(61,170,61,0.12); padding: 2rem 1.6rem; position: relative; overflow: hidden; transition: all var(--t) var(--ease); }
.feature-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--grad-emerald); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { box-shadow: 0 12px 40px rgba(61,170,61,0.08); transform: translateY(-5px); border-color: rgba(61,170,61,0.3); }
.feature-card .icon { width: 46px; height: 46px; background: linear-gradient(135deg, rgba(61,170,61,0.12), rgba(61,170,61,0.04)); border: 1px solid rgba(61,170,61,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--emerald); transition: transform var(--t) var(--ease); }
.feature-card:hover .icon { transform: scale(1.1) rotate(-5deg); }
.feature-card .icon svg { width: 22px; height: 22px; }
.feature-card h4 { font-size: 0.98rem; margin-bottom: 0.5rem; color: var(--black); }
.feature-card p  { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }

/* ── WORKSHOPS / CONFERENCES ── */
.wc-intro { background: var(--off-white); padding: 90px 0; }
.wc-intro-text { max-width: 820px; margin: 0 auto; text-align: center; }
.wc-intro-text p { font-size: 1.1rem; color: var(--text-light); }
.wc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.wc-card { background: var(--white); border: 1px solid rgba(61,170,61,0.12); padding: 3rem; transition: all var(--t) var(--ease); position: relative; overflow: hidden; }
.wc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--grad-emerald); transition: height 0.5s var(--ease); }
.wc-card:hover::before { height: 100%; }
.wc-card:hover { box-shadow: 0 16px 50px rgba(61,170,61,0.08); border-color: rgba(61,170,61,0.3); transform: translateY(-4px); }
.wc-card .card-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(61,170,61,0.1); line-height: 1; margin-bottom: 0.5rem; }
.wc-card h3 { margin-bottom: 1rem; color: var(--black); }
.wc-card p  { color: var(--text-light); line-height: 1.85; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: 1.2rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-detail .icon { width: 46px; height: 46px; background: linear-gradient(135deg, rgba(61,170,61,0.12), rgba(61,170,61,0.04)); border: 1px solid rgba(61,170,61,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--emerald); }
.contact-detail .icon svg { width: 20px; height: 20px; }
.contact-detail .text strong { color: var(--black); font-size: 0.9rem; display: block; margin-bottom: 0.3rem; }
.contact-detail .text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.intl-offices { margin-top: 2.5rem; }
.intl-offices h4 { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); margin-bottom: 1.2rem; }
.intl-office-item { background: var(--off-white); padding: 1.2rem 1.5rem; margin-bottom: 0.8rem; border-left: 2px solid var(--emerald); transition: background var(--t) var(--ease); }
.intl-office-item:hover { background: rgba(61,170,61,0.05); }
.intl-office-item strong { color: var(--black); font-size: 0.9rem; }
.intl-office-item p { font-size: 0.84rem; color: var(--text-light); margin-top: 0.3rem; }
.contact-form-wrap { background: var(--white); padding: 3rem; border: 1px solid rgba(61,170,61,0.15); box-shadow: 0 8px 60px rgba(61,170,61,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; }
.form-group input, .form-group textarea { width: 100%; padding: 0.9rem 1.1rem; border: 1px solid rgba(61,170,61,0.2); background: var(--off-white); font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: all var(--t) var(--ease); border-radius: 0; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--emerald); background: var(--white); box-shadow: 0 0 0 3px rgba(61,170,61,0.08); }
.form-group textarea { resize: vertical; min-height: 140px; }
.map-wrap { margin-top: 4rem; height: 400px; border: 1px solid rgba(61,170,61,0.15); overflow: hidden; filter: grayscale(30%) contrast(1.05); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(232,245,232,0.5); padding: 80px 0 32px; border-top: 1px solid rgba(61,170,61,0.15); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 1.2rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.85; max-width: 280px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.4rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(61,170,61,0.2); }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(232,245,232,0.5); transition: color var(--t) var(--ease); display: flex; align-items: center; gap: 0.4rem; }
.footer-col ul li a::before { content: ''; width: 0; height: 1px; background: var(--emerald); transition: width var(--t) var(--ease); flex-shrink: 0; }
.footer-col ul li a:hover { color: var(--bright); }
.footer-col ul li a:hover::before { width: 12px; }
.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.88rem; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--emerald); }
.footer-bottom { border-top: 1px solid rgba(61,170,61,0.1); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,245,232,0.3); }
.footer-bottom a { color: var(--emerald); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr}.team-grid{grid-template-columns:1fr 1fr}.expertise-section .container{grid-template-columns:1fr}.expertise-img{height:360px}.pillars-grid{grid-template-columns:1fr}.pillar{border-right:none;border-bottom:1px solid rgba(61,170,61,0.12)}.pillar:last-child{border-bottom:none}}
@media(max-width:768px){
  .section{padding:70px 0}.page-banner{height:320px}
  .nav-links{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(5,15,5,0.97);backdrop-filter:blur(20px);flex-direction:column;justify-content:center;align-items:center;gap:2.5rem;z-index:999}
  .nav-links.open{display:flex}.nav-links a{font-size:1rem}
  .hamburger{display:flex;z-index:1001}
  .hero-stats{gap:2rem;flex-wrap:wrap}
  .info-split .container{grid-template-columns:1fr!important;gap:0!important}
  .info-split::before{display:none}
  .info-col[style]{padding:2.5rem 0!important}
  .about-intro .container{grid-template-columns:1fr}
  .about-img-badge{right:0;bottom:-1rem}
  .team-grid{grid-template-columns:1fr}
  .feature-cards{grid-template-columns:1fr}
  .wc-cards{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2.5rem}
  .footer-bottom{flex-direction:column;gap:.8rem;text-align:center}
  .testimonial-card{padding:0 1.5rem}.testimonial-card p{font-size:1.15rem}
  .hero-content h1{font-size:2.6rem}
  .responsive-grid{grid-template-columns:1fr!important;gap:3rem!important}
  .wc-intro-text{text-align:left}.wc-intro-text .rule{justify-content:flex-start}
}
