/* ═══════════════════════════════════════════════════════════
   PROFESSIONAL DESIGNERS — CORPORATE STYLESHEET
   White & Forest Green Palette
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --green-950: #061A0B;
  --green-900: #0C2D14;
  --green-800: #133D1C;
  --green-700: #1A5226;
  --green-600: #216A30;
  --green-500: #2E8B43;
  --lime: #9EDD06;
  --lime-bright: #AEED1A;
  --lime-soft: #C5F24D;
  --lime-alpha: rgba(158,221,6,.10);
  --lime-alpha-md: rgba(158,221,6,.18);

  --white: #FFFFFF;
  --off-white: #F7F9F5;
  --surface: #F0F4EC;
  --surface-2: #E6EDE0;
  --border: #D4DEC8;
  --border-2: #C2D2B3;

  --text: #0F1F0B;
  --text-2: #263D1A;
  --text-3: #3D5C2E;
  --text-muted: #5A7A48;
  --text-dim: #8AA876;

  --card-bg: #FFFFFF;
  --card-shadow: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);

  --font: 'Inter', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --t: .2s ease;
  --t-slow: .5s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--white); color: var(--text);
  line-height: 1.65; font-size: 16px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── CONTAINER ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { line-height: 1.15; letter-spacing: -.025em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
em { font-style: italic; font-family: var(--font-serif); color: var(--green-600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime-alpha); border: 1px solid rgba(158,221,6,.25);
  color: var(--green-700); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}

.section-gap { padding: 100px 0; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-sub { color: var(--text-muted); margin-top: 16px; font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--green-950); font-weight: 700; font-size: .92rem;
  padding: 12px 24px; border-radius: var(--r); transition: all var(--t);
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--lime-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(158,221,6,.35); }
.btn-primary [data-lucide] { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); font-weight: 600; font-size: .92rem;
  padding: 12px 24px; border-radius: var(--r); border: 1.5px solid var(--border-2);
  transition: all var(--t);
}
.btn-ghost:hover { border-color: var(--green-500); color: var(--green-700); background: var(--lime-alpha); }
.btn-ghost [data-lucide] { width: 16px; height: 16px; }

.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── ANNOUNCEMENT BAR ─── */
.ann-bar {
  background: var(--green-900); color: rgba(255,255,255,.88);
  padding: 10px 24px; text-align: center; font-size: .82rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; z-index: 100;
}
.ann-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; animation: blink 2s infinite; }
.ann-link { color: var(--lime); font-weight: 700; text-decoration: underline; }
.ann-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.5); transition: color var(--t); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.ann-close:hover { color: white; background: rgba(255,255,255,.1); }
.ann-close [data-lucide] { width: 14px; height: 14px; }

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 99; background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.navbar.scrolled { border-color: var(--border); box-shadow: 0 1px 16px rgba(0,0,0,.07); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; background: var(--green-900); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark span { color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .04em; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: .88rem; font-weight: 800; color: var(--text); }
.logo-text span { font-size: .68rem; font-weight: 500; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nl { font-size: .86rem; font-weight: 600; color: var(--text-2); padding: 8px 12px; border-radius: 7px; transition: all var(--t); }
.nl:hover { background: var(--lime-alpha); color: var(--green-700); }

/* Dropdown */
.nl-drop { position: relative; cursor: pointer; }
.nl-drop > span { font-size: .86rem; font-weight: 600; color: var(--text-2); padding: 8px 12px; border-radius: 7px; display: flex; align-items: center; gap: 4px; transition: all var(--t); }
.nl-drop > span [data-lucide] { width: 13px; height: 13px; }
.nl-drop:hover > span { background: var(--lime-alpha); color: var(--green-700); }
.drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--card-shadow-hover); min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--t);
}
.nl-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dm-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: .86rem; font-weight: 500; color: var(--text-2); transition: all var(--t); }
.dm-item:hover { background: var(--lime-alpha); color: var(--green-700); }
.dm-item [data-lucide] { width: 14px; height: 14px; color: var(--text-muted); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.portal-btn { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--text-muted); padding: 8px 12px; border-radius: 7px; border: 1px solid var(--border); transition: all var(--t); }
.portal-btn:hover { border-color: var(--green-500); color: var(--green-700); background: var(--lime-alpha); }
.portal-btn [data-lucide] { width: 12px; height: 12px; }

