*, *::before, *::after { padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'poppins', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
:root {
  --green: #00b86b;
  --green-dark: #008c52;
  --green-light: #e6faf0;
  --green-deeper: #0a5c3a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 4px solid var(--gray-200);
  border-top-color: var(--green);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
nav.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 24px rgba(0,0,0,.06);
  padding: 10px 48px;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: #4b5563; font-weight: 500; font-size: .875rem;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--green);
  border-radius: 2px; transition: width .3s;
}
.nav-links a:hover { color: #1a1a2e; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--green), #00a35e); color: #fff !important; padding: 12px 28px;
  border-radius: 8px; font-weight: 700; font-size: .9rem;
  transition: all .3s; box-shadow: 0 4px 14px rgba(0,184,107,.2);
  border: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { color: #fff !important; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,184,107,.35); background: linear-gradient(135deg, #00a35e, var(--green-dark)); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2.5px; background: #4b5563; border-radius: 3px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 90px 48px 40px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0fdf4 100%);
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-pattern .dot {
  position: absolute; width: 3px; height: 3px;
  background: rgba(0,184,107,.08); border-radius: 50%;
}
.hero-pattern .dot:nth-child(1) { top: 15%; left: 10%; }
.hero-pattern .dot:nth-child(2) { top: 35%; left: 45%; width: 5px; height: 5px; background: rgba(0,184,107,.12); }
.hero-pattern .dot:nth-child(3) { top: 55%; left: 75%; }
.hero-pattern .dot:nth-child(4) { top: 75%; left: 25%; width: 4px; height: 4px; background: rgba(0,184,107,.1); }
.hero-pattern .dot:nth-child(5) { top: 25%; left: 85%; }
.hero-pattern .dot:nth-child(6) { top: 65%; left: 15%; width: 4px; height: 4px; }
.hero-pattern .dot:nth-child(7) { top: 45%; left: 55%; }
.hero-pattern .dot:nth-child(8) { top: 85%; left: 65%; width: 5px; height: 5px; background: rgba(0,184,107,.1); }

.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center 35%/cover no-repeat;
  opacity: .04; mix-blend-mode: soft-light;
}
.hero-accent {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,107,.06) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none; z-index: 0;
  animation: heroFloat 12s ease-in-out infinite alternate;
}
.hero-accent-2 {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,107,.04) 0%, transparent 65%);
  bottom: -80px; left: -80px; pointer-events: none; z-index: 0;
  animation: heroFloat 15s ease-in-out infinite alternate-reverse;
}
@keyframes heroFloat {
  0% { opacity: .5; transform: scale(1) translate(0, 0); }
  100% { opacity: 1; transform: scale(1.08) translate(25px, -20px); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: stretch; width: 100%; max-width: 1280px;
  margin: 0 auto; position: relative; z-index: 2;
  padding-top: 20px;
}
.hero-grid > div:first-child {
  display: flex; flex-direction: column;
}
.hero-grid > div:first-child .hero-btns {
  margin-top: auto; justify-content: flex-start;
}
.hero-grid > .hero-card {
  align-self: start;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  color: var(--green); background: var(--green-light);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 12px;
  text-transform: uppercase; border: 1px solid rgba(0,184,107,.15);
}
.hero-tagline i { font-size: .6rem; }
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 8px; color: #1a1a2e;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #00b86b, #008c52, #00b86b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentShift 4s ease-in-out infinite;
}
@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero p {
  font-size: 1rem; color: #4b5563; max-width: 520px;
  margin-bottom: 16px; line-height: 1.65;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: nowrap; margin-bottom: 0; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff; padding: 10px 22px;
  border-radius: 50px; font-weight: 600; font-size: .82rem;
  text-decoration: none; transition: all .3s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,184,107,.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid #d1d5db; color: #374151;
  padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: .82rem;
  text-decoration: none; transition: all .3s; background: #fff;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

.hero-card {
  background: #fff; border-radius: 24px; padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
  position: relative;
}
.hero-card .facepile {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.hero-card .facepile .avatars { display: flex; }
.hero-card .facepile .avatars img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px; object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,.08);
}
.hero-card .facepile .avatars img:last-child { margin-right: 0; }
.hero-card .facepile p {
  font-size: .75rem; color: #6b7280; margin: 0;
}
.hero-card .facepile p strong { color: #1a1a2e; font-weight: 700; }
.hero-card .badge {
  display: inline-block; background: var(--green-light);
  color: var(--green-dark); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 14px;
}
.hero-card h3 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: #6b7280; margin-bottom: 20px; font-weight: 600;
}
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-item {
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 14px; padding: 16px 18px;
  transition: all .35s; position: relative; overflow: hidden;
}
.dash-item:hover {
  background: #f0fdf4; transform: scale(1.03);
  border-color: rgba(0,184,107,.3);
}
.dash-item .val {
  font-size: 1.3rem; font-weight: 800; color: #1a1a2e;
  position: relative; z-index: 1;
}
.dash-item .lbl {
  font-size: .72rem; color: #6b7280; margin-top: 3px;
  position: relative; z-index: 1;
}
.dash-trend-up { color: var(--green); font-size: .65rem; font-weight: 700; }
.dash-cta {
  grid-column: span 2; background: var(--green-light); border-color: rgba(0,184,107,.2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative; z-index: 1;
}
.dash-cta span { font-weight: 700; color: var(--green); }
.dash-cta small { font-size: .72rem; color: #6b7280; }

/* ── Stats Strip (Redesigned) ── */
.stats-strip {
  padding: 0;
  background: var(--white);
  position: relative;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 180px;
}
.stats-hero-panel {
  background: var(--white);
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-hero-panel::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,107,.04) 0%, transparent 70%);
  top: -100px; right: -60px;
  pointer-events: none;
}
.stats-hero-panel::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,107,.03) 0%, transparent 70%);
  bottom: -60px; left: -40px;
  pointer-events: none;
}
.stats-hero-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
}
.stats-hero-number small {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0;
}
.stats-hero-label {
  font-size: 1.3rem;
  color: #4b5563;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.stats-hero-label strong {
  color: #1a1a2e;
  font-weight: 700;
}
.stats-cards-panel {
  padding: 32px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(0,184,107,.1);
  border-radius: 14px;
  padding: 18px 22px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), #00e881);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s;
}
.stat-card:hover::before {
  transform: scaleY(1);
}
.stat-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,184,107,.1);
  border-color: var(--green);
}
.stat-card .sc-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .4s, background .4s;
}
.stat-card:hover .sc-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--green-dark);
}
.stat-card .sc-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}
.stat-card .sc-value .counter {
  display: inline-block;
}
.stat-card .sc-label {
  font-size: .82rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.3;
}

