/* ==========================================================================
   CMS IT — Stylesheet
   Brand: lime green + charcoal, drawn from the CMS IT logo
   Type: Space Grotesk (display) + Inter (text)
   ========================================================================== */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../assets/fonts/space-grotesk-500.woff2") format("woff2");
}

:root {
  --ink: #14190e;
  --ink-deep: #0c1007;
  --lime: #a8c62a;
  --lime-bright: #c6e04b;
  --lime-dark: #7f9a14;
  --grey: #8b9083;
  --slate: #545b4c;
  --slate-light: #7d8474;
  --bg: #fdfdfa;
  --bg-alt: #f4f7ea;
  --bg-card: #ffffff;
  --border: #e5e9d9;
  --text: #1c2118;
  --text-soft: #545b4c;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(20, 25, 14, 0.06);
  --shadow-md: 0 14px 34px rgba(20, 25, 14, 0.11);
  --shadow-lg: 0 28px 70px rgba(20, 25, 14, 0.18);
  --maxw: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--ink); }

img { max-width: 100%; display: block; }

a { color: var(--lime-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); border-radius: 2px; }

.section-head { max-width: 720px; margin: 0 0 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 16px; }
.section-head p { font-size: 1.07rem; color: var(--text-soft); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .30s; }
.reveal:nth-child(6) { transition-delay: .36s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.99rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--lime-bright), var(--lime) 60%);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(168, 198, 42, 0.4);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(168, 198, 42, 0.52); color: var(--ink-deep); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); border-color: var(--lime-bright); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--lime); }
.btn-outline:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 253, 250, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lime), var(--lime-bright), var(--lime)); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.97rem; position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--lime); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--lime-dark); }
.nav-links a.active { color: var(--lime-dark); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.93rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 620px at 82% -12%, rgba(168, 198, 42, 0.26), transparent 62%),
              radial-gradient(700px 500px at -8% 110%, rgba(127, 154, 20, 0.20), transparent 60%),
              linear-gradient(158deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: var(--white);
  padding: 104px 0 116px;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: var(--noise); pointer-events: none; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(198, 224, 75, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(198, 224, 75, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(720px 420px at 22% 32%, #000, transparent 75%);
  pointer-events: none;
}
.hero-flower {
  position: absolute; right: -70px; top: -70px;
  width: 340px; height: 340px; opacity: 0.55;
  animation: flower-drift 14s ease-in-out infinite alternate, flower-glow 5s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-flower .flower-spin { transform-origin: 50% 50%; animation: flower-spin 80s linear infinite; }
@keyframes flower-drift {
  from { transform: rotate(-6deg) translateY(0); }
  to   { transform: rotate(10deg) translateY(26px); }
}
@keyframes flower-glow {
  from { filter: drop-shadow(0 0 14px rgba(198, 224, 75, 0.3)); }
  to   { filter: drop-shadow(0 0 40px rgba(198, 224, 75, 0.65)); }
}
@keyframes flower-spin { to { transform: rotate(360deg); } }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--lime-bright), var(--lime)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.16rem; color: #cdd4c2; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; color: #a4ab97; font-size: 0.92rem; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }

.hero-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(198, 224, 75, 0.24);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime-bright), transparent);
}
.hero-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 18px; }
.hero-stat { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat b { font-family: var(--font-head); font-size: 1.8rem; color: var(--lime-bright); font-weight: 700; letter-spacing: -0.02em; }
.hero-stat span { color: #a4ab97; font-size: 0.94rem; }

/* ---------- Hero network canvas ---------- */
.net-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* ---------- Flower dashboard + mini audit (hero) ---------- */
.flower-dash {
  background: rgba(8, 11, 5, 0.82);
  border: 1px solid rgba(198, 224, 75, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  padding: 24px 26px 26px;
}
.fd-view[hidden] { display: none; }
.fd-hint { display: block; text-align: center; color: #8fa07c; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.fd-flower { display: block; width: min(290px, 82%); margin: 0 auto 8px; overflow: visible; }
.fd-petal { cursor: pointer; outline: none; transition: filter .25s ease; }
.fd-petal circle { fill: url(#fd-petal-g); fill-opacity: 0.38; stroke: rgba(198, 224, 75, 0.4); stroke-width: 1; transition: fill-opacity .25s ease; }
.fd-petal g { stroke: rgba(255, 255, 255, 0.85); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; transition: stroke .25s ease; }
.fd-petal.active circle, .fd-petal:hover circle, .fd-petal:focus-visible circle { fill-opacity: 0.95; }
.fd-petal.active, .fd-petal:focus-visible { filter: drop-shadow(0 0 12px rgba(198, 224, 75, 0.55)); }
.fd-petal.active g { stroke: #232d0e; }
.fd-core circle { fill: url(#fd-core-g); }
.fd-core-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; fill: #3a4d0a; }
.fd-core-est { font-size: 9px; letter-spacing: 0.06em; fill: #7f9a14; }
.fd-readout { text-align: center; min-height: 76px; }
.fd-readout b { display: block; color: var(--lime-bright); font-family: var(--font-head); font-size: 1.06rem; margin-bottom: 5px; }
.fd-readout p { color: #cdd4c2; font-size: 0.92rem; line-height: 1.55; margin: 0; }
.fd-actions { margin-top: 14px; }
.fd-actions .btn { width: 100%; justify-content: center; }
.fd-back { background: none; border: none; color: #a4ab97; cursor: pointer; font-size: 0.85rem; padding: 0; margin-bottom: 12px; }
.fd-back:hover { color: var(--lime-bright); }
.fd-audit-head { color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.fd-audit-sub { color: #a4ab97; font-size: 0.88rem; margin-bottom: 18px; }
.fd-q { margin-bottom: 15px; }
.fd-q > span { display: block; color: #cdd4c2; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.fd-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.fd-opts button {
  flex: 1 1 auto; background: rgba(255, 255, 255, 0.06); color: #e6ebd9;
  border: 1px solid rgba(198, 224, 75, 0.28); border-radius: 10px;
  padding: 9px 10px; font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.fd-opts button:hover { border-color: var(--lime); }
.fd-opts button.sel { background: var(--lime); color: #1c2410; border-color: var(--lime); }
.fd-result { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 16px; margin-top: 4px; }
.fd-result-lead { color: #cdd4c2; font-size: 0.88rem; }
.fd-amt { font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; color: var(--lime-bright); letter-spacing: -0.02em; }
.fd-per { color: #a4ab97; font-size: 1rem; margin-left: 3px; }
.fd-result p { color: #cdd4c2; font-size: 0.88rem; line-height: 1.5; margin: 6px 0 14px; }
.fd-result .btn { width: 100%; justify-content: center; }
.fd-result small { display: block; color: #7d8a6c; font-size: 0.74rem; margin-top: 10px; }

/* ---------- Hero badge chips ---------- */
.hero-badges span {
  border: 1px solid rgba(198, 224, 75, 0.22);
  background: rgba(198, 224, 75, 0.07);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-badges svg { color: var(--lime-bright); flex: 0 0 auto; }

/* ---------- Section row (head + action) ---------- */
.section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.section-row .section-head { margin: 0; }

/* ---------- Numbered cards ---------- */
.card-num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--lime-dark); opacity: 0.55;
}

/* ---------- SOC radar panel ---------- */
.soc-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; position: relative; }
.soc-head h3 { margin: 0; }
.soc-live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: #a4ab97; }
.soc-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-bright); animation: dot-pulse 1.6s ease-in-out infinite; }
.radar {
  position: relative;
  width: 96px; height: 96px; flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(198, 224, 75, 0.3);
  background:
    radial-gradient(circle, rgba(198,224,75,0.10) 1px, transparent 1.6px) center / 12px 12px,
    repeating-radial-gradient(circle at center, transparent 0 22px, rgba(198,224,75,0.16) 22px 23px),
    radial-gradient(circle, rgba(198,224,75,0.10), rgba(8,11,5,0.4) 70%);
  overflow: hidden;
}
.radar::after { content: ""; position: absolute; left: 0; top: 50%; right: 0; height: 1px; background: rgba(198,224,75,0.14); }
.radar::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(198,224,75,0.14); }
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(198, 224, 75, 0.55), rgba(198, 224, 75, 0.08) 55deg, transparent 75deg);
  animation: radar-sweep 3.6s linear infinite;
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
.radar-blip { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--lime-bright); opacity: 0; animation: blip 3.6s ease-out infinite; }
.radar-blip.b1 { top: 26%; left: 62%; animation-delay: 0.7s; }
.radar-blip.b2 { top: 64%; left: 30%; animation-delay: 2.4s; }
@keyframes blip { 0%, 8% { opacity: 0; transform: scale(0.4); } 12% { opacity: 1; transform: scale(1.25); } 34% { opacity: 0.55; transform: scale(1); } 60%, 100% { opacity: 0; } }

/* ---------- Partner marquee ---------- */
.trust { padding: 40px 0 36px; border-bottom: 1px solid var(--border); background: var(--white); overflow: hidden; }
.trust p { text-align: center; color: var(--slate-light); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.marquee-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 34px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: 0.6;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.marquee-track img:hover { filter: none; opacity: 1; transform: scale(1.08); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--lime), var(--lime-bright));
  transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d3dcb8; }
.card:hover::before { transform: scaleY(1); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(168,198,42,0.16), rgba(198,224,75,0.22));
  color: var(--lime-dark);
  transition: transform .3s ease;
}
.card:hover .card-icon { transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.97rem; }
.card ul { list-style: none; margin-top: 16px; }
.card ul li { position: relative; padding-left: 26px; margin-bottom: 8px; color: var(--text-soft); font-size: 0.94rem; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 800; }

/* ---------- Stats band ---------- */
.stats { background: linear-gradient(135deg, var(--ink), var(--ink-deep)); color: #fff; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background-image: var(--noise); }
.stats .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; position: relative; }
.stat-item b { font-family: var(--font-head); display: block; font-size: 2.9rem; font-weight: 700; letter-spacing: -0.03em; background: linear-gradient(120deg, #fff, var(--lime-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item span { color: #a4ab97; font-size: 0.97rem; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .eyebrow { margin-bottom: 12px; }
.split h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.split p { color: var(--text-soft); margin-bottom: 22px; font-size: 1.04rem; }
.feature-list { list-style: none; }
.feature-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.feature-list .fl-icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; background: var(--bg-alt); display: grid; place-items: center; color: var(--lime-dark); }
.feature-list h4 { font-size: 1.03rem; margin-bottom: 3px; }
.feature-list p { margin: 0; font-size: 0.95rem; }
.split-visual {
  background: linear-gradient(160deg, var(--ink), var(--ink-deep));
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.split-visual::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,224,75,0.35), transparent 70%);
}
.split-visual h3 { color: #fff; margin-bottom: 20px; position: relative; }
.split-visual img { border-radius: var(--radius-sm); position: relative; }
.mini-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.10); position: relative; }
.mini-row:last-child { border-bottom: none; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime-bright); box-shadow: 0 0 12px var(--lime-bright); animation: dot-pulse 2.6s ease-in-out infinite; }
.mini-row:nth-child(3) .mini-dot { animation-delay: .4s; }
.mini-row:nth-child(4) .mini-dot { animation-delay: .8s; }
.mini-row:nth-child(5) .mini-dot { animation-delay: 1.2s; }
.mini-row:nth-child(6) .mini-dot { animation-delay: 1.6s; }
@keyframes dot-pulse { 0%,100% { box-shadow: 0 0 6px var(--lime-bright); } 50% { box-shadow: 0 0 16px var(--lime-bright); } }
.mini-row span { color: #cdd4c2; }
.mini-row b { margin-left: auto; color: #fff; }

/* ---------- Staff slideshow ---------- */
.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.slideshow .slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.045);
  transition: opacity 1s ease, transform 6s ease;
}
.slideshow .slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.slideshow .slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow .slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 28px 20px;
  background: linear-gradient(transparent, rgba(12, 16, 7, 0.82));
  color: #e6ead9; font-size: 0.95rem; font-weight: 500;
}
.slide-nav {
  position: absolute; right: 18px; top: 18px; z-index: 3;
  display: flex; gap: 8px;
}
.slide-btn {
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(12,16,7,0.45); color: #fff; cursor: pointer;
  display: grid; place-items: center; backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease;
}
.slide-btn:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.slide-dots {
  position: absolute; left: 24px; bottom: 20px; z-index: 3;
  display: flex; gap: 8px;
}
.slide-dots button {
  width: 26px; height: 4px; border-radius: 4px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.35); transition: background .25s ease, width .25s ease;
}
.slide-dots button.active { background: var(--lime-bright); width: 40px; }

/* ---------- Certification band ---------- */
.cert-band {
  background: radial-gradient(800px 460px at 15% 20%, rgba(212, 175, 55, 0.14), transparent 60%),
              linear-gradient(150deg, #171307 0%, var(--ink-deep) 70%);
  color: #fff;
  overflow: hidden;
}
.cert-band::before { content: ""; position: absolute; inset: 0; background-image: var(--noise); }
.cert-grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center; position: relative; }
.cert-badge { display: grid; place-items: center; }
.cert-badge img {
  width: 100%; max-width: 300px; height: auto;
  filter: drop-shadow(0 22px 44px rgba(212, 175, 55, 0.32));
  animation: cert-float 7s ease-in-out infinite alternate;
}
@keyframes cert-float { from { transform: translateY(0); } to { transform: translateY(-14px); } }
.cert-band .eyebrow { color: #e8c95a; }
.cert-band .eyebrow::before { background: #e8c95a; }
.cert-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.gold-grad { background: linear-gradient(120deg, #f3e08a, #d4af37); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cert-band p { color: #cfc9b4; font-size: 1.05rem; margin-bottom: 18px; max-width: 560px; }
.cert-points { list-style: none; margin: 4px 0 28px; }
.cert-points li { position: relative; padding-left: 30px; margin-bottom: 10px; color: #e6e0c8; font-size: 0.99rem; }
.cert-points li::before { content: "✓"; position: absolute; left: 0; color: #e8c95a; font-weight: 800; }
.cert-band .btn-primary { background: linear-gradient(120deg, #f3e08a, #d4af37); color: #171307; box-shadow: 0 10px 26px rgba(212, 175, 55, 0.35); }
.cert-band .btn-primary:hover { color: #171307; box-shadow: 0 16px 36px rgba(212, 175, 55, 0.48); }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--lime), var(--lime-bright)); color: var(--ink); text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: var(--noise); }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--ink); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: #3a4224; font-size: 1.08rem; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-primary { background: var(--ink); color: var(--lime-bright); box-shadow: 0 12px 28px rgba(12,16,7,0.3); }
.cta-band .btn-primary:hover { color: var(--lime-bright); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: radial-gradient(900px 500px at 85% -20%, rgba(168,198,42,0.22), transparent 60%),
              linear-gradient(158deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #fff;
  padding: 76px 0 82px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--noise); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: #cdd4c2; font-size: 1.13rem; max-width: 640px; margin: 0 auto; }
.crumb { color: #a4ab97; font-size: 0.9rem; margin-bottom: 18px; }
.crumb a { color: var(--lime-bright); }

/* ---------- Service detail rows ---------- */
.service-row { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease; }
.service-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--lime), var(--lime-bright)); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.service-row:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #d3dcb8; }
.service-row:hover::before { transform: scaleY(1); }
.service-row .card-icon { margin: 0; }
.service-row h3 { font-size: 1.26rem; margin-bottom: 8px; }
.service-row p { color: var(--text-soft); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding: 26px 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  display: inline-block; font-size: 1.7rem; font-weight: 700; margin-bottom: 8px;
  background: linear-gradient(120deg, var(--lime-dark), var(--lime)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h4 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 18px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lime); }
.team-avatar {
  width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 20px;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  display: grid; place-items: center;
  font-family: var(--font-head);
  color: var(--ink); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.02em;
  transition: transform .3s ease, border-radius .3s ease;
}
.team-card:hover .team-avatar { transform: rotate(-6deg); border-radius: 50%; }
.team-avatar.has-photo { background: none; overflow: hidden; }
.team-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { color: var(--slate-light); font-size: 0.87rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 28px; }
.contact-method { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-method .ci-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: var(--bg-alt); display: grid; place-items: center; color: var(--lime-dark); }
.contact-method h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-method p, .contact-method a { color: var(--text-soft); font-size: 0.97rem; margin: 0; }
.contact-method a:hover { color: var(--lime-dark); }

.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text); background: #fff; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(168,198,42,0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--slate-light); margin-top: 6px; }
.form-success { display: none; padding: 16px; border-radius: var(--radius-sm); background: #eef6d8; color: #46610a; border: 1px solid #cfe08a; margin-bottom: 20px; font-weight: 500; }
.form-success.show { display: block; }
.form-success.error { background: #fdecea; color: #8a2216; border-color: #f2c4bc; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.legal-content h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal-content p, .legal-content li { color: var(--text-soft); margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }
.legal-content a { color: var(--lime-dark); text-decoration: underline; }

/* Floating WhatsApp button (3CX chat bubble sits bottom-right) */
.wa-float { position: fixed; left: 20px; bottom: 20px; z-index: 9999; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: transform .15s ease, box-shadow .15s ease; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.3); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
@media print { .wa-float, #wp-live-chat-by-3CX { display: none; } }
.service-row { scroll-margin-top: 96px; }

/* ---------- Pricing ---------- */
.pricing-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; overflow: visible; }
.price-card.popular { border-color: var(--lime); box-shadow: 0 16px 40px rgba(168, 198, 42, 0.25); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  color: var(--ink); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px rgba(168, 198, 42, 0.4);
}
.price-tag { margin: 6px 0 10px; color: var(--ink); }
.price-tag b { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; }
.price-from { font-size: 0.9rem; color: var(--slate-light); margin-right: 4px; }
.price-per { font-size: 0.95rem; color: var(--slate-light); margin-left: 4px; }
.price-desc { min-height: 3.2em; }
.price-card ul { flex: 1; }
.price-btn { margin-top: 22px; justify-content: center; }
.pricing-note { text-align: center; color: var(--slate-light); font-size: 0.88rem; max-width: 720px; margin: 36px auto 0; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: border-color .2s ease; }
.faq-item.open { border-color: var(--lime); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: var(--font-head); font-size: 1.04rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { transition: transform .25s ease; flex: 0 0 auto; color: var(--lime-dark); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--text-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: #bcc3b0; padding: 64px 0 28px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lime), var(--lime-bright), var(--lime)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; position: relative; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand img { height: 30px; filter: brightness(1.06); }
.footer-brand p { color: #939a86; font-size: 0.95rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; color: #a4ab97; font-size: 0.95rem; }
.footer-col a { color: #a4ab97; font-size: 0.95rem; }
.footer-col a:hover { color: var(--lime-bright); }
.footer-cert { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.footer-cert img { width: 72px; height: auto; filter: drop-shadow(0 6px 14px rgba(212, 175, 55, 0.3)); }
.footer-cert span { font-size: 0.84rem; color: #a4ab97; line-height: 1.5; }
.acknowledgement {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 24px 0 0;
  margin-bottom: 24px;
  color: #8f9683;
  font-size: 0.88rem;
  max-width: 860px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #7d8474; font-size: 0.88rem; }
.footer-bottom a { color: #a4ab97; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .hero-flower, .hero-flower .flower-spin, .mini-dot, .radar-sweep, .radar-blip, .soc-live i, .cert-badge img, .ind-art-row, .cs-leaf { animation: none; }
  .net-canvas { display: none; }
  .slideshow .slide { transition: opacity .3s ease; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .cert-grid .eyebrow { justify-content: center; }
  .cert-points { display: inline-block; text-align: left; }
  .hero-card { max-width: 460px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------- Clover stats (homepage) ---------- */
.clover-stats { display: grid; grid-template-columns: repeat(2, minmax(150px, 290px)); gap: 12px; justify-content: center; }
.cs-leaf {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 22px; transition: transform .3s ease, filter .3s ease;
  animation: leaf-breathe 7s ease-in-out infinite;
}
.cs-tl { border-radius: 50% 50% 14% 50%; background: linear-gradient(135deg, #a8c62a, #7f9a14); }
.cs-tr { border-radius: 50% 50% 50% 14%; background: linear-gradient(225deg, #c6e04b, #a8c62a); animation-delay: 1.6s; }
.cs-bl { border-radius: 50% 14% 50% 50%; background: linear-gradient(45deg, #7f9a14, #a8c62a); animation-delay: 3.2s; }
.cs-br { border-radius: 14% 50% 50% 50%; background: linear-gradient(315deg, #a8c62a, #c6e04b); animation-delay: 4.8s; }
.cs-leaf:hover { transform: scale(1.05); filter: brightness(1.08); }
.cs-leaf b { font-family: var(--font-head); font-size: clamp(1.8rem, 4.5vw, 2.9rem); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.cs-leaf span { color: rgba(20, 25, 14, 0.72); font-weight: 600; font-size: clamp(0.72rem, 1.5vw, 0.94rem); max-width: 18ch; margin-top: 4px; }
@keyframes leaf-breathe { 50% { transform: scale(1.02); } }

/* ---------- Service pages ---------- */
.steps-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 680px) { .steps-3 { grid-template-columns: 1fr !important; } }
.svc-promise { max-width: 680px; margin: 44px auto 0; background: #f2f6e4; border: 1px solid #cfe08a; border-radius: var(--radius); padding: 28px 32px; text-align: center; }
.svc-promise p { font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; font-style: italic; color: var(--ink); line-height: 1.55; margin: 0; }
.svc-promise span { display: block; margin-top: 12px; color: var(--slate-light); font-size: 0.88rem; }

/* ---------- Services nav dropdown ---------- */
.has-sub { position: relative; display: flex; align-items: center; gap: 1px; }
.sub-toggle { background: none; border: none; cursor: pointer; padding: 4px 2px; color: var(--text); display: flex; align-items: center; transition: transform .25s ease, color .2s ease; }
.has-sub:hover > .sub-toggle, .has-sub.open > .sub-toggle { transform: rotate(180deg); color: var(--lime-dark); }
.sub-menu {
  list-style: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translate(-50%, 6px);
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 286px;
  opacity: 0; visibility: hidden; z-index: 60;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu, .has-sub.open .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sub-menu li { width: 100%; }
.sub-menu a { display: block; padding: 8px 14px; border-radius: 9px; font-size: 0.92rem; color: var(--text); white-space: nowrap; font-weight: 500; }
.sub-menu a:hover { background: #f2f6e4; color: var(--lime-dark); }
.sub-menu a::after { display: none !important; }
.sub-feat a { display: flex; gap: 11px; align-items: flex-start; padding: 10px 14px; }
.sub-feat svg { color: var(--lime-dark); flex: 0 0 auto; margin-top: 3px; }
.sub-feat b { display: block; font-size: 0.95rem; color: var(--ink); }
.sf-d { display: block; font-size: 0.79rem; color: var(--slate-light); font-weight: 400; margin-top: 1px; }
.sub-div { height: 1px; background: var(--border); margin: 8px 6px; }
.sub-all a { color: var(--lime-dark); font-weight: 700; }
@media (max-width: 680px) {
  .has-sub { flex-wrap: wrap; }
  .sub-toggle { margin-left: auto; padding: 12px; }
  .sub-menu { position: static; transform: none; display: none; opacity: 1; visibility: visible; box-shadow: none; border: none; border-radius: 0; padding: 0 0 6px 14px; min-width: 0; width: 100%; }
  .has-sub.open .sub-menu, .has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { transform: none; }
  .has-sub.open .sub-menu { display: block; }
  .sub-menu a { white-space: normal; padding: 9px 0; }
  .sub-feat a { padding: 9px 0; }
}

/* ---------- The CMS IT Edge band ---------- */
.edge-band {
  background: radial-gradient(900px 480px at 15% -10%, rgba(168, 198, 42, 0.18), transparent 60%),
              linear-gradient(158deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #fff;
}
.edge-band .eyebrow { color: var(--lime-bright); }
.edge-band h2 { color: #fff; }
.edge-sub { color: #cdd4c2; max-width: 640px; margin: 0 auto; }
.edge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.edge-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(198, 224, 75, 0.22); border-radius: var(--radius); padding: 30px 26px; transition: border-color .25s ease, transform .25s ease; }
.edge-card:hover { border-color: var(--lime); transform: translateY(-4px); }
.edge-num { display: block; font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--lime-bright); line-height: 1; letter-spacing: -0.02em; margin-bottom: 14px; }
.edge-card h3 { color: #fff; margin-bottom: 10px; }
.edge-card p { color: #cdd4c2; font-size: 0.95rem; }
@media (max-width: 940px) { .edge-grid { grid-template-columns: 1fr; } }

/* ---------- Industries ---------- */
.page-hero .container { z-index: 1; }
.ind-hero-art { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.ind-art-row { position: absolute; left: 0; display: flex; align-items: center; width: max-content; color: var(--lime-bright); }
.ind-art-row svg { width: 44px; height: 44px; flex: 0 0 auto; margin-right: 58px; }
.ind-art-row.r1 { top: 14%; opacity: 0.11; animation: ind-slide-l 70s linear infinite; }
.ind-art-row.r2 { bottom: 6%; opacity: 0.07; animation: ind-slide-r 110s linear infinite; }
.ind-art-row.r2 svg { width: 62px; height: 62px; margin-right: 76px; }
@keyframes ind-slide-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ind-slide-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ind-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.ind-card h3 { color: var(--ink); }
.ind-card p { flex: 1; }
.ind-more { color: var(--lime-dark); font-weight: 700; font-size: 0.92rem; margin-top: 14px; transition: transform .2s ease; display: inline-block; }
.ind-card:hover .ind-more { transform: translateX(4px); }

/* ---------- Reviews page ---------- */
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card { text-align: center; padding: 34px 20px; }
.stat-card b { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--lime-dark); letter-spacing: -0.02em; margin-bottom: 8px; }
.stat-card span { color: var(--text-soft); font-size: 0.92rem; }
.review-split { align-items: center; }
.review-name { margin-bottom: 2px; }
.review-role { color: var(--lime-dark); font-weight: 600; margin-bottom: 16px; }
.review-quote { font-size: 1.25rem; font-weight: 600; color: var(--ink); line-height: 1.55; }
.review-visual img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
@media (max-width: 940px) { .stats-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .stats-cards { grid-template-columns: 1fr; } }

/* ---------- Contact: what-to-expect + office map ---------- */
.expect-list { list-style: none; counter-reset: expect; margin-top: 10px; padding: 0; }
.expect-list li { counter-increment: expect; position: relative; padding-left: 56px; margin-bottom: 20px; }
.expect-list li::before {
  content: counter(expect);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  display: grid; place-items: center;
}
.expect-list h4 { font-size: 1.02rem; margin-bottom: 4px; }
.expect-list p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }
.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-meta h3 { font-size: 1.05rem; margin: 18px 0 6px; }
.map-meta p { color: var(--text-soft); font-size: 0.95rem; }
.map-meta a { color: var(--lime-dark); text-decoration: underline; }

/* ---------- Mobile sticky quick actions ---------- */
.mobile-cta { display: none; }
#contact-form { scroll-margin-top: 90px; }

@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
    display: flex; gap: 10px;
    background: rgba(12, 18, 7, 0.96); backdrop-filter: blur(8px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.22);
  }
  .mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 700; font-size: 0.92rem; padding: 13px 6px; border-radius: 12px; white-space: nowrap; }
  .mc-call { background: rgba(255, 255, 255, 0.12); color: #fff; }
  .mc-wa { background: #25d366; color: #fff; }
  .mc-audit { background: var(--lime); color: #1c2410; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .wa-float { display: none; }
  #wp-live-chat-by-3CX { bottom: calc(82px + env(safe-area-inset-bottom)) !important; }
  .net-canvas { display: none; }
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: #fff; padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-links a.active::after, .nav-links a:not(.btn)::after { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .stats .grid-4, .steps, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-flower { width: 220px; height: 220px; right: -60px; }
}
