/* ═══════════════════════════════════════════
   FONCETECH — PREMIUM STYLESHEET v2.0
   White + Green Theme | foncetech.com
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* — Greens — */
  --g900:         #052e16;
  --g800:         #14532d;
  --g700:         #15803d;
  --g600:         #16a34a;
  --g500:         #22c55e;
  --g400:         #4ade80;
  --g200:         #bbf7d0;
  --g100:         #dcfce7;
  --g50:          #f0fdf4;
  --g25:          #f7fef9;
  /* — Gold accent — */
  --gold:         #d97706;
  --gold-l:       #fbbf24;
  --gold-bg:      #fef3c7;
  /* — Text — */
  --ink:          #0a0f0d;
  --ink2:         #1a2218;
  --body:         #374151;
  --muted:        #6b7280;
  --light:        #9ca3af;
  --xlight:       #d1d5db;
  /* — Surfaces — */
  --white:        #ffffff;
  --off:          #f9fafb;
  --pale:         #f3f4f6;
  /* — Borders — */
  --border:       #e5e7eb;
  --border-g:     rgba(22,163,74,0.18);
  --border-g2:    rgba(22,163,74,0.35);
  /* — Dark (footer) — */
  --dark:         #0b1a0e;
  --dark2:        #0f2113;
  /* — Shadows — */
  --sh-sm:        0 1px 4px rgba(0,0,0,0.07);
  --sh:           0 4px 24px rgba(0,0,0,0.08);
  --sh-lg:        0 20px 60px rgba(0,0,0,0.12);
  --sh-g:         0 8px 32px rgba(22,163,74,0.18);
  --sh-g-lg:      0 20px 60px rgba(22,163,74,0.22);
  /* — Motion — */
  --ease:         cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out:     cubic-bezier(0.0,0.0,0.2,1);
  --ease-spring:  cubic-bezier(0.34,1.56,0.64,1);
  --fast:         0.18s;
  --mid:          0.32s;
  --slow:         0.6s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /*cursor: none;*/
}

/* ─── CUSTOM CURSOR ─── */
.c-dot {
  width: 10px; height: 10px;
  background: var(--g600);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s, opacity .2s;
  mix-blend-mode: multiply;
}
.c-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--g600);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: 0.55;
  transition: all .1s ease;
}
.c-dot.hover { width: 5px; height: 5px; background: var(--g700); }
.c-ring.hover { width: 56px; height: 56px; border-color: var(--g400); opacity: 0.3; }
.c-dot.click { transform: translate(-50%,-50%) scale(0.6); }
@media (hover:none) { .c-dot, .c-ring { display: none; } }
@media (pointer:coarse) { body { cursor: auto; } }