.burger { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border); }
.burger [data-lucide] { width: 18px; height: 18px; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 68px); display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--white); padding: 80px 0;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .4;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3; }
.orb-1 { width: 500px; height: 500px; background: var(--lime); top: -100px; right: -100px; animation: float1 12s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: var(--green-700); bottom: -50px; left: -80px; animation: float2 16s ease-in-out infinite; }
.orb-3 { width: 250px; height: 250px; background: var(--lime-soft); top: 50%; left: 50%; animation: float1 10s ease-in-out infinite reverse; }

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(20px,-30px) scale(1.05);} }
@keyframes float2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-20px,20px);} }

.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  background: var(--lime-alpha); border: 1px solid rgba(158,221,6,.3);
  color: var(--green-700); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; padding: 8px 16px; border-radius: 100px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: blink 2s infinite; }
.hero-h1 { margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 580px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }

.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; gap: 20px; }
.hstat { text-align: center; }
.hstat strong { font-size: 2rem; font-weight: 900; color: var(--text); letter-spacing: -.04em; }
.hstat span { font-size: 1.4rem; font-weight: 900; color: var(--lime); }
.hstat p { font-size: .75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.hstat-divider { width: 1px; height: 48px; background: var(--border); }

.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-size: .72rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--border), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(.7);opacity:.5;} }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.trust-label { text-align: center; font-size: .75rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.tl { font-size: .82rem; font-weight: 800; color: var(--text-muted); letter-spacing: .12em; opacity: .6; transition: opacity var(--t); cursor: default; }
.tl:hover { opacity: 1; color: var(--green-700); }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.av-img-block {
  background: var(--green-900); border-radius: var(--r-xl); aspect-ratio: 4/3;
  display: flex; align-items: flex-end; padding: 24px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
}
.av-img-inner { position: absolute; inset: 0; display: grid; place-items: center; }
.av-img-inner::before {
  content: 'PD'; font-size: 10rem; font-weight: 900; color: rgba(158,221,6,.06);
  position: absolute; letter-spacing: -.04em;
}
.av-metric {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  color: white; font-weight: 700; font-size: .88rem; padding: 12px 18px;
}
.av-card {
  position: absolute; background: var(--white); border-radius: var(--r);
  box-shadow: var(--card-shadow-hover); padding: 16px 18px;
}
.av-card-main {
  top: -24px; right: -20px; display: flex; flex-direction: column; gap: 4px; min-width: 160px;
}
.av-card-main .avc-icon {
  width: 36px; height: 36px; border-radius: 8px; background: var(--lime-alpha);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.av-card-main .avc-icon [data-lucide] { width: 18px; height: 18px; color: var(--green-700); }
.av-card-main strong { font-size: .9rem; line-height: 1.2; }
.av-card-main span { font-size: .7rem; color: var(--text-muted); }
.av-card-secondary {
  bottom: -16px; left: -16px; display: flex; align-items: center; gap: 10px; min-width: 220px;
}
.av-card-secondary [data-lucide] { width: 20px; height: 20px; color: var(--green-700); flex-shrink: 0; }
.av-card-secondary strong { font-size: .82rem; display: block; }
.av-card-secondary span { font-size: .7rem; color: var(--text-muted); }

.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; font-size: .97rem; }
.about-pillars { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.about-pillars li { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--text-2); }
.about-pillars li [data-lucide] { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; }
.about-certs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  background: var(--off-white); border: 1px solid var(--border-2);
  border-radius: 100px; font-size: .74rem; font-weight: 700; color: var(--text-2);
}
.cert-badge [data-lucide] { width: 12px; height: 12px; color: var(--green-600); }