/* ── Client Strip (Redesigned) ── */
.client-strip {
  padding: 44px 48px 48px;
  background: linear-gradient(180deg, #f4fdf8 0%, var(--white) 40%);
  overflow: hidden;
  border-top: 1px solid rgba(0,184,107,.06);
}
.client-logos {
  overflow: hidden;
  padding: 24px 0;
  max-width: 960px;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent 0%, black 160px, black calc(100% - 160px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 160px, black calc(100% - 160px), transparent 100%);
}
.client-logos-track {
  display: flex;
  gap: 96px;
  align-items: center;
  width: max-content;
  animation: logoScroll 36s linear infinite;
}
.client-logos-track:hover {
  animation-play-state: paused;
}
.client-logos-track img {
  height: 88px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
  flex-shrink: 0;
}
.client-logos-track img:hover {
  transform: scale(1.12);
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
section { padding: 70px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 800; letter-spacing: .5px;
  color: var(--green-dark); background: var(--green-light);
  padding: 8px 22px; border-radius: 8px; text-transform: uppercase; margin-bottom: 4px;
  position: relative;
}
.section-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -.5px;
  margin: 10px 0 6px; color: var(--gray-900);
}
.section-sub {
  font-size: 1.2rem; color: var(--gray-600); margin-bottom: 32px;
}
.container { max-width: 1280px; margin: 0 auto; }

/* ── Process ── */
.process-badge {
  text-align: center; margin-bottom: 48px;
}
.process-badge p {
  display: inline-block; background: var(--green); color: #fff;
  padding: 8px 24px; border-radius: 50px; font-weight: 600;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 20px; padding: 36px 24px 32px; text-align: center;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .5s;
  position: relative; overflow: hidden;
}
.process-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,184,107,.03) 0%, transparent 40%);
  opacity: 0; transition: opacity .5s;
}
.process-card:hover::before { opacity: 1; }
.process-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0,0,0,.07);
  border-color: rgba(0,184,107,.2);
}
.process-card .step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; margin: 0 auto 16px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  position: relative; z-index: 1;
}
.process-card:hover .step-num {
  background: var(--green); color: #fff;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(0,184,107,.25);
}
.process-card h4 { font-size: 1.2rem; font-weight: 700; margin: 0 0 10px; position: relative; z-index: 1; }
.process-card p {
  font-size: .88rem; color: var(--gray-600); line-height: 1.7;
  position: relative; z-index: 1;
}
.process-card .step-line {
  width: 40px; height: 2px; background: var(--green);
  margin: 0 auto 14px; border-radius: 2px;
  transition: width .4s;
}
.process-card:hover .step-line { width: 60px; }