/* ─── GLOBAL BACKGROUND ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 95% 0%, rgba(22,163,74,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 5% 100%, rgba(22,163,74,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
* { position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.fraunces { font-family: 'Fraunces', serif; }
p { line-height: 1.78; }

.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--g600);
  flex-shrink: 0;
}
.label.gold { color: var(--gold); }
.label.gold::before { background: var(--gold); }
.label.white { color: var(--g400); }
.label.white::before { background: var(--g400); }

.container { width: 90%; max-width: 1280px; margin: 0 auto; }
a { text-decoration: none; color: inherit; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all var(--mid) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--g600);
  color: #fff;
  box-shadow: 0 4px 18px rgba(22,163,74,0.28);
}
.btn-primary:hover {
  background: var(--g700);
  transform: translateY(-2px);
  box-shadow: var(--sh-g-lg);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--g600);
  color: var(--g700);
  background: var(--g50);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--g600);
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.88rem;
  gap: 6px;
}
.btn-ghost:hover { color: var(--g700); gap: 10px; }
.btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--fast);
}
.btn-primary:hover svg,
.btn-ghost:hover svg { transform: translateX(3px); }
/* Shine sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left .5s var(--ease);
}
.btn-primary:hover::after { left: 130%; }

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: height .3s var(--ease), box-shadow .3s;
}
.navbar.scrolled {
  height: 62px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.nav-inner {
  width: 90%; max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.04em;
}
.logo-dot {
  display: block;
  width: 9px; height: 9px;
  background: var(--g600);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(22,163,74,0.7);
  animation: dotPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 8px rgba(22,163,74,0.6); }
  50% { box-shadow: 0 0 22px rgba(22,163,74,1), 0 0 40px rgba(22,163,74,0.4); }
}
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--fast);
  display: block; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 16px; right: 16px;
  height: 2px; background: var(--g600);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--g700); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta {
  background: var(--g600) !important;
  color: #fff !important;
  font-weight: 600;
  margin-left: 12px;
  box-shadow: 0 3px 12px rgba(22,163,74,0.25);
  border-radius: 10px;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--g700) !important;
  transform: translateY(-1px);
  box-shadow: var(--sh-g);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%; z-index: 999;
  flex-direction: column; gap: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--body); padding: 12px 16px;
  border-radius: 8px; font-size: 0.95rem; font-weight: 500;
  transition: all var(--fast);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--g50); color: var(--g700);
}

/* ─── MAIN ─── */
main { padding-top: 76px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 5% 90px;
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, var(--g50) 100%);
}
#heroCanvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.hero-shapes {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.shape {
  position: absolute; border-radius: 50%;
  animation: floatShape ease-in-out infinite;
}
.shape-1 {
  width: 680px; height: 680px;
  top: -15%; right: -10%;
  background: radial-gradient(circle, rgba(22,163,74,0.07) 0%, transparent 65%);
  animation-duration: 22s;
}
.shape-2 {
  width: 440px; height: 440px;
  bottom: -5%; left: 42%;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 65%);
  animation-duration: 28s; animation-delay: -10s;
}
.shape-3 {
  width: 300px; height: 300px;
  top: 35%; left: 65%;
  background: radial-gradient(circle, rgba(217,119,6,0.05) 0%, transparent 65%);
  animation-duration: 20s; animation-delay: -14s;
}
@keyframes floatShape {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.03); }
  66% { transform: translate(-15px,-35px) scale(0.97); }
}
.hero .container { z-index: 2; }
.hero-content { max-width: 840px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px 7px 10px;
  background: var(--g100);
  border: 1px solid var(--border-g);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--g800);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .1s forwards;
}
.badge-dot {
  display: block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--g600);
  animation: dotPulse 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 900; color: var(--ink);
  margin-bottom: 1.6rem;
  letter-spacing: -0.04em;
  opacity: 0; animation: fadeUp .7s var(--ease) .25s forwards;
}
.hero h1 .highlight {
  color: var(--g600); display: inline-block; position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--g400), var(--g500));
  border-radius: 3px; opacity: 0.35;
}
.hero h1 .serif {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 700;
  color: var(--g700);
}
.hero-desc {
  font-size: 1.08rem; color: var(--muted);
  max-width: 560px; font-weight: 400; line-height: 1.88;
  margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp .7s var(--ease) .4s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s var(--ease) .55s forwards;
  margin-bottom: 4.5rem;
}
.hero-stats {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: 2.8rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s var(--ease) .7s forwards;
}
.stat {
  padding-right: 52px; margin-right: 52px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem; font-weight: 900;
  color: var(--ink); line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.05em;
}
.stat-n em { font-style: normal; color: var(--g600); }
.stat-t {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
}

/* ─── COUNTER STRIP ─── */
.counter-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-g);
  border-radius: 22px; overflow: hidden;
  background: var(--white); box-shadow: var(--sh);
  margin: 0 0 0 0;
}
.counter-card {
  padding: 42px 36px; border-right: 1px solid var(--border);
  text-align: center; transition: background var(--mid);
  cursor: default;
}
.counter-card:last-child { border-right: none; }
.counter-card:hover { background: var(--g50); }
.counter-val {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--g600); line-height: 1;
  margin-bottom: 10px; letter-spacing: -0.03em;
}
.counter-label {
  font-size: 0.76rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}