/* ─── SERVICES ─── */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
  transition: all var(--t-slow); position: relative; overflow: hidden;
}
.svc-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); border-color: var(--border-2); }
.svc-card.featured { background: var(--green-900); border-color: transparent; color: white; }
.svc-card.featured h3 { color: white; }
.svc-card.featured p { color: rgba(255,255,255,.75); }
.svc-card.featured .sc-list li a { color: rgba(255,255,255,.8); text-decoration: none; transition: color var(--t); }
.svc-card.featured .sc-list li a:hover { color: white; }
.svc-card.featured .sc-list li a [data-lucide] { color: var(--lime); }
.svc-card.featured .sc-cta { color: var(--lime); }
.svc-card.featured:hover { box-shadow: 0 12px 48px rgba(12,45,20,.4); }

.sc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.sc-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--lime-alpha);
  display: flex; align-items: center; justify-content: center;
}
.sc-icon [data-lucide] { width: 20px; height: 20px; color: var(--green-700); }
.svc-card.featured .sc-icon { background: rgba(158,221,6,.15); }
.svc-card.featured .sc-icon [data-lucide] { color: var(--lime); }
.sc-tag { background: var(--lime); color: var(--green-950); font-size: .68rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; }
.sc-tag-alt { background: var(--lime-alpha); color: var(--green-800); border: 1px solid rgba(158,221,6,.3); font-size: .68rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; }
.svc-marketing-note { display: flex; align-items: center; gap: 7px; background: var(--lime-alpha); border: 1px solid rgba(158,221,6,.25); border-radius: 8px; padding: 9px 12px; font-size: .78rem; color: var(--green-700); font-weight: 600; }
.svc-marketing-note [data-lucide] { width: 13px; height: 13px; color: var(--lime); flex-shrink: 0; }

/* ─── MEGA MENU ─── */
.mega-menu {
  display: none; min-width: 760px; padding: 8px;
  flex-direction: row; gap: 0;
  left: -60px;
}
.nl-drop:hover .mega-menu { display: flex; opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col {
  flex: 1; padding: 12px 16px;
  border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-dim);
  margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.mega-label [data-lucide] { width: 13px; height: 13px; color: var(--green-600); }
.mega-col .dm-item {
  padding: 8px 10px; font-size: .82rem; border-radius: 6px;
}
.svc-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; }
.sc-list { display: flex; flex-direction: column; gap: 8px; }
.sc-list li a { font-size: .82rem; color: var(--text-2); display: flex; align-items: center; gap: 8px; text-decoration: none; transition: color var(--t); }
.sc-list li a:hover { color: var(--green-700); }
.sc-list li a [data-lucide] { width: 12px; height: 12px; color: var(--green-600); flex-shrink: 0; }
.sc-cta { font-size: .84rem; font-weight: 700; color: var(--green-700); display: flex; align-items: center; gap: 4px; margin-top: auto; padding-top: 8px; transition: gap var(--t); }
.sc-cta:hover { gap: 8px; }
.sc-cta [data-lucide] { width: 14px; height: 14px; }
.svc-card-cta { background: var(--lime-alpha); border-color: rgba(158,221,6,.3); align-items: flex-start; }
.svc-card-cta .sc-icon { margin-bottom: 8px; }
.svc-card-cta h3 { font-size: 1.1rem; }
.svc-card-cta p { font-size: .88rem; color: var(--text-muted); }

/* ─── METRICS BANNER ─── */
.metrics-banner { background: var(--green-900); padding: 60px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.metric-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.08); }
.metric-item:last-child { border-right: none; }
.metric-item strong { font-size: 2.5rem; font-weight: 900; color: var(--lime); letter-spacing: -.04em; }
.metric-item span { font-size: 1.5rem; font-weight: 900; color: var(--lime); }
.metric-item p { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; }