/* ── Capabilities ── */
#capabilities { background: var(--gray-50); }
.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cap-card {
  background: var(--white); border-radius: 20px; padding: 36px 32px;
  border: 1px solid var(--gray-100); transition: transform .4s, box-shadow .4s;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.05); }
.cap-card h3 {
  font-size: 1.35rem; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cap-card h3 i { color: var(--green); font-size: 1.3rem; }
.cap-card ul { list-style: none; columns: 2; column-gap: 16px; }
.cap-card ul li {
  font-size: .9rem; color: var(--gray-600); padding: 5px 0;
  break-inside: avoid; display: flex; align-items: flex-start; gap: 10px;
  transition: transform .3s;
}
.cap-card ul li:hover { transform: translateX(4px); }
.cap-card ul li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--green); border-radius: 50%; margin-top: 7px;
  flex-shrink: 0; transition: transform .3s, box-shadow .3s;
}
.cap-card ul li:hover::before {
  transform: scale(1.5); box-shadow: 0 0 0 4px rgba(0,184,107,.15);
}

/* ── Certs ── */
.certs-section {
  padding: 80px 48px;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 50%, #ecfdf5 100%);
  position: relative; overflow: hidden;
}
.certs-section::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,184,107,.06) 0%, transparent 70%);
  top: -200px; left: -150px; pointer-events: none;
}
.certs-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 36px; position: relative; z-index: 1;
}
.certs-row img {
  height: 100px; width: auto; object-fit: contain;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 18px 32px; border-radius: 18px;
  transition: all .45s cubic-bezier(.34,1.56,.64,1);
  filter: grayscale(.4) opacity(.8);
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  flex: 0 1 calc((100% - 64px) / 5);
  min-width: 0;
}
@media (max-width: 1024px) {
  .certs-row img { flex: 0 1 calc((100% - 32px) / 3); }
}
@media (max-width: 600px) {
  .certs-row img { flex: 0 1 calc((100% - 16px) / 2); height: 70px; padding: 12px 22px; }
}
.comp-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
.comp-label {
  font-size: .65rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-600); margin-bottom: 8px; font-weight: 700;
}
.comp-cost {
  font-size: 1.6rem; font-weight: 900; color: var(--gray-900);
  margin-bottom: 14px; margin-top: 4px;
}
.comp-cost small { font-size: .8rem; font-weight: 500; color: var(--gray-600); }

.cert-pill {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 12px 28px; border-radius: 50px; font-size: .9rem; font-weight: 600;
  color: var(--gray-700); transition: all .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.cert-pill:hover {
  border-color: var(--green); color: var(--green-dark);
  background: var(--green-light);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,184,107,.15);
}
.certs-row img:hover {
  filter: grayscale(0) opacity(1);
  border-color: var(--green);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 12px 32px rgba(0,184,107,.18);
}

/* ── Why A2 ── */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
  .why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 48px; }
  .why-stats[style*="repeat(4"] { grid-template-columns: repeat(4, 1fr); }
.why-stat {
  background: var(--green-light); border-radius: 16px; padding: 24px;
  text-align: center; transition: transform .3s;
}
.why-stat:hover { transform: scale(1.03); }
.why-stat .num { font-size: 2rem; font-weight: 900; color: var(--green-dark); }
  .why-stat .lbl { font-size: .8rem; color: var(--gray-600); margin-top: 4px; }