/* ─── SECTIONS ─── */
.section { padding: 108px 5%; }
.section-sm { padding: 64px 5%; }
.section-alt { background: var(--g50); }
.section-header { max-width: 600px; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.035em;
}
.section-header p { color: var(--muted); font-size: 0.97rem; line-height: 1.82; }
.section-header.center { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .label { justify-content: center; }
.section-header.center .label::before { display: none; }

/* ─── DARK STRIP (alt bg) ─── */
.dark-strip {
  background: var(--g50);
  border-top: 1px solid var(--border-g);
  border-bottom: 1px solid var(--border-g);
  padding: 90px 5%;
}

/* ─── TWO-COL ─── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.two-col-txt p { color: var(--muted); font-size: 0.96rem; margin-top: 1rem; line-height: 1.85; }
.two-col-txt h2 { letter-spacing: -0.035em; }

/* ─── PILLAR STACK ─── */
.pillar-stack { display: flex; flex-direction: column; gap: 10px; }
.pillar {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
  transition: all var(--mid) var(--ease);
  box-shadow: var(--sh-sm);
}
.pillar:hover {
  border-color: var(--border-g2); background: var(--g25);
  transform: translateX(6px); box-shadow: var(--sh-g);
}
.pillar-n {
  font-size: 0.67rem; font-weight: 800; color: var(--g700);
  background: var(--g100); border-radius: 6px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0;
}
.pillar-t { font-size: 0.88rem; color: var(--body); font-weight: 500; line-height: 1.5; }

/* ─── SERVICE TILE GRID ─── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 34px 28px;
  transition: all var(--mid) var(--ease);
  box-shadow: var(--sh-sm); position: relative; overflow: hidden;
}
.tile::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 3px; height: 100%;
  background: var(--g600);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform var(--mid) var(--ease);
}
.tile:hover { border-color: var(--border-g); transform: translateY(-6px); box-shadow: var(--sh-g); }
.tile:hover::before { transform: scaleY(1); }
.tile-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all var(--mid);
}
.tile:hover .tile-icon { background: var(--g600); }
.tile:hover .tile-icon svg { stroke: white; }
.tile-icon svg {
  width: 20px; height: 20px; stroke: var(--g600); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--mid);
}
.tile h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; letter-spacing: -0.02em; }
.tile p { font-size: 0.86rem; color: var(--muted); line-height: 1.78; }

/* — Tile filter hidden state — */
.tile[hidden] { display: none; }

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px;
}
.filter-tab {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white); font-family: 'Outfit', sans-serif;
  font-size: 0.84rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all var(--fast);
}
.filter-tab:hover { border-color: var(--border-g); color: var(--g700); }
.filter-tab.active {
  background: var(--g600); border-color: var(--g600);
  color: white; box-shadow: 0 4px 14px rgba(22,163,74,0.25);
}

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  border: 1px solid var(--border-g); border-radius: 22px;
  overflow: hidden; box-shadow: var(--sh);
}
.process-step {
  background: var(--white); padding: 42px 28px;
  border-right: 1px solid var(--border); position: relative;
  transition: background var(--mid);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--g50); z-index: 2; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--g100); line-height: 1;
  margin-bottom: 18px; transition: color var(--mid);
  display: block;
}
.process-step:hover .step-num { color: var(--g200); }
.process-step h4 { font-size: 0.96rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.process-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(145deg, var(--g800) 0%, #0a2210 100%);
  border-radius: 26px; padding: 80px 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; overflow: hidden; flex-wrap: wrap;
  margin: 0 5% 5%;
}
.cta-strip::before {
  content: ''; position: absolute; top: -50%; right: -5%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(22,163,74,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip::after {
  content: ''; position: absolute; bottom: -40%; left: 25%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip .label { color: var(--g400); }
.cta-strip .label::before { background: var(--g400); }
.cta-strip h2 { color: white; font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 900; max-width: 520px; letter-spacing: -0.04em; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; z-index: 2; }
.cta-strip .btn-secondary { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
.cta-strip .btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); color: white; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 128px 5% 76px;
  background: linear-gradient(150deg, var(--white) 55%, var(--g50) 100%);
  border-bottom: 1px solid var(--border-g);
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: -30%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900; max-width: 760px;
  margin-bottom: 1.2rem; letter-spacing: -0.04em;
  opacity: 0; animation: fadeUp .65s var(--ease) .1s forwards;
}
.page-hero p {
  color: var(--muted); font-size: 1.02rem;
  max-width: 570px; line-height: 1.88;
  opacity: 0; animation: fadeUp .65s var(--ease) .25s forwards;
}

/* ─── SERVICES DETAIL ─── */
.service-detail-item {
  padding: 56px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 250px 1fr;
  gap: 64px; align-items: start;
  transition: all var(--mid) var(--ease);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item:hover { padding-left: 12px; }
.sdi-num {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--light); margin-bottom: 14px;
  transition: color var(--mid);
}
.service-detail-item:hover .sdi-num { color: var(--g600); }
.sdi-left h3 { font-size: 1.35rem; font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: -0.02em; }
.sdi-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--g700); background: var(--g100);
  border-radius: 6px; padding: 4px 10px; margin-top: 12px;
}
.sdi-right .intro {
  font-size: 0.97rem; color: var(--muted);
  margin-bottom: 24px; line-height: 1.88;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--body); line-height: 1.7;
}
.feature-list li::before {
  content: ''; display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--g600); margin-top: 8px; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.sdi-extra { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.sdi-extra-tag {
  font-size: 0.72rem; color: var(--muted);
  background: var(--pale); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px; font-weight: 500;
}

/* ─── CASE STUDIES ─── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.case-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; padding: 38px 30px;
  display: flex; flex-direction: column;
  transition: all var(--mid) var(--ease);
  box-shadow: var(--sh-sm); overflow: hidden;
}
.case-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g600), var(--g500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--mid) var(--ease);
}
.case-card:hover { border-color: var(--border-g); transform: translateY(-7px); box-shadow: var(--sh-g); }
.case-card:hover::after { transform: scaleX(1); }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.case-tag {
  display: inline-block; font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 6px; padding: 4px 10px;
}
.case-tag.green { color: var(--g700); background: var(--g100); }
.case-tag.gold { color: var(--gold); background: var(--gold-bg); }
.case-tag.teal { color: #0d9488; background: #ccfbf1; }
.case-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; line-height: 1.35; letter-spacing: -0.02em; }
.case-card .case-body { font-size: 0.88rem; color: var(--muted); line-height: 1.82; margin-bottom: 24px; flex: 1; }
.case-metrics {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 24px;
}
.metric {
  background: var(--g50); border: 1px solid var(--border-g);
  border-radius: 12px; padding: 14px 10px; text-align: center;
}
.metric-val { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 5px; letter-spacing: -0.04em; }
.metric-val span { color: var(--g600); }
.metric-lbl { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; line-height: 1.3; }
.case-outcomes { list-style: none; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); padding-top: 20px; }
.case-outcomes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--body); line-height: 1.6; }
.case-outcomes li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--g500); margin-top: 7px; flex-shrink: 0; }

/* ─── FEATURED CASE ─── */
.featured-case {
  background: linear-gradient(145deg, var(--g800), #0a2210);
  border-radius: 26px; padding: 64px; margin-bottom: 60px; overflow: hidden;
}
.featured-case::before {
  content: ''; position: absolute; top: -20%; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,0.28) 0%, transparent 70%);
}
.featured-case .label { color: var(--g400); }
.featured-case .label::before { background: var(--g400); }
.featured-case h2 { color: white; font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 1rem; letter-spacing: -0.035em; }
.featured-case .case-desc { color: rgba(255,255,255,0.6); line-height: 1.88; max-width: 700px; margin-bottom: 32px; }
.featured-metrics { display: flex; gap: 36px; margin-bottom: 36px; flex-wrap: wrap; }
.featured-metric-val { font-family: 'Outfit', sans-serif; font-size: 2.6rem; font-weight: 900; color: white; letter-spacing: -0.05em; line-height: 1; }
.featured-metric-val span { color: var(--g400); }
.featured-metric-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-top: 6px; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; padding: 38px 32px;
  transition: all var(--mid) var(--ease); box-shadow: var(--sh-sm);
}
.testimonial-card:hover { border-color: var(--border-g); box-shadow: var(--sh-g); transform: translateY(-5px); }
.quote-mark { font-family: 'Fraunces', serif; font-size: 5rem; line-height: 0.8; color: var(--g600); opacity: 0.18; margin-bottom: 12px; display: block; }
.testimonial-card blockquote { font-size: 0.96rem; color: var(--body); line-height: 1.88; font-style: italic; margin-bottom: 24px; font-family: 'Fraunces', serif; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--g100); border: 2px solid var(--border-g); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 800; color: var(--g700); flex-shrink: 0; }
.author-name { font-size: 0.87rem; font-weight: 700; color: var(--ink); }
.author-role { font-size: 0.75rem; color: var(--muted); }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: 1.9rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.035em; }
.contact-intro { color: var(--muted); margin-bottom: 36px; line-height: 1.88; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.cd-icon { width: 46px; height: 46px; background: var(--g100); border: 1px solid var(--border-g); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 19px; height: 19px; stroke: var(--g600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cd-label { font-size: 0.68rem; color: var(--light); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 3px; }
.cd-value { font-size: 0.92rem; color: var(--body); font-weight: 500; }
.contact-note { margin-top: 36px; background: var(--g50); border: 1px solid var(--border-g); border-radius: 16px; padding: 28px; }
.contact-note h4 { font-size: 0.92rem; margin-bottom: 8px; color: var(--ink); }
.contact-note p { font-size: 0.85rem; color: var(--muted); line-height: 1.82; }

/* FAQ */
.contact-faq { margin-top: 44px; }
.contact-faq > h4 { font-size: 0.68rem; color: var(--light); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 16px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-q { font-size: 0.9rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; user-select: none; transition: color var(--fast); }
.faq-q:hover { color: var(--g700); }
.faq-q::after { content: '+'; font-size: 1.1rem; color: var(--g600); flex-shrink: 0; transition: transform .25s; width: 26px; height: 26px; background: var(--g100); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 12px; font-size: 0.85rem; color: var(--muted); line-height: 1.82; }
.faq-item.open .faq-a { display: block; }

/* Contact Form */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 26px; padding: 56px; box-shadow: var(--sh-lg); }
.contact-form h2, .contact-form h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.03em; }
.contact-form > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.71rem; color: var(--body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  color: var(--ink); font-family: 'Outfit', sans-serif;
  font-size: 0.93rem; font-weight: 400;
  outline: none; transition: all var(--fast);
  -webkit-appearance: none; appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; background-color: var(--off); }
.form-group select option { background: var(--white); color: var(--ink); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--xlight); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--g600); background: var(--g25); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-group textarea { resize: vertical; min-height: 136px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 18px; border-radius: 12px; }
.success-message { background: var(--g100); border: 1px solid var(--border-g2); color: var(--g800); padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; font-size: 0.9rem; }

/* ─── VALUES GRID ─── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px 28px; transition: all var(--mid) var(--ease); box-shadow: var(--sh-sm); text-align: center; }
.value-card:hover { border-color: var(--border-g); transform: translateY(-6px); box-shadow: var(--sh-g); }
.value-icon { width: 64px; height: 64px; background: var(--g100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; transition: background var(--mid); }
.value-card:hover .value-icon { background: var(--g600); }
.value-card:hover .value-icon svg { stroke: white; }
.value-icon svg { width: 28px; height: 28px; stroke: var(--g600); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--mid); }
.value-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.value-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.78; }

/* ─── INFO BOX ─── */
.info-box { background: var(--g50); border: 1px solid var(--border-g); border-radius: 18px; padding: 30px; margin-bottom: 24px; }
.info-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.info-box p { color: var(--muted); font-size: 0.9rem; line-height: 1.82; }
.info-box strong { color: var(--g700); }

/* ─── BADGE STRIP ─── */
.badge-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.badge-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 12px 22px; font-size: 0.82rem; font-weight: 600; color: var(--body); box-shadow: var(--sh-sm); transition: all var(--mid); }
.badge-item:hover { border-color: var(--border-g); color: var(--g700); background: var(--g50); }