/* ─── WORK ─── */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 16px;
  transition: all var(--t-slow);
}
.work-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.work-card-featured { background: var(--surface); grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.wc-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green-600); }
.work-card h3 { font-size: 1.35rem; }
.work-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; }
.wc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wc-tags span { font-size: .72rem; font-weight: 600; background: var(--off-white); border: 1px solid var(--border); color: var(--text-2); padding: 4px 10px; border-radius: 100px; }
.wc-metrics { display: flex; gap: 32px; }
.wc-metrics div { display: flex; flex-direction: column; gap: 2px; }
.wc-metrics strong { font-size: 1.4rem; font-weight: 800; color: var(--green-700); }
.wc-metrics span { font-size: .72rem; color: var(--text-muted); font-weight: 600; }
.wc-link { font-size: .84rem; font-weight: 700; color: var(--green-700); display: flex; align-items: center; gap: 6px; transition: gap var(--t); margin-top: auto; }
.wc-link:hover { gap: 10px; }
.wc-link [data-lucide] { width: 14px; height: 14px; }

/* ─── PROCESS ─── */
.process { background: var(--off-white); }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.ps-step { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.ps-connector { width: 48px; height: 2px; background: var(--border-2); margin-top: 24px; flex-shrink: 0; }
.ps-num { font-size: .68rem; font-weight: 900; color: var(--lime); background: var(--green-900); width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; letter-spacing: .04em; }
.ps-content h4 { font-size: .95rem; }
.ps-content p { font-size: .84rem; color: var(--text-muted); }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; text-align: center; transition: all var(--t-slow);
}
.team-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.tc-avatar {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 900; color: var(--white); letter-spacing: .02em;
}
.tc-av-1 { background: linear-gradient(135deg, #0C2D14, #2E8B43); }
.tc-av-2 { background: linear-gradient(135deg, #1A5226, #9EDD06); }
.tc-av-3 { background: linear-gradient(135deg, #216A30, #C5F24D); color: var(--green-950); }
.tc-av-4 { background: linear-gradient(135deg, #133D1C, #2E8B43); }
.team-card h4 { margin-bottom: 4px; }
.tc-role { font-size: .74rem; color: var(--text-muted); font-weight: 600; display: block; margin-bottom: 12px; }
.team-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.tc-social { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.tc-social a { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all var(--t); color: var(--text-muted); }
.tc-social a:hover { background: var(--lime-alpha); border-color: var(--green-500); color: var(--green-700); }
.tc-social a [data-lucide] { width: 13px; height: 13px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: all var(--t-slow);
}
.testi-card:hover { box-shadow: var(--card-shadow-hover); }
.tq [data-lucide] { width: 24px; height: 24px; color: var(--lime); }
.testi-card p { font-size: .88rem; color: var(--text-2); line-height: 1.7; flex-grow: 1; font-style: italic; }
.tauthor { display: flex; align-items: center; gap: 12px; }
.ta-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-800);
  color: var(--lime); font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tauthor strong { font-size: .86rem; display: block; }
.tauthor span { font-size: .74rem; color: var(--text-muted); }

/* ─── ESTIMATOR ─── */
.estimator { background: var(--white); }
.estimator-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.est-controls {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 40px; display: flex; flex-direction: column; gap: 32px;
}
.efg { display: flex; flex-direction: column; gap: 12px; }
.efg label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); display: flex; align-items: center; gap: 6px; }
.efg label [data-lucide] { width: 13px; height: 13px; color: var(--lime); }
.efg-row { display: flex; justify-content: space-between; align-items: center; }
.efg-badge { font-size: .78rem; font-weight: 700; background: var(--lime-alpha); color: var(--green-700); padding: 4px 12px; border-radius: 100px; }
.est-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.eo-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; border-radius: 10px; border: 1.5px solid var(--border);
  font-weight: 700; font-size: .84rem; color: var(--text-muted);
  background: var(--off-white); transition: all var(--t); cursor: pointer;
}
.eo-btn [data-lucide] { width: 15px; height: 15px; }
.eo-btn.active { background: var(--lime-alpha); border-color: var(--lime); color: var(--green-900); }
.eo-btn:hover:not(.active) { border-color: var(--border-2); background: var(--white); }

.est-slider {
  -webkit-appearance: none; width: 100%; height: 5px; border-radius: 5px;
  background: var(--border); outline: none;
}
.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime); border: 3px solid var(--white); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: transform var(--t);
}
.est-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.slider-ticks { display: flex; justify-content: space-between; font-size: .7rem; color: var(--text-dim); font-weight: 600; }

.efg-toggles { gap: 16px; }
.et-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.et-row:first-child { border-top: none; padding-top: 0; }
.et-info { display: flex; flex-direction: column; gap: 3px; }
.et-info strong { font-size: .86rem; color: var(--text); }
.et-info span { font-size: .74rem; color: var(--text-dim); }
.etoggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.etoggle input { opacity: 0; width: 0; height: 0; }
.etog-track {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--border); border-radius: 100px; transition: .3s;
}
.etog-track::before {
  content: ''; position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: white; left: 4px; bottom: 4px; transition: .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.etoggle input:checked + .etog-track { background: var(--lime); }
.etoggle input:checked + .etog-track::before { transform: translateX(20px); }
.etog-track.locked { cursor: not-allowed; background: var(--green-700); }
.etog-track.locked::before { transform: translateX(20px); }

/* Estimate Card */
.est-card {
  background: var(--green-900); border-radius: var(--r-xl); padding: 40px;
  display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px;
}
.ec-badge {
  display: inline-flex; width: fit-content; background: var(--lime-alpha-md);
  color: var(--lime); font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: 5px 12px; border-radius: 100px;
}
.ec-price-block { display: flex; align-items: flex-end; gap: 6px; }
.ec-currency { font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.ec-price { font-size: 3.5rem; font-weight: 900; color: var(--lime); letter-spacing: -.04em; line-height: 1; font-family: var(--font-serif); }
.ec-name { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 500; margin-top: -8px; }
.ec-divider { height: 1px; background: rgba(255,255,255,.08); }
.ec-timeline { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.7); }
.ec-timeline [data-lucide] { width: 15px; height: 15px; color: var(--lime); }
.ec-timeline strong { color: white; }
.ec-deliverables h5 { color: var(--lime); margin-bottom: 12px; font-size: .68rem; }
.ec-deliverables ul { display: flex; flex-direction: column; gap: 8px; }
.ec-deliverables li { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.8); }
.ec-deliverables li [data-lucide] { width: 13px; height: 13px; color: var(--lime); flex-shrink: 0; }
.ec-disclaimer { font-size: .72rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 5px; justify-content: center; }
.ec-disclaimer [data-lucide] { width: 11px; height: 11px; color: var(--lime); }

/* ─── CAREERS ─── */
.careers { background: var(--off-white); }
.careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.career-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 12px; transition: all var(--t-slow);
}
.career-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.cc-meta { display: flex; justify-content: space-between; align-items: center; }
.cc-dept { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--green-600); background: var(--lime-alpha); padding: 4px 10px; border-radius: 100px; }
.cc-loc { font-size: .74rem; color: var(--text-dim); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.cc-loc [data-lucide] { width: 11px; height: 11px; }
.career-card h4 { font-size: 1.05rem; }
.career-card p { font-size: .84rem; color: var(--text-muted); flex-grow: 1; }
.cc-apply { font-size: .84rem; font-weight: 700; color: var(--green-700); display: flex; align-items: center; gap: 6px; transition: gap var(--t); margin-top: 4px; }
.cc-apply:hover { gap: 10px; }
.cc-apply [data-lucide] { width: 14px; height: 14px; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 12px; transition: all var(--t-slow);
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.bc-tag { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--green-600); }
.blog-card h4 { font-size: .97rem; line-height: 1.4; }
.blog-card p { font-size: .83rem; color: var(--text-muted); flex-grow: 1; line-height: 1.65; }
.bc-footer { display: flex; justify-content: space-between; font-size: .74rem; color: var(--text-dim); font-weight: 500; padding-top: 8px; border-top: 1px solid var(--border); }
.bc-link { font-size: .82rem; font-weight: 700; color: var(--green-700); display: flex; align-items: center; gap: 5px; transition: gap var(--t); }
.bc-link:hover { gap: 9px; }
.bc-link [data-lucide] { width: 13px; height: 13px; }

/* ─── NEWSLETTER ─── */
.newsletter-section { background: var(--green-900); padding: 80px 0; }
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { color: white; margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 32px; }
.nl-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto 12px; }
.nl-form input {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: white; border-radius: var(--r); padding: 13px 16px; font-size: .9rem; outline: none;
  transition: border-color var(--t);
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form input:focus { border-color: var(--lime); }
.nl-disclaimer { font-size: .72rem; color: rgba(255,255,255,.35); }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: .95rem; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cd-item { display: flex; align-items: flex-start; gap: 12px; }
.cd-item [data-lucide] { width: 18px; height: 18px; color: var(--green-600); margin-top: 2px; flex-shrink: 0; }
.cd-item strong { font-size: .86rem; display: block; margin-bottom: 2px; }
.cd-item span { font-size: .84rem; color: var(--text-muted); }
.contact-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.cb { display: flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; padding: 8px 14px; background: var(--off-white); border: 1px solid var(--border); border-radius: 100px; color: var(--text-2); }
.cb [data-lucide] { width: 12px; height: 12px; color: var(--green-600); }

.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--card-shadow); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cf-fg { display: flex; flex-direction: column; gap: 6px; }
.cf-fg label { font-size: .78rem; font-weight: 700; color: var(--text); }
.cf-fg input, .cf-fg select, .cf-fg textarea {
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 12px 14px; font-size: .9rem; color: var(--text); background: var(--off-white);
  outline: none; transition: border-color var(--t), background var(--t);
}
.cf-fg input:focus, .cf-fg select:focus, .cf-fg textarea:focus { border-color: var(--lime); background: var(--white); }
.cf-fg textarea { resize: vertical; }
.cf-disclaimer { font-size: .74rem; color: var(--text-dim); display: flex; align-items: center; gap: 5px; justify-content: center; }
.cf-disclaimer [data-lucide] { width: 12px; height: 12px; color: var(--green-600); }