.comparison {
  margin-top: 64px;
  position: relative;
}
.comparison h3 {
  text-align: center; font-size: 1.8rem; font-weight: 900; margin-bottom: 12px;
  background: linear-gradient(135deg, #1a1a2e, #00b86b, #1a1a2e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: compGrad 4s ease-in-out infinite;
}
@keyframes compGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.comparison > p {
  text-align: center;
  color: var(--gray-600);
  font-size: .95rem;
  margin: 0 auto 36px;
}
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comp-card {
  border-radius: 20px; padding: 32px;
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.comp-card ul { flex: 1; }
.comp-card:hover { transform: translateY(-8px) scale(1.02); }
.comp-card.traditional {
  background: linear-gradient(145deg, #fef2f2, #fff);
  border: 1px solid #fecaca;
  box-shadow: 0 4px 16px rgba(239,68,68,.04);
}
.comp-card.traditional:hover {
  border-color: #f87171;
  box-shadow: 0 12px 40px rgba(239,68,68,.12);
}
.comp-card.a2 {
  background: linear-gradient(145deg, #f0fdf4, #fff);
  position: relative;
  box-shadow: 0 4px 16px rgba(0,184,107,.04);
}
.comp-card.a2::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00b86b, #00e881, #008c52, #00b86b);
  background-size: 300% 300%;
  z-index: -2;
  animation: neonBorder 4s ease-in-out infinite;
  opacity: .5;
}
.comp-card.a2::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: 22px;
  background: linear-gradient(145deg, #f0fdf4, #fff);
  z-index: -1;
  margin: 1px;
}
@keyframes neonBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes caseGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.comp-card.a2:hover {
  transform: translateY(-8px) scale(1.02);
}
.comp-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.comp-card ul { list-style: none; }
.comp-card ul li {
  font-size: .88rem; padding: 6px 0; display: flex; align-items: center; gap: 10px;
  color: var(--gray-600); transition: transform .3s;
}
.comp-card ul li:hover { transform: translateX(4px); }
.comp-card ul li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%; flex-shrink: 0; transition: all .3s;
}
.comp-card.traditional ul li::before { background: #ef4444; }
.comp-card.a2 ul li::before { background: var(--green); }
.comp-card ul li:hover::before { transform: scale(1.6); box-shadow: 0 0 0 4px rgba(0,184,107,.15); }
.comp-card.a2 .comp-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #00e881);
  color: #fff; font-size: .6rem; font-weight: 800;
  padding: 3px 14px; border-radius: 50px;
  letter-spacing: .5px;
  margin-left: 8px;
  vertical-align: middle;
  animation: badgePulse 2s ease-in-out infinite;
}

.output-efficiency {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.oe-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
}
.oe-value {
  font-size: 1.1rem;
  font-weight: 900;
  margin-left: auto;
  background: var(--gray-900);
  color: #fff;
  padding: 2px 12px;
  border-radius: 6px;
  line-height: 1.4;
}
.comp-card.a2 .oe-value {
  background: var(--green);
  color: #fff;
}
.oe-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.oe-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--gray-600);
  transition: width .6s ease;
}
.comp-card.traditional .oe-bar span { background: #ef4444; }
.comp-card.a2 .oe-bar span { background: var(--green); }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,184,107,.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,184,107,0); }
}
.comp-card.traditional:nth-child(1) {
  animation: compSlideLeft .6s cubic-bezier(.34,1.56,.64,1) both;
}
.comp-card.traditional:nth-child(2) {
  animation: compSlideUp .6s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .15s;
}
@keyframes compSlideLeft {
  0% { opacity: 0; transform: translateX(-40px) scale(.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes compSlideUp {
  0% { opacity: 0; transform: translateY(40px) scale(.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Segments ── */
#segments {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
  position: relative;
}
.segs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seg-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.seg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), #00e881, var(--green));
  background-size: 200% 100%;
  animation: segGrad 3s ease-in-out infinite;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s;
}
.seg-card:hover::before { transform: scaleX(1); }
.seg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,184,107,.1);
  border-color: rgba(0,184,107,.2);
}
@keyframes segGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.seg-card-top {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.seg-card-top .seg-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-light), #d4f5e0);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.seg-card:hover .seg-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(0,184,107,.25);
}
.seg-card-top h3 {
  font-size: 1.2rem; font-weight: 800; line-height: 1.3;
  margin-top: 4px;
}
.seg-card .seg-desc {
  font-size: .88rem; color: var(--gray-600);
  padding: 16px 28px 0;
  line-height: 1.7;
}
.seg-card h5 {
  font-size: .7rem; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; font-weight: 700;
  padding: 4px 14px; margin: 20px 28px 0; display: inline-block;
  background: linear-gradient(135deg, var(--green), #00a35e);
  border-radius: 6px;
}
.seg-card ul {
  list-style: none; columns: 2; column-gap: 16px;
  padding: 8px 28px 28px;
}
.seg-card ul li {
  font-size: .85rem; color: var(--gray-600); padding: 5px 0;
  break-inside: avoid; display: flex; align-items: flex-start; gap: 10px;
  transition: transform .3s;
}
.seg-card ul li:hover { transform: translateX(4px); }
.seg-card ul li::before {
  content: ''; width: 5px; height: 5px; min-width: 5px;
  background: var(--green); border-radius: 50%; margin-top: 7px;
  flex-shrink: 0; transition: all .3s;
}
.seg-card ul li:hover::before {
  transform: scale(1.6); box-shadow: 0 0 0 4px rgba(0,184,107,.15);
}

/* ── Case Studies ── */
#cases { background: var(--white); }

section#cases {
    padding-bottom: 0;
}
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-100);
  background: var(--white); transition: all .4s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.06); }