/* ─── ABOUT ─── */
.team-strip { margin-top: 28px; display: flex; align-items: flex-start; gap: 24px; }
.team-fact { flex: 1; text-align: center; padding: 24px; background: var(--g50); border-radius: 14px; border: 1px solid var(--border-g); }
.team-fact .fact-n { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: var(--g600); line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
.team-fact .fact-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 76px 5% 44px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 64px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 18px; display: inline-flex; color: white; }
.footer-brand .logo-dot { background: var(--g500); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.87rem; line-height: 1.88; max-width: 280px; margin-bottom: 28px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.67rem; font-weight: 800; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.17em; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 400; transition: all var(--fast); display: inline-flex; align-items: center; gap: 0; }
.footer-col ul a:hover { color: white; gap: 6px; }
.footer-col ul a::before { content: ''; width: 0; height: 1px; background: var(--g400); transition: width var(--fast); }
.footer-col ul a:hover::before { width: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--fast); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-group > *:nth-child(1) { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: .08s; }
.reveal-group > *:nth-child(3) { transition-delay: .16s; }
.reveal-group > *:nth-child(4) { transition-delay: .24s; }
.reveal-group > *:nth-child(5) { transition-delay: .32s; }
.reveal-group > *:nth-child(6) { transition-delay: .40s; }
.reveal-group > *:nth-child(7) { transition-delay: .48s; }
.reveal-group > *:nth-child(8) { transition-delay: .56s; }
.reveal-group > *:nth-child(9) { transition-delay: .64s; }
.reveal-group > *:nth-child(10) { transition-delay: .72s; }
.reveal-group > *:nth-child(11) { transition-delay: .80s; }
.reveal-group > *:nth-child(12) { transition-delay: .88s; }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

/* ─── SCROLL PROGRESS ─── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--g600); z-index: 9997;
  width: 0%; transition: width .1s linear;
  box-shadow: 0 0 10px rgba(22,163,74,0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-item { grid-template-columns: 200px 1fr; gap: 40px; }
  .counter-strip { grid-template-columns: repeat(2,1fr); }
  .counter-card:nth-child(2) { border-right: none; }
  .counter-card:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .counter-card:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.7rem; }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .service-detail-item { grid-template-columns: 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .featured-case { padding: 36px 28px; }
  .contact-form { padding: 32px 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 52px 36px; }
  .team-strip { flex-direction: column; }
}
@media (max-width: 600px) {
  .section { padding: 70px 5%; }
  .hero { padding: 96px 5% 64px; }
  .hero-stats { gap: 16px; }
  .stat { padding-right: 28px; margin-right: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .values-grid { grid-template-columns: 1fr; }
  .counter-strip { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 44px 28px; margin: 0 5% 5%; }
  .counter-card { padding: 32px 20px; }
  .counter-val { font-size: 2.4rem; }
}