/* ─── FOOTER ─── */
.footer { background: var(--green-950); padding: 72px 0 32px; color: rgba(255,255,255,.65); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 56px; }
.ft-brand .nav-logo { margin-bottom: 16px; }
.ft-brand .logo-mark { background: rgba(255,255,255,.08); }
.ft-brand .logo-mark span { color: var(--lime); }
.ft-brand .logo-text strong, .ft-brand .logo-text span { color: rgba(255,255,255,.8); }
.ft-brand p { font-size: .84rem; line-height: 1.65; max-width: 260px; margin-bottom: 20px; }
.ft-social { display: flex; gap: 10px; }
.ft-social a { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all var(--t); }
.ft-social a:hover { background: rgba(158,221,6,.15); border-color: var(--lime); color: var(--lime); }
.ft-social a [data-lucide] { width: 14px; height: 14px; }
.ft-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ftl-col h5 { color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .12em; margin-bottom: 16px; }
.ftl-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.55); padding: 4px 0; transition: color var(--t); }
.ftl-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.3); }
.fb-certs { display: flex; gap: 12px; }
.fb-certs span { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .08em; border: 1px solid rgba(255,255,255,.1); padding: 3px 8px; border-radius: 4px; }

/* ─── AI CHAT WIDGET ─── */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 200; }
.chat-fab {
  width: 54px; height: 54px; background: var(--green-900); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.25); transition: all var(--t);
  position: relative; border: 2px solid var(--lime);
}
.chat-fab:hover { background: var(--green-800); transform: scale(1.08); }
.chat-fab [data-lucide] { width: 22px; height: 22px; color: var(--lime); position: absolute; transition: opacity var(--t), transform var(--t); }
.fab-close { opacity: 0; transform: rotate(-90deg); }
.chat-widget.open .fab-open { opacity: 0; transform: rotate(90deg); }
.chat-widget.open .fab-close { opacity: 1; transform: rotate(0); }
.chat-notif { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: var(--lime); border-radius: 50%; font-size: .65rem; font-weight: 800; color: var(--green-950); display: flex; align-items: center; justify-content: center; }
.chat-widget.open .chat-notif { display: none; }