.case-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.case-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.3));
}
.case-body { padding: 28px; }
.case-body h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.case-body .case-desc { font-size: .9rem; color: var(--gray-600); margin-bottom: 12px; line-height: 1.7; }
.case-body .case-channel { font-size: .75rem; color: var(--green-dark); font-weight: 600; margin-bottom: 12px; }
.case-results { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.case-results span { font-size: .85rem; font-weight: 700; color: var(--green-dark); }
.case-results span small { font-weight: 400; color: var(--gray-600); }

/* ── Testimonials ── */
#testimonials { background: var(--green-deeper); color: #fff; }
#testimonials .section-label { background: rgba(255,255,255,.15); color: #fff; }
#testimonials .section-title { color: #fff; }
#testimonials .section-sub { color: rgba(255,255,255,.7); }

.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.test-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 28px; transition: all .4s;
}
.test-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.test-card .quote {
  font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.85);
  margin-bottom: 16px; font-style: italic;
}
.test-card .quote::before { content: '\201c'; font-size: 2rem; color: var(--green); line-height: 0; vertical-align: middle; margin-right: 4px; }
.test-card .author { font-weight: 700; font-size: .85rem; }
.test-card .role { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ── Form / Audit ── */
#audit {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 50%, #ecfdf5 100%);
}
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.audit-list { list-style: none; margin-top: 24px; }
.audit-list li {
  display: flex; align-items: center; gap: 12px; font-size: .9rem;
  color: var(--gray-600); padding: 8px 0;
}
.audit-list li i { color: var(--green); font-size: 1rem; width: 20px; text-align: center; }

.audit-form {
  background: var(--white); border-radius: 24px; padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
  border: 1px solid rgba(0,184,107,.12);
}
.audit-form .step-label {
  font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-600); margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  font-size: .82rem; font-weight: 600; color: var(--gray-800);
  display: block; margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-size: .9rem; font-family: inherit;
  transition: border-color .3s, box-shadow .3s;
  background: var(--white); color: var(--gray-900);
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,184,107,.1);
}
.form-group input.error { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.1); }
.form-group .error-msg { font-size: .75rem; color: #ef4444; margin-top: 4px; display: none; }
.form-group.error .error-msg { display: block; }
.btn-submit {
  width: 100%; padding: 16px; background: var(--green); color: #fff;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,184,107,.35); }
.btn-submit:active { transform: translateY(0); }
.form-skip {
  display: block; text-align: center; margin-top: 16px;
  font-size: .85rem; color: var(--gray-600);
}
.form-skip a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.form-skip a:hover { text-decoration: underline; }

/* ── Footer ── */
footer {
  background: #000000;
  color: #fff; padding: 72px 48px 0; position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  top: -250px; right: -150px; pointer-events: none;
}
footer::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,184,107,.08) 0%, transparent 70%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1.5fr; gap: 48px;
  position: relative; z-index: 1;
}
.footer-brand img { height: 44px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; max-width: 360px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .3s; font-size: .95rem;
}
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-col h5 {
  font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--green); margin-bottom: 20px; position: relative;
}
.footer-col h5::after {
  content: ''; position: absolute; left: 0; bottom: -8px;
  width: 28px; height: 2px; background: var(--green);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem;
  transition: all .3s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: #fff; transform: translateX(4px); }
.footer-contact li {
  color: rgba(255,255,255,.55); font-size: .88rem;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.footer-contact li i { color: var(--green); margin-top: 3px; width: 16px; text-align: center; }
.footer-newsletter { margin-top: 20px; }
.footer-newsletter p { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 10px 14px; border: none; border-radius: 8px 0 0 8px;
  font-size: .82rem; font-family: inherit; background: rgba(255,255,255,.1);
  color: #fff; outline: none; transition: background .3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { background: rgba(255,255,255,.18); }
.newsletter-form button {
  background: var(--green); color: #fff; border: none; padding: 0 16px;
  border-radius: 0 8px 8px 0; cursor: pointer; font-size: .9rem;
  transition: background .3s;
}
.newsletter-form button:hover { background: var(--green-dark); }

.footer-bottom {
  margin-top: 48px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,.4); font-size: .8rem;
  position: relative; z-index: 1;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s;
}
.footer-bottom-links a:hover { color: var(--green); }

.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s; box-shadow: 0 4px 16px rgba(0,184,107,.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,184,107,.4); }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(.85); transition: opacity .6s ease, transform .6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

.hero h1 .reveal-line {
  display: inline-block; vertical-align: top;
  animation: revealUp .9s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes revealUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero h1 .reveal-line:nth-child(2) { animation-delay: .15s; }

.float-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatSlow 8s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.04); }
}

.pulse-glow {
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,184,107,.25); }
  50% { box-shadow: 0 4px 32px rgba(0,184,107,.45); }
}