.chat-panel {
  position: absolute; bottom: 68px; right: 0; width: 340px;
  background: var(--white); border-radius: var(--r-xl); box-shadow: 0 8px 48px rgba(0,0,0,.16);
  overflow: hidden; border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98);
  transition: all var(--t-slow); pointer-events: none;
}
.chat-widget.open .chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: all; }

.cp-header { background: var(--green-900); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.cp-brand { display: flex; align-items: center; gap: 10px; }
.cp-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--lime-alpha-md); border: 2px solid var(--lime); display: flex; align-items: center; justify-content: center; }
.cp-avatar [data-lucide] { width: 16px; height: 16px; color: var(--lime); }
.cp-brand strong { font-size: .86rem; color: white; display: block; }
.cp-brand span { font-size: .7rem; color: rgba(255,255,255,.55); }
.cp-close { color: rgba(255,255,255,.5); transition: color var(--t); }
.cp-close:hover { color: white; }
.cp-close [data-lucide] { width: 16px; height: 16px; }

.cp-messages { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 260px; overflow-y: auto; }
.cp-msg { display: flex; }
.cp-msg.bot { justify-content: flex-start; }
.cp-msg.user { justify-content: flex-end; }
.msg-bubble { max-width: 85%; padding: 10px 13px; border-radius: 14px; font-size: .83rem; line-height: 1.55; }
.cp-msg.bot .msg-bubble { background: var(--off-white); color: var(--text); border-bottom-left-radius: 4px; }
.cp-msg.user .msg-bubble { background: var(--green-900); color: white; border-bottom-right-radius: 4px; }
.cp-typing .msg-bubble { display: flex; gap: 5px; align-items: center; padding: 12px 14px; }
.typing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); animation: typeBounce .9s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: .15s; }
.typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes typeBounce { 0%,60%,100%{transform:translateY(0);} 30%{transform:translateY(-5px);} }