.count-glow { display: inline-block; }
.counter-animate {
  display: inline-block;
  animation: countPop .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes countPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.dash-item { animation: dashSlide .5s ease both; }
.dash-item:nth-child(1) { animation-delay: .1s; }
.dash-item:nth-child(2) { animation-delay: .2s; }
.dash-item:nth-child(3) { animation-delay: .3s; }
.dash-item:nth-child(4) { animation-delay: .4s; }
.dash-item:nth-child(5) { animation-delay: .5s; }
.dash-item:nth-child(6) { animation-delay: .6s; }
@keyframes dashSlide {
  0% { opacity: 0; transform: translateY(16px) scale(.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hover-lift {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
}
.hover-lift:hover { transform: translateY(-8px) scale(1.01); }

.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s;
}
.btn-primary:hover::after { transform: translateX(100%); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .caps-grid { grid-template-columns: 1fr; }
  .segs-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  #cases [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .test-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { margin-top: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .audit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  #audit { overflow-x: hidden; }
  [data-aos=fade-left] { transform: unset !important; }
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 8px 20px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 24px; z-index: 999; min-height: 359px; padding: 20px; }
  .nav-links a { color: #4b5563; font-size: 1.1rem; }
  .nav-links a:hover { color: #1a1a2e; }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 10; }
  section { padding: 50px 20px; }
  .hero { padding: 70px 20px 30px; }
  .hero-card { padding: 24px; }
  .hero-card h3 { font-size: .72rem; }
  .hero-tagline { padding: 7px 20px; font-size: .65rem; }
  .hero-btns { flex-direction: column; }
  .dash-cta { flex-direction: column; text-align: center; }
  .dash-item { padding: 12px 14px; }
  .dash-item .val { font-size: 1.1rem; }
  .client-strip { padding: 24px 20px; }
  .client-logos-track { gap: 48px; }
  .client-logos-track img { height: 50px; max-width: 150px; }
  .form-row { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr !important; }
  .process-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .comp-grid-3 { grid-template-columns: 1fr !important; }
  .comp-card h4 { flex-wrap: wrap; }
  #cases .container > div[style*="border-radius:24px"][style*="padding:"] { padding: 20px !important; }
  .cap-card ul { columns: 1; }
  .seg-card ul { columns: 1; }
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .certs-section { padding: 60px 20px; }
  .stats-strip-inner { grid-template-columns: 1fr; }
  .stats-hero-panel { padding: 32px 28px; text-align: center; }
  .stats-hero-number { font-size: 3.5rem; }
  .stats-hero-number small { font-size: 1.6rem; }
  .stats-hero-label { max-width: 100%; font-size: .9rem; }
  .stats-cards-panel { padding: 24px 20px; }
  .stat-card { padding: 14px 16px; }
  footer { padding: 48px 20px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: .95rem; }
  .process-card .step { font-size: 2rem; }
}

/* ── Case Study Carousel ── */
.case-carousel {
  position: relative;
  margin-bottom: 40px;
}
.case-carousel-inner {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.case-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.case-card-border { display: none; }
.case-card-bg {
  position: absolute; inset: 0; border-radius: 24px;
  background: var(--white); z-index: -1; margin: 1px;
}
.case-card-content {
  display: flex; flex-direction: column; gap: 0;
}
.case-badge {
  display: inline-block;
  background: linear-gradient(135deg,var(--green),#00e881);
  color: #fff; font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 16px; border-radius: 50px; margin-bottom: 14px;
  align-self: flex-start;
}
.case-card-content h3 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; line-height: 1.2;
}
.case-summary {
  color: var(--gray-600); font-size: .9rem; line-height: 1.7; margin-bottom: 20px;
}
.case-summary strong { color: var(--green-dark); }
.case-detail {
  color: var(--gray-600); font-size: .85rem; line-height: 1.7; margin-bottom: 16px;
}
.case-detail strong { color: var(--gray-800); }
.case-metrics {
  display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 20px;
}
.case-metric {
  text-align: center; background: var(--green-light);
  border-radius: 12px; padding: 12px 20px; min-width: 100px; flex: 1;
}
.metric-val {
  font-size: 1.4rem; font-weight: 900; color: var(--green-dark);
}
.metric-lbl {
  font-size: .75rem; color: var(--gray-600); font-weight: 500;
}
.case-channels {
  color: var(--gray-600); font-size: .85rem; line-height: 1.7; margin-bottom: 16px;
}
.case-channels strong { color: var(--gray-800); }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  z-index: 2; box-shadow: 0 4px 16px rgba(0,0,0,.08);
  color: var(--gray-700); font-size: 1rem;
}
.carousel-btn:hover {
  background: var(--green); border-color: var(--green); color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0,184,107,.25);
}
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.carousel-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 24px;
}
.carousel-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #d1d5db; border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  cursor: pointer;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  padding: 0;
}
.carousel-dot.active { background: var(--green); border-color: var(--green); transform: scale(1.35); }
.carousel-dot:hover { background: #9ca3af; }

@media (max-width: 768px) {
  .case-card { padding: 28px 20px; }
  .case-metrics { gap: 12px; }
  .case-metric { padding: 10px 12px; min-width: 80px; }
  .metric-val { font-size: 1.1rem; }
  .case-card-content h3 { font-size: 1.2rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: .85rem; }
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
}

/* ── Testimonial Carousel ── */
.testi-carousel { position: relative; margin-top: 32px; }
.testi-carousel-inner {
  display: flex; overflow: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  border-radius: 20px;
}
.testi-card {
  flex: 0 0 100%; scroll-snap-align: start;
  background: rgba(255,255,255,.06); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: 40px 36px; text-align: center; box-sizing: border-box;
}
.testi-quote {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,.85); font-style: italic; margin-bottom: 20px;
}
.testi-author {
  font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 4px;
}
.testi-org {
  font-size: .82rem; color: rgba(255,255,255,.5);
}

.testi-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  z-index: 2; color: #fff; font-size: .9rem;
}
.testi-btn:hover {
  background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.1);
}
.testi-prev { left: -20px; }
.testi-next { right: -20px; }
.testi-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 20px;
}
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  transition: all .4s cubic-bezier(.34,1.56,.64,1); padding: 0;
}
.testi-dot.active { background: #fff; transform: scale(1.35); }
.testi-dot:hover { background: rgba(255,255,255,.5); }

@media (max-width: 768px) {
  .testi-card { padding: 28px 20px; }
  .testi-quote { font-size: 1rem; }
  .testi-btn { width: 32px; height: 32px; font-size: .8rem; }
  .testi-prev { left: -6px; }
  .testi-next { right: -6px; }
}