.cp-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.cp-chip { font-size: .74rem; font-weight: 600; padding: 5px 11px; border-radius: 100px; background: var(--lime-alpha); border: 1px solid rgba(158,221,6,.3); color: var(--green-700); transition: all var(--t); cursor: pointer; }
.cp-chip:hover { background: var(--lime-alpha-md); }

.cp-input-row { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); }
.cp-input-row input { flex: 1; border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: .84rem; color: var(--text); background: var(--off-white); outline: none; transition: border-color var(--t); }
.cp-input-row input:focus { border-color: var(--lime); }
#cpSend { width: 36px; height: 36px; background: var(--lime); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--t); }
#cpSend:hover { background: var(--lime-bright); }
#cpSend [data-lucide] { width: 15px; height: 15px; color: var(--green-950); }

/* ─── BACK TO TOP ─── */
.btt {
  position: fixed; bottom: 28px; left: 28px; z-index: 100;
  width: 40px; height: 40px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: all var(--t); opacity: 0; pointer-events: none; transform: translateY(8px);
}
.btt.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.btt:hover { background: var(--lime-alpha); border-color: var(--lime); }
.btt [data-lucide] { width: 16px; height: 16px; color: var(--text-2); }

/* ─── SCROLL REVEAL ANIMATIONS ─── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal="left"] { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal="right"] { opacity: 0; transform: translateX(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ─── FORM SUCCESS STATE ─── */
.form-success { text-align: center; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.form-success .fs-icon { width: 60px; height: 60px; background: var(--lime-alpha); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success .fs-icon [data-lucide] { width: 28px; height: 28px; color: var(--lime); }
.form-success h3 { color: var(--text); }
.form-success p { color: var(--text-muted); font-size: .9rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card-featured { grid-column: span 1; grid-template-columns: 1fr; display: flex; }
  .estimator-layout { grid-template-columns: 1fr; }
  .est-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .ft-links { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 768px) {
  .section-gap { padding: 72px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { justify-content: flex-start; }
  .hstat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .ps-connector { width: 2px; height: 32px; }
  .cf-row { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .est-options { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .chat-panel { width: 300px; }
}

@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 32px); right: -16px; bottom: 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
