/*
Theme Name: Basit Personal Brand
Theme URI: https://basitiqbal.com
Author: Basit Iqbal
Author URI: https://basitiqbal.com
Description: Personal brand theme for Basit Iqbal, Operational Systems Architect. Includes homepage, case study templates, and SEO landing page templates.
Version: 1.7.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basit-personal-brand
Tags: custom-menu, featured-images, full-site-editing, one-column, two-columns, flexible-header
*/

/* ═══════════════════════════════════════════════════════
   CHANGELOG
   ───────────────────────────────────────────────────────
   v1.7.0
     • Added 5 new tools in /tools/: Client Welcome Pack
       Generator, Discovery Call Script Builder, 30-Day
       Content Calendar Generator, AI Prompt Library, and
       Offer One-Pager Builder. The hub now lists 15 tools
       in two groups (Generators, then Quick checks).
     • Tool URLs are now clean and extensionless, e.g.
       /tools/admin-cost-calculator instead of the old
       .html address. Old .html links 301-redirect to the
       new clean URLs, so nothing breaks.
     • Fixed the mobile menu Book a Strategy Call button so
       it stays a full-width, centred button instead of
       inheriting the plain text-link styling.
     • Homepage tools strip now features the Welcome Pack
       Generator and links to all 15 tools.
     • Bumped theme + BPB_VERSION to 1.7.0.
   ───────────────────────────────────────────────────────
   v1.6.2
     • Tool pages (hub + all single tools) are now fully
       responsive on mobile: the top bar no longer wraps or
       looks broken, and the cards / CTA panels get proper
       left-right gutters instead of touching the edges.
     • Replaced the tool-grid emoji with the theme's Lucide
       icons (inline SVG) for a consistent icon language.
     • /tools/index.html now 301-redirects to the clean
       /tools/ URL; internal "index.html" links repointed to
       /tools/; tool files served with a Cache-Control header.
     • Quick-contact widget: new coach-focused status line and
       the avatar now uses your logo image (initials fallback).
     • Stripped every em-dash symbol across the whole site and
       rewrote the copy with normal punctuation (colons in SEO
       titles, commas / periods elsewhere).
     • Bumped theme + BPB_VERSION to 1.6.2.
   v1.6.1
     • Design consistency: re-themed the homepage free-tools
       strip from dark to a LIGHT section so it no longer
       stacks two dark bands with the case-studies section.
     • Swapped the tool-grid emoji for the theme's Lucide icons
       (dollar-sign / gauge / calendar-clock) and the badge for
       the standard .section-label; both components now use the
       theme fonts + tokens instead of Inter.
     • Redesigned the quick-contact widget for clean, even
       spacing and full responsiveness.
     • Header: added a "Free Tools" link (→ /tools/) at the end
       of the desktop and mobile menus.
     • Bumped theme + BPB_VERSION to 1.6.1.
   v1.6.0
     • Added the free-tools suite, served from the theme's own
       /tools/ folder via a rewrite rule + template_redirect
       handler in functions.php (/tools/, /tools/<name>.html,
       /tools/assets/style.css).
     • Homepage: added the "Free Tools" strip to front-page.php
       between the case-studies and reviews sections; its styles
       were moved here (see "HOMEPAGE FREE-TOOLS STRIP").
     • Footer: added the floating quick-contact widget to
       footer.php, toggled site-wide by the BI_QUICK_CONTACT
       constant in functions.php; its styles were moved here
       (see "QUICK CONTACT WIDGET").
     • Contact: appended the upgraded Contact Form 7 (.bi-form)
       styling (see "CONTACT FORM (.bi-form), upgraded CF7").
     • Bumped theme + BPB_VERSION to 1.6.0.
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   CSS RESET & TOKENS
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; font-size: 16px;
  overflow-x: clip; /* prevents off-canvas menu + decorative glows from creating a horizontal scroll on mobile */
}
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: var(--paper);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --green: #22883C;
  --green-dark: #0d2b17;
  --green-deep: #1A6B2F;
  --green-mid: #5DC875;
  --green-light: #f0faf2;
  --green-glow: rgba(34,136,60,.18);
  --dark: #0a0f0a;
  --dark2: #111d11;
  --muted: #6b7280;
  --border: #e7e2d8;
  --white: #ffffff;
  /* Warm "paper" canvas + cream surfaces for a premium, less-clinical feel */
  --paper: #fcfaf7;
  --cream: #f6f2ec;
  --cream-2: #faf7f2;
  /* Soft, colour-tinted shadow scale (replaces flat grey) */
  --shadow-sm: 0 1px 2px rgba(16,40,24,.04), 0 3px 10px rgba(16,40,24,.045);
  --shadow-md: 0 4px 14px rgba(16,40,24,.06), 0 14px 34px rgba(20,60,32,.07);
  --shadow-lg: 0 14px 30px rgba(16,40,24,.09), 0 28px 64px rgba(20,60,32,.13);
  --shadow-green: 0 18px 50px rgba(34,136,60,.18);
  --heading: 'Bricolage Grotesque', sans-serif;
  --body: 'DM Sans', sans-serif;
  --serif: 'Playfair Display', serif;
  --sw: min(1200px, 92vw);
  --radius: 16px;
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

h1,h2,h3,h4,h5,h6 { font-family: var(--heading); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ═══ UTILITY ═══ */
.sw { width: var(--sw); margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  border: 1px solid rgba(34,136,60,.2); padding: 6px 14px;
  border-radius: 100px; margin-bottom: 18px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-family: var(--heading); font-size: .9rem; font-weight: 700;
  padding: 14px 28px; border-radius: 10px;
  transition: all .25s var(--ease); border: 2px solid var(--green);
  box-shadow: 0 4px 20px rgba(34,136,60,.3);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,136,60,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  font-family: var(--heading); font-size: .9rem; font-weight: 700;
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid var(--border); transition: all .25s var(--ease);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-deep);
  font-family: var(--heading); font-size: .9rem; font-weight: 700;
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,.3); transition: all .25s var(--ease);
}
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.7);
  font-family: var(--heading); font-size: .85rem; font-weight: 600;
  padding: 10px 18px; border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,.18); transition: all .2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0; transition: opacity .7s ease, transform .7s var(--ease);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(20px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5vw;
  background: rgba(6,14,7,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(34,136,60,.12);
  /* Animate only paint properties (not backdrop-filter / layout) for a smooth, jank-free scrolled state */
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: background-color, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.site-nav.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(34,136,60,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.site-nav.scrolled .nav-logo-text { color: var(--dark); }
.site-nav.scrolled .nav-logo-text small { color: var(--muted); }
.site-nav.scrolled .nav-links a { color: #374151; }
.site-nav.scrolled .nav-links a:hover { color: var(--green); background: var(--green-light); }
.site-nav.scrolled .nav-hamburger span { background: var(--dark); }
/* Light nav variant for inner pages */
.site-nav.nav-light {
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(34,136,60,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.site-nav.nav-light .nav-logo-text { color: var(--dark); }
.site-nav.nav-light .nav-logo-text small { color: var(--muted); }
.site-nav.nav-light .nav-links a { color: #374151; }
.site-nav.nav-light .nav-links a:hover { color: var(--green); background: var(--green-light); }
.site-nav.nav-light .nav-hamburger span { background: var(--dark); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  border: 2.5px solid transparent;
  background: linear-gradient(#fff,#fff) padding-box,
              linear-gradient(135deg, var(--green-deep), var(--green-mid)) border-box;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34,136,60,.1);
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.nav-logo-text { font-family: var(--heading); font-weight: 800; font-size: 1rem; color: rgba(255,255,255,.9); line-height: 1; transition: color .35s ease; }
.nav-logo-text small { display: block; font-size: .62rem; font-weight: 500; color: rgba(255,255,255,.45); margin-top: 2px; letter-spacing: .04em; transition: color .35s ease; }
.site-nav.scrolled .nav-logo-text, .site-nav.nav-light .nav-logo-text { color: var(--dark); }
.site-nav.scrolled .nav-logo-text small, .site-nav.nav-light .nav-logo-text small { color: var(--muted); }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  font-family: var(--body); font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.7); padding: 8px 14px; border-radius: 8px;
  transition: all .2s ease;
}
.nav-links a:hover { color: #6EE7B7; background: rgba(34,136,60,.12); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-primary { padding: 10px 20px; font-size: .82rem; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer; border-radius: 8px; transition: background .2s;
}
.nav-hamburger:hover { background: var(--green-light); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: all .3s ease; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none; position: fixed; inset: 72px 0 0 0; z-index: 99;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  padding: 32px 6vw 40px; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .35s var(--ease);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--heading); font-size: 1.3rem; font-weight: 700;
  color: var(--dark); padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: color .2s; display: block;
}
.nav-mobile a:hover { color: var(--green); }
.nav-mobile .btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 20px; padding: 16px; font-size: 1rem;
  border-bottom: none; text-align: center;
}

/* ═══════════════════════════════════════════════════════
   HERO, homepage
   ═══════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100svh;
  padding: 110px 5vw 70px;
  background: #060e07;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none; opacity: .5;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(34,136,60,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,136,60,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%) translateY(var(--py-glow, 0px));
  width: 100%; max-width: 100%; height: 80vh;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(34,136,60,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(13,43,23,.5) 0%, transparent 60%);
  pointer-events: none; z-index: 0; will-change: transform;
}
.hero-ring-1, .hero-ring-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(34,136,60,.08); z-index: 0; will-change: transform;
}
.hero-ring-1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%) translateY(var(--py-r1, 0px)); }
.hero-ring-2 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%) translateY(var(--py-r2, 0px)); border-color: rgba(34,136,60,.04); }

.hero-inner {
  max-width: 900px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1; gap: 0;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--body); font-size: .75rem; font-weight: 700;
  color: #6EE7B7;
  background: rgba(34,136,60,.15);
  border: 1px solid rgba(34,136,60,.35); padding: 8px 18px; border-radius: 100px;
  margin-bottom: 22px; letter-spacing: .04em;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #6EE7B7; animation: blink 2s ease-in-out infinite; }
.hero-content { width: 100%; }
.trust-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px; flex-wrap: wrap; justify-content: center;
}
.avatars { display: flex; }
.avatar-item {
  width: 30px; height: 30px; border-radius: 50%;
  overflow: hidden; border: 2px solid rgba(255,255,255,.15);
  margin-left: -8px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.avatar-item:first-child { margin-left: 0; }
.avatar-item svg { display: block; width: 100%; height: 100%; }
.avatar-item img { display: block; width: 100%; height: 100%; object-fit: cover; }
.badge-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.trust-text { font-family: var(--body); font-size: .78rem; color: rgba(255,255,255,.5); }
.trust-text strong { color: rgba(255,255,255,.8); }
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 700;
  color: #fff; line-height: 1.06; margin-bottom: 22px;
  letter-spacing: -.03em;
}
.hero-content h1 em, .green-italic {
  font-style: italic; color: #6EE7B7;
  font-family: var(--serif); font-weight: 600;
}
.hero-sub {
  font-family: var(--body); font-size: 1.05rem; color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 32px; max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn-primary { padding: 16px 32px; font-size: 1rem; }
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.75);
  padding: 16px 28px; font-size: 1rem;
}
.hero-actions .btn-outline:hover { border-color: #6EE7B7; color: #6EE7B7; background: rgba(34,136,60,.08); }

.hero-stats-band {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin-bottom: 28px; width: 100%;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
}
.hero-stat {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(34,136,60,.07); }
.hero-stat-num {
  font-family: var(--heading); font-size: 1.7rem; font-weight: 700;
  color: #6EE7B7; line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--body); font-size: .68rem; font-weight: 500;
  color: rgba(255,255,255,.4); margin-top: 5px; line-height: 1.3;
}

.hero-trust-items {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; justify-content: center;
}
.trust-item {
  font-family: var(--body); font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 6px;
}
.chk {
  width: 16px; height: 16px; background: rgba(34,136,60,.5); color: #6EE7B7;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 800; flex-shrink: 0;
  border: 1px solid rgba(34,136,60,.6);
}
.hero-trust-line {
  font-family: var(--body); font-size: .78rem; color: rgba(255,255,255,.3); margin-top: 8px;
}
.hero-trust-line strong { color: rgba(255,255,255,.6); }

.hero-ticker {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 32px; padding: 12px 20px;
  background: rgba(34,136,60,.08); border: 1px solid rgba(34,136,60,.2);
  border-radius: 100px; width: fit-content; margin-left: auto; margin-right: auto;
}
.hero-ticker-dot { width: 7px; height: 7px; border-radius: 50%; background: #6EE7B7; animation: blink 1.5s ease-in-out infinite; flex-shrink: 0; }
.hero-ticker-text { font-family: var(--body); font-size: .75rem; color: rgba(255,255,255,.55); }
.hero-ticker-text strong { color: #6EE7B7; font-weight: 700; }

/* ═══ LOGOS STRIPS ═══ */
.logos-section {
  padding: 10px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-strip {
  overflow: hidden; position: relative; padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos-strip + .logos-strip {
  border-top: 1px dashed rgba(34,136,60,.1);
  margin-top: 4px; padding-top: 10px;
}
.logos-label {
  text-align: center; font-family: var(--body); font-size: .68rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding: 8px 0 2px;
}
.logos-track {
  display: flex; gap: 10px; width: max-content;
  animation: scroll-ltr 28s linear infinite;
}
.logos-track.rtl { animation: scroll-rtl 32s linear infinite; }
.logos-track:hover { animation-play-state: paused; }
@keyframes scroll-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scroll-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.logo-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; background: var(--green-light);
  border: 1px solid rgba(34,136,60,.15); border-radius: 100px;
  font-family: var(--heading); font-size: .78rem; font-weight: 700;
  color: var(--green-deep); white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.logo-pill:hover { background: #d4edda; border-color: var(--green); }
.logo-pill-icon { font-size: .9rem; }

/* ═══ PROBLEM SECTION ═══ */
.problem-section { padding: 96px 5vw; background: #fff; }
.problem-section .sw { max-width: 1200px; margin: 0 auto; }
.problem-header { text-align: center; margin-bottom: 52px; }
.problem-section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 900;
  color: var(--dark); margin-bottom: 14px; line-height: 1.1;
}
.problem-section h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.section-sub { font-family: var(--body); font-size: .95rem; color: var(--muted); margin-bottom: 52px; line-height: 1.6; }

.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
}
.problem-list { display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--cream-2); border: 1px solid var(--border);
  border-radius: 14px; transition: all .25s ease; flex: 1;
}
.problem-item:hover { border-color: rgba(34,136,60,.3); background: var(--green-light); transform: translateX(4px); }
.pi-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pi-title { font-family: var(--heading); font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.pi-desc { font-family: var(--body); font-size: .82rem; color: var(--muted); line-height: 1.6; }

.solution-card {
  background: linear-gradient(160deg, #0d2b17 0%, #0a1f10 100%);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.2), 0 0 0 1px rgba(34,136,60,.2);
}
.sc-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(34,136,60,.15);
  display: flex; align-items: center; justify-content: space-between;
}
.sc-header-title {
  font-family: var(--heading); font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9);
}
.sc-live { display: flex; align-items: center; gap: 6px; font-family: var(--body); font-size: .72rem; font-weight: 700; color: #6EE7B7; }
.sc-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #6EE7B7; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.sc-body { padding: 24px 28px; }
.sc-pipeline { display: flex; flex-direction: column; gap: 3px; margin-bottom: 22px; }
.sc-stage {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  transition: all .2s ease; position: relative; overflow: hidden;
}
.sc-stage::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--green); border-radius: 0 3px 3px 0;
  opacity: 0; transition: opacity .2s;
}
.sc-stage:hover { background: rgba(34,136,60,.08); border-color: rgba(34,136,60,.2); }
.sc-stage:hover::before { opacity: 1; }
.sc-stage-icon { font-size: .9rem; flex-shrink: 0; }
.sc-stage-info { flex: 1; }
.sc-stage-name { font-family: var(--heading); font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9); }
.sc-stage-detail { font-family: var(--body); font-size: .65rem; color: rgba(255,255,255,.45); margin-top: 1px; }
.sc-stage-arrow { font-family: var(--body); font-size: .65rem; color: #6EE7B7; font-weight: 700; white-space: nowrap; }
.sc-connector {
  width: 2px; height: 8px; background: rgba(34,136,60,.3);
  margin-left: 27px; border-radius: 1px;
}

.sc-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.sc-metric {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 14px 10px; text-align: center;
}
.sc-metric-val {
  font-family: var(--heading); font-size: 1.3rem; font-weight: 900;
  color: #6EE7B7; line-height: 1;
}
.sc-metric-lbl { font-family: var(--body); font-size: .6rem; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.3; }

.sc-checks { display: flex; flex-direction: column; gap: 8px; }
.sc-check {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.65);
}
.sc-check-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(34,136,60,.3); border: 1px solid rgba(34,136,60,.5);
  color: #6EE7B7; display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; flex-shrink: 0;
}
.sc-cta { padding: 20px 28px; border-top: 1px solid rgba(34,136,60,.15); }
.sc-cta .btn-primary { width: 100%; justify-content: center; padding: 14px; }

/* ═══ SERVICES ═══ */
.services-section { padding: 96px 5vw; background: var(--cream); }
.services-section .sw { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header h2 { font-size: clamp(1.9rem,3.5vw,2.6rem); font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.services-header h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.services-header .section-sub { margin-bottom: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: all .3s var(--ease);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,136,60,.05) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { border-color: rgba(34,136,60,.35); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(34,136,60,.12); }
.service-card:hover::after { opacity: 1; }
.sc-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--body); font-size: .62rem; font-weight: 800;
  letter-spacing: .08em; color: #fff; background: var(--green);
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.sc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.service-card > p { font-family: var(--body); font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.sc-features { display: flex; flex-direction: column; gap: 6px; }
.sc-feature {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: .78rem; color: #374151;
}
.sc-feature-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0;
}

/* ═══ PROCESS ═══ */
.process-section { padding: 96px 5vw; background: #fff; }
.process-section .sw { max-width: 1200px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 56px; }
.process-header h2 { font-size: clamp(1.9rem,3.5vw,2.6rem); font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.process-header h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.process-steps-wrap {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start;
}
.ps-card {
  background: #fff; border: 1px solid #e5eae5; border-radius: 18px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}
.ps-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(34,136,60,.12); }
.ps-card--1 { margin-top: 0; }
.ps-card--2 { margin-top: 28px; }
.ps-card--3 { margin-top: 56px; }
.ps-card--4 { margin-top: 28px; }
.ps-visual {
  padding: 24px 20px 18px; background: #fafcfa;
  border-bottom: 1px solid #f0f4f0; min-height: 240px;
}
.ps-card-body { padding: 20px 20px 24px; }
.ps-step-num {
  font-size: 2.2rem; font-weight: 900; color: #e8f0e8;
  line-height: 1; margin-bottom: 8px; font-family: var(--heading);
}
.ps-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; line-height: 1.2; }
.ps-card-body p { font-family: var(--body); font-size: .8rem; color: var(--muted); line-height: 1.55; margin: 0; }

.ps-checklist { display: flex; flex-direction: column; gap: 5px; }
.ps-check-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: #fff; border: 1px solid #eaeaea;
  border-radius: 8px; font-family: var(--body); font-size: .72rem;
  font-weight: 500; color: #3a3a3a; transition: border-color .2s;
}
.ps-check-row:hover { border-color: rgba(34,136,60,.3); }
.ps-check-circle {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid #d1d5db; flex-shrink: 0;
}
.ps-check-arr { margin-left: auto; color: #9ca3af; font-size: .75rem; }

.ps-zoom-avatars {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 12px 0 14px;
}
.ps-zoom-av { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ps-zoom-av svg { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #e5e7eb; }
.ps-zoom-label { font-family: var(--body); font-size: .62rem; font-weight: 600; color: var(--muted); }
.ps-zoom-center {
  width: 48px; height: 48px; background: var(--green-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
  border: 2px solid rgba(34,136,60,.2);
}
.ps-zoom-tools { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }
.ps-zt {
  background: #f0f0f0; border-radius: 50%; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
}

.ps-browser { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.ps-browser-bar { background: #f3f4f6; padding: 6px 10px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #e5e7eb; }
.ps-b-dots { display: flex; gap: 4px; }
.ps-bd { width: 8px; height: 8px; border-radius: 50%; }
.ps-bd.r{background:#ff5f57}.ps-bd.y{background:#febc2e}.ps-bd.g{background:#28c840}
.ps-b-addr { flex:1; background:#fff; border-radius:4px; height:14px; font-family: var(--body); font-size:.58rem; color:#6b7280; display:flex; align-items:center; padding:0 6px; border:1px solid #e5e7eb; }
.ps-browser-body { display:flex; height:80px; }
.ps-b-sidebar { width:24px; background:#1a1a2e; padding:8px 4px; display:flex; flex-direction:column; gap:5px; }
.ps-b-sitem { height:5px; background:rgba(255,255,255,.15); border-radius:2px; }
.ps-b-sitem.active{background:#22883C}
.ps-b-main { flex:1; padding:8px 10px; display:flex; flex-direction:column; gap:4px; }
.ps-b-hero { height:24px; background:linear-gradient(135deg,#e8f5e9,#d0f0d8); border-radius:4px; margin-bottom:4px; }
.ps-b-row{display:flex;gap:5px}
.ps-b-block{height:12px;background:#f0f0f0;border-radius:3px}
.ps-b-block.w60{width:60%}.ps-b-block.w35{width:35%}
.ps-b-bar{height:5px;background:#e9e9e9;border-radius:3px}
.ps-b-bar.w80{width:80%}.ps-b-bar.w55{width:55%}
.ps-platform-logos { display:flex; gap:5px; margin-bottom:8px; flex-wrap:wrap; }
.ps-plogo { font-family:var(--body); font-size:.58rem; font-weight:700; color:#6b7280; background:#f3f4f6; border:1px solid #e5e7eb; padding:2px 7px; border-radius:4px; }
.ps-accordion{display:flex;flex-direction:column;gap:2px}
.ps-acc-item { display:flex; justify-content:space-between; align-items:center; background:#fff; border:1px solid #eaeaea; border-radius:6px; padding:6px 9px; font-family:var(--body); font-size:.68rem; font-weight:600; color:#374151; }
.ps-acc-item.active{background:#f0faf2;border-color:#a7d9b2;color:#1a6b2f}
.ps-acc-detail{font-family:var(--body);font-size:.62rem;color:#6b7280;padding:4px 9px 5px;background:var(--cream);border:1px solid #eaeaea;border-top:none;border-radius:0 0 5px 5px;margin-top:-3px;margin-bottom:2px}
.ps-acc-arrow{color:#9ca3af;font-size:.75rem}

.ps-gauge-wrap{display:flex;flex-direction:column;align-items:center;margin-bottom:14px}
.ps-gauge{width:110px;filter:drop-shadow(0 4px 12px rgba(34,136,60,.2))}
.ps-gauge-arc{stroke-dasharray:130;stroke-dashoffset:130;animation:gauge-fill 1.5s 0.3s ease-out forwards}
@keyframes gauge-fill{from{stroke-dashoffset:130}to{stroke-dashoffset:15}}
.ps-gauge-labels{display:flex;justify-content:space-between;width:100px;font-family:var(--body);font-size:.6rem;font-weight:600;color:#9ca3af;margin-top:2px}
.ps-gl-fast{color:#22883C}
.ps-test-tags{display:flex;flex-wrap:wrap;gap:5px;justify-content:center}
.ps-ttag{font-family:var(--body);font-size:.62rem;font-weight:600;padding:4px 9px;border-radius:100px;animation:tag-pop .4s ease both}
.ps-ttag:nth-child(1){background:#f0faf2;border:1px solid #c8e6c9;color:#1a6b2f;animation-delay:.1s}
.ps-ttag:nth-child(2){background:#e3f2fd;border:1px solid #90caf9;color:#1565c0;animation-delay:.2s}
.ps-ttag:nth-child(3){background:#fce4ec;border:1px solid #f48fb1;color:#880e4f;animation-delay:.3s}
.ps-ttag:nth-child(4){background:#fff8e1;border:1px solid #ffe082;color:#f57f17;animation-delay:.4s}
.ps-ttag:nth-child(5){background:#f3e5f5;border:1px solid #ce93d8;color:#6a1b9a;animation-delay:.5s}
.ps-ttag:nth-child(6){background:#f0faf2;border:1px solid #c8e6c9;color:#1a6b2f;animation-delay:.6s}
@keyframes tag-pop{from{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}

.ps-live-badge{font-family:var(--body);font-size:.56rem;font-weight:700;color:#22883C;background:#e8f5e9;padding:2px 6px;border-radius:4px;white-space:nowrap}
.ps-launch-body{display:flex;gap:10px;padding:10px}
.ps-launch-left{display:flex;flex-direction:column;gap:5px;flex-shrink:0;align-items:center}
.ps-launch-bar{height:5px;background:#e9e9e9;border-radius:3px}
.ps-launch-bar.w90{width:64px}.ps-launch-bar.w70{width:50px}.ps-launch-bar.w55{width:38px}
.ps-score-ring{position:relative;width:48px;height:48px;margin-top:4px}
.ps-score-ring svg{width:100%;height:100%}
.ps-score-arc{animation:score-fill 1.5s ease-out forwards}
@keyframes score-fill{from{stroke-dashoffset:143}to{stroke-dashoffset:14}}
.ps-score-ring span{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-family:var(--heading);font-size:.68rem;font-weight:800;color:#22883C}
.ps-launch-checklist{flex:1;display:flex;flex-direction:column;gap:5px}
.ps-lc-item{display:flex;align-items:flex-start;gap:6px;background:var(--cream);border:1px solid #e9e9e9;border-radius:6px;padding:5px 7px}
.ps-lc-check{width:15px;height:15px;background:#22883C;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.55rem;font-weight:700;flex-shrink:0;margin-top:1px}
.ps-lc-title{font-family:var(--heading);font-size:.65rem;font-weight:700;color:#1a1a1a;line-height:1.3}
.ps-lc-sub{font-family:var(--body);font-size:.58rem;color:#9ca3af}

/* ═══ CASE STUDIES GRID (homepage) ═══ */
.work-section { padding: 96px 5vw; background: var(--dark); }
.work-section .sw { max-width: 1200px; margin: 0 auto; }
.work-header { text-align: center; margin-bottom: 52px; }
.work-header h2 { font-size: clamp(1.9rem,3.5vw,2.6rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
.work-header h2 em { font-style: italic; color: #6EE7B7; font-family: var(--serif); }
.work-header .section-sub { color: rgba(255,255,255,.5); margin-bottom: 0; }
.work-header .section-label { color: #6EE7B7; background: rgba(110,231,183,.1); border-color: rgba(110,231,183,.2); }

.work-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.work-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; overflow: hidden;
  transition: all .3s var(--ease); display: block; text-decoration: none;
  position: relative;
}
.work-card:hover {
  border-color: rgba(110,231,183,.25); transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

.wc-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: #111;
}
.wc-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block; filter: grayscale(15%) brightness(.9);
  transition: transform .5s ease, filter .4s ease;
}
.work-card:hover .wc-thumb img { transform: scale(1.04); filter: grayscale(0%) brightness(1); }

.wc-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,14,7,.95) 100%);
}
.wc-thumb-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--body); font-size: .65rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(34,136,60,.85); color: #fff;
  padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.wc-thumb-metric {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(110,231,183,.3); border-radius: 10px;
  padding: 8px 14px; text-align: center;
}
.wc-thumb-metric-val {
  font-family: var(--heading); font-size: 1.2rem; font-weight: 900; color: #6EE7B7; line-height: 1;
}
.wc-thumb-metric-lbl { font-family: var(--body); font-size: .58rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.wc-body { padding: 22px 24px 24px; }
.wc-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.wc-client {
  font-family: var(--heading); font-size: .72rem; font-weight: 800;
  color: #6EE7B7; letter-spacing: .05em; text-transform: uppercase;
}
.wc-sep { color: rgba(255,255,255,.2); font-size: .7rem; }
.wc-industry { font-family: var(--body); font-size: .72rem; color: rgba(255,255,255,.4); }
.work-card h3 {
  font-family: var(--heading); font-size: 1.08rem; font-weight: 800;
  color: rgba(255,255,255,.92); margin-bottom: 9px; line-height: 1.3;
}
.wc-desc { font-family: var(--body); font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.65; margin-bottom: 16px; }
.wc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.wc-tag {
  font-family: var(--body); font-size: .65rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.5);
}
.wc-stat-row {
  display: flex; gap: 20px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.wc-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.wc-stat strong { font-family: var(--heading); font-size: .92rem; font-weight: 800; color: rgba(255,255,255,.85); }
.wc-stat span { font-family: var(--body); font-size: .65rem; color: rgba(255,255,255,.4); }
.work-more { text-align: center; margin-top: 40px; }

/* ═══ REVIEWS ═══ */
.reviews-section { padding: 96px 5vw; background: var(--cream); }
.reviews-section .sw { max-width: 1200px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header h2 { font-size: clamp(1.9rem,3.5vw,2.6rem); font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.reviews-header h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.reviews-header .section-sub { margin-bottom: 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.review-card {
  background: #fff; border: 1px solid #e8eee8; border-radius: 14px;
  padding: 22px 20px; transition: all .3s var(--ease);
  break-inside: avoid;
}
.review-card:hover { border-color: rgba(34,136,60,.2); box-shadow: 0 8px 32px rgba(34,136,60,.07); transform: translateY(-3px); }

.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar-img {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; border: 2px solid #e8eee8;
}
.review-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-name { font-family: var(--heading); font-size: .9rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.review-role { font-family: var(--body); font-size: .72rem; color: var(--muted); margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: .8rem; letter-spacing: 1px; margin-bottom: 10px; }

.review-text {
  font-family: var(--body); font-size: .85rem; color: #374151;
  line-height: 1.7; margin: 0;
}
.review-highlight {
  background: rgba(34,136,60,.12);
  border-bottom: 2px solid rgba(34,136,60,.35);
  padding: 1px 2px; border-radius: 2px;
  color: #0f4d22; font-weight: 500;
}

/* ═══ ABOUT ═══ */
.about-section { background: #0a0a0a; padding: 96px 5vw; position: relative; overflow: hidden; }
.about-bg { position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 30% 50%,rgba(34,136,60,.06) 0%,transparent 70%);pointer-events:none; }
.about-section .sw { max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: stretch; }

.about-image-wrap { position: relative; min-height: 520px; }
.about-photo-frame {
  position: absolute; inset: 0;
  border-radius: 20px; overflow: hidden; background: #111;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
}
.about-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.about-photo-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--heading); font-weight: 900; font-size: 5rem; color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.about-tag { margin-bottom: 18px; }
.about-tag .section-label { color: #6EE7B7; background: rgba(110,231,183,.08); border-color: rgba(110,231,183,.2); }
.about-eyebrow {
  font-family: var(--heading); font-size: 1.5rem; font-weight: 800;
  color: rgba(255,255,255,.8); margin-bottom: 12px; line-height: 1.2;
}
.about-eyebrow em {
  font-style: italic; color: #6EE7B7; font-family: var(--serif); font-weight: 400;
}
.about-content h2 {
  font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 900; color: #fff;
  margin-bottom: 20px; line-height: 1.1;
}
.about-bio { font-family: var(--body); font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.75; }
.about-bio strong { color: rgba(255,255,255,.85); font-weight: 600; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.about-badge {
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); transition: all .2s ease;
}
.about-badge:hover { background: rgba(34,136,60,.15); border-color: rgba(34,136,60,.3); color: #6EE7B7; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.about-stat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 16px 14px; text-align: center;
  transition: border-color .2s;
}
.about-stat:hover { border-color: rgba(34,136,60,.3); }
.about-stat-val { font-family: var(--heading); font-size: 1.5rem; font-weight: 900; color: #6EE7B7; }
.about-stat-lbl { font-family: var(--body); font-size: .65rem; color: rgba(255,255,255,.4); margin-top: 4px; line-height: 1.3; }

/* ═══ FAQ ═══ */
.faq-section { padding: 96px 5vw; background: #fff; }
.faq-section .sw { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: clamp(1.9rem,3.5vw,2.4rem); font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.faq-header h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(34,136,60,.3); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; background: transparent; cursor: pointer;
  font-family: var(--heading); font-size: .95rem; font-weight: 700; color: var(--dark);
  text-align: left; gap: 12px; transition: background .2s;
}
.faq-btn:hover { background: var(--green-light); }
.faq-btn[aria-expanded="true"] { background: var(--green-light); color: var(--green-deep); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--border); color: var(--muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease; font-weight: 400; line-height: 1;
}
.faq-btn[aria-expanded="true"] .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner {
  padding: 0 22px 20px; font-family: var(--body); font-size: .88rem;
  color: var(--muted); line-height: 1.7;
}

/* ═══ CTA ═══ */
.cta-section {
  padding: 96px 5vw; background: linear-gradient(160deg, #0d2b17 0%, #0a1a0c 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-glow { position:absolute;top:-20%;left:50%;transform:translateX(-50%);width:80vw;height:60vh;background:radial-gradient(ellipse,rgba(34,136,60,.2) 0%,transparent 70%);pointer-events:none; }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner .section-label { color: #6EE7B7; background: rgba(110,231,183,.1); border-color: rgba(110,231,183,.2); }
.cta-inner h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff; margin-bottom: 18px; line-height: 1.1; }
.cta-inner p { font-family: var(--body); font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 32px; }
.cta-feats { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.cta-feat { display: flex; align-items: center; gap: 7px; font-family: var(--body); font-size: .82rem; color: rgba(255,255,255,.65); }
.cta-ck { font-size: .65rem; color: #6EE7B7; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-family: var(--body); font-size: .78rem; color: rgba(255,255,255,.35); font-style: italic; }

/* ═══ FOOTER ═══ */
.site-footer {
  position: relative; overflow: hidden;
  background: #050e06; padding: 72px 5vw 28px;
  border-top: 1px solid rgba(34,136,60,.14);
}
.footer-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 90%; height: 420px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, var(--green-glow), transparent 70%);
}
.footer-top {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { max-width: 320px; }
.footer-logo { display: inline-flex; flex-direction: column; text-decoration: none; margin-bottom: 16px; }
.footer-logo-name {
  font-family: var(--heading); font-weight: 800; font-size: 1.25rem;
  color: var(--white); letter-spacing: -.01em; line-height: 1.1;
}
.footer-logo-role {
  font-family: var(--body); font-size: .76rem; font-weight: 600;
  color: #6EE7B7; letter-spacing: .02em; margin-top: 3px;
}
.footer-tagline {
  font-family: var(--body); font-size: .9rem; line-height: 1.6;
  color: rgba(255,255,255,.55); margin: 0 0 16px;
}
.footer-meta { font-family: var(--body); font-size: .82rem; color: rgba(255,255,255,.4); margin: 4px 0; }
.footer-meta a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-meta a:hover { color: #6EE7B7; }
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-family: var(--body); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin: 0 0 18px;
}
.footer-col a {
  font-family: var(--body); font-size: .9rem; color: rgba(255,255,255,.6);
  text-decoration: none; padding: 6px 0; transition: color .2s, transform .2s;
}
.footer-col a:hover { color: #6EE7B7; transform: translateX(3px); }
.footer-cta-col { max-width: 280px; }
.footer-cta-text {
  font-family: var(--body); font-size: .88rem; line-height: 1.6;
  color: rgba(255,255,255,.55); margin: 0 0 20px;
}
.footer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 4px;
  background: linear-gradient(135deg, var(--green-mid), var(--green) 55%, var(--green-deep));
  color: #fff; border: 0;
  font-family: var(--heading); font-size: .95rem; font-weight: 700; letter-spacing: .01em;
  padding: 16px 26px; border-radius: 14px;
  box-shadow: 0 10px 30px -8px rgba(34,136,60,.6), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.footer-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s var(--ease);
}
.footer-cta-btn::after {
  content: '→'; font-size: 1.05rem; line-height: 1;
  transition: transform .25s var(--ease);
}
.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -10px rgba(34,136,60,.8), inset 0 1px 0 rgba(255,255,255,.25);
}
.footer-cta-btn:hover::before { transform: translateX(120%); }
.footer-cta-btn:hover::after { transform: translateX(4px); }
.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-family: var(--body); font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  font-family: var(--body); font-size: .76rem; font-weight: 600;
  color: rgba(255,255,255,.5); text-decoration: none;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  transition: all .2s;
}
.footer-social-link:hover { color: var(--white); border-color: var(--green); background: rgba(34,136,60,.15); }

/* ═══════════════════════════════════════════════════════
   CASE STUDY PAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* Breadcrumb Bar */
.breadcrumb-bar {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 5vw;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 46px;
}
.breadcrumb-left {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: .78rem;
}
.breadcrumb-left a { color: var(--muted); transition: color .2s; }
.breadcrumb-left a:hover { color: var(--green); }
.breadcrumb-sep { color: #d1d5db; font-size: .7rem; }
.breadcrumb-current { color: var(--dark); font-weight: 600; }
.breadcrumb-nav { display: flex; align-items: center; gap: 6px; }
.breadcrumb-nav a {
  font-family: var(--body); font-size: .75rem; font-weight: 600;
  color: var(--muted); padding: 5px 12px; border-radius: 7px;
  border: 1px solid var(--border); transition: all .2s ease;
  display: flex; align-items: center; gap: 5px;
}
.breadcrumb-nav a:hover { border-color: var(--green); color: var(--green); }

/* CS Hero */
.cs-hero {
  background: #060e07; padding: 180px 5vw 80px;
  position: relative; overflow: hidden;
}
.cs-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(34,136,60,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,136,60,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 100%);
  pointer-events: none;
}
.cs-hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 70vh;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(34,136,60,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cs-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.cs-cat-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #6EE7B7; background: rgba(34,136,60,.15);
  border: 1px solid rgba(34,136,60,.35); padding: 6px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.cs-hero h1 {
  font-family: var(--heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.08;
  letter-spacing: -.025em; margin-bottom: 18px;
}
.cs-hero h1 em { font-style: italic; color: #6EE7B7; font-family: var(--serif); }
.cs-hero-desc {
  font-family: var(--body); font-size: .95rem; color: rgba(255,255,255,.52);
  line-height: 1.75; margin-bottom: 28px; max-width: 520px;
}
.cs-client-row {
  display: flex; align-items: center; gap: 14px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cs-client-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(34,136,60,.4); flex-shrink: 0;
}
.cs-client-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cs-client-name { font-family: var(--heading); font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9); }
.cs-client-title { font-family: var(--body); font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }

.cs-metrics-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 28px 24px; backdrop-filter: blur(12px);
}
.cs-metrics-card-title {
  font-family: var(--body); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.cs-metric-list { display: flex; flex-direction: column; gap: 16px; }
.cs-metric-item {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.cs-metric-item:last-child { padding-bottom: 0; border-bottom: none; }
.cs-metric-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(34,136,60,.2); border: 1px solid rgba(34,136,60,.3);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  flex-shrink: 0;
}
.cs-metric-val {
  font-family: var(--heading); font-size: 1.4rem; font-weight: 900; color: #6EE7B7; line-height: 1;
}
.cs-metric-lbl { font-family: var(--body); font-size: .68rem; color: rgba(255,255,255,.4); margin-top: 3px; }

/* CS Cover */
.cs-cover {
  background: #0a0a0a; padding: 0 5vw 64px;
}
.cs-cover-inner { max-width: 1100px; margin: 0 auto; }
.cs-cover-img {
  width: 100%; border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/7; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.cs-cover-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: brightness(.85);
}
.cs-cover-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,7,.3) 0%, transparent 60%);
}

/* CS Section Label */
.cs-section-label {
  font-family: var(--body); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
  margin-bottom: 10px; display: block;
}

/* CS Overview */
.cs-overview {
  padding: 80px 5vw; background: #fff;
  border-bottom: 1px solid var(--border);
}
.cs-overview-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cs-overview h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.15; }
.cs-overview h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.cs-overview-body { font-family: var(--body); font-size: .92rem; color: #4b5563; line-height: 1.8; }
.cs-overview-body p + p { margin-top: 14px; }
.cs-detail-list { display: flex; flex-direction: column; gap: 0; }
.cs-detail-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border); gap: 20px;
}
.cs-detail-row:first-child { padding-top: 0; }
.cs-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.cs-detail-key { font-family: var(--body); font-size: .78rem; color: var(--muted); font-weight: 500; flex-shrink: 0; }
.cs-detail-val { font-family: var(--heading); font-size: .88rem; font-weight: 700; color: var(--dark); text-align: right; }
.cs-tag-list { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.cs-tag {
  font-family: var(--body); font-size: .68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: var(--green-light); border: 1px solid rgba(34,136,60,.2); color: var(--green-deep);
}

/* CS Challenge */
.cs-challenge { padding: 80px 5vw; background: var(--cream); }
.cs-challenge-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cs-challenge h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.cs-challenge-body { font-family: var(--body); font-size: .92rem; color: #4b5563; line-height: 1.8; margin-bottom: 24px; }
.cs-pain-list { display: flex; flex-direction: column; gap: 10px; }
.cs-pain-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; transition: border-color .2s;
}
.cs-pain-item:hover { border-color: rgba(34,136,60,.3); }
.cs-pain-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: #fee2e2; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; margin-top: 1px;
}
.cs-pain-title { font-family: var(--heading); font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.cs-pain-desc { font-family: var(--body); font-size: .78rem; color: var(--muted); line-height: 1.5; }

.cs-challenge-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cs-challenge-img-main { grid-column: 1/-1; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.cs-challenge-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.9); }
.cs-challenge-img-sm { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.cs-challenge-img-sm img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.9); }

/* CS Pull Quote */
.cs-quote-band {
  background: var(--green-light); border-top: 1px solid rgba(34,136,60,.15);
  border-bottom: 1px solid rgba(34,136,60,.15); padding: 56px 5vw;
}
.cs-quote-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cs-quote-mark { font-size: 3.5rem; color: rgba(34,136,60,.2); font-family: var(--serif); line-height: 1; margin-bottom: 8px; }
.cs-quote-text {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--green-dark); line-height: 1.6; font-weight: 400; margin-bottom: 20px;
}
.cs-quote-author { font-family: var(--body); font-size: .82rem; color: var(--muted); font-weight: 500; }
.cs-quote-author strong { color: var(--dark); font-weight: 700; }

/* CS Solution */
.cs-solution { padding: 80px 5vw; background: #fff; }
.cs-solution-inner { max-width: 1100px; margin: 0 auto; }
.cs-solution-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 56px; align-items: start; }
.cs-solution h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.cs-solution h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.cs-solution-body { font-family: var(--body); font-size: .92rem; color: #4b5563; line-height: 1.8; }

.cs-solution-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cs-solution-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.cs-solution-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-solution-img.tall { aspect-ratio: 3/4; }

.cs-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.cs-step {
  padding: 22px 20px; background: var(--cream-2); border: 1px solid var(--border);
  border-radius: 14px; transition: all .25s ease; position: relative;
}
.cs-step:hover { border-color: rgba(34,136,60,.35); background: var(--green-light); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(34,136,60,.1); }
.cs-step-num {
  font-family: var(--heading); font-size: 2.5rem; font-weight: 900;
  color: #e8f0e8; line-height: 1; margin-bottom: 12px;
}
.cs-step-icon { font-size: 1.4rem; margin-bottom: 10px; }
.cs-step h4 { font-size: .92rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.cs-step p { font-family: var(--body); font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* CS Tools */
.cs-tools { padding: 72px 5vw; background: var(--cream); border-top: 1px solid var(--border); }
.cs-tools-inner { max-width: 1100px; margin: 0 auto; }
.cs-tools h2 { font-size: 1.6rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.cs-tools-sub { font-family: var(--body); font-size: .88rem; color: var(--muted); margin-bottom: 36px; }
.cs-tools-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cs-tool-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 16px; text-align: center; transition: all .25s ease;
}
.cs-tool-card:hover { border-color: rgba(34,136,60,.3); box-shadow: 0 6px 24px rgba(34,136,60,.08); transform: translateY(-3px); }
.cs-tool-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cs-tool-name { font-family: var(--heading); font-size: .82rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.cs-tool-desc { font-family: var(--body); font-size: .68rem; color: var(--muted); line-height: 1.5; }

/* CS Results */
.cs-results { padding: 80px 5vw; background: #060e07; }
.cs-results-inner { max-width: 1100px; margin: 0 auto; }
.cs-results-header { text-align: center; margin-bottom: 52px; }
.cs-results-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cs-results-header h2 em { font-style: italic; color: #6EE7B7; font-family: var(--serif); }
.cs-results-header p { font-family: var(--body); font-size: .92rem; color: rgba(255,255,255,.45); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.cs-results-header .cs-section-label { color: #6EE7B7; text-align: center; display: block; }

.cs-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.cs-result-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 30px 24px; text-align: center;
  transition: all .3s ease;
}
.cs-result-card:hover { border-color: rgba(110,231,183,.25); background: rgba(34,136,60,.06); transform: translateY(-4px); }
.cs-result-icon { font-size: 1.6rem; margin-bottom: 14px; }
.cs-result-val {
  font-family: var(--heading); font-size: 2.6rem; font-weight: 900;
  color: #6EE7B7; line-height: 1; margin-bottom: 6px;
}
.cs-result-label { font-family: var(--heading); font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.cs-result-desc { font-family: var(--body); font-size: .75rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.cs-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cs-ba-card {
  border-radius: 16px; padding: 26px 24px;
}
.cs-ba-card.before { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.15); }
.cs-ba-card.after  { background: rgba(34,136,60,.08); border: 1px solid rgba(34,136,60,.25); }
.cs-ba-label {
  font-family: var(--body); font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 7px;
}
.cs-ba-card.before .cs-ba-label { color: #f87171; }
.cs-ba-card.after  .cs-ba-label { color: #6EE7B7; }
.cs-ba-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.cs-ba-list { display: flex; flex-direction: column; gap: 8px; }
.cs-ba-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--body); font-size: .82rem; line-height: 1.5;
}
.cs-ba-card.before .cs-ba-item { color: rgba(255,255,255,.55); }
.cs-ba-card.after  .cs-ba-item { color: rgba(255,255,255,.7); }
.cs-ba-bullet { font-size: .7rem; flex-shrink: 0; margin-top: 3px; }
.cs-ba-card.before .cs-ba-bullet { color: #f87171; }
.cs-ba-card.after  .cs-ba-bullet { color: #6EE7B7; }

/* CS Feedback */
.cs-feedback { padding: 80px 5vw; background: #fff; }
.cs-feedback-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cs-feedback h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900; color: var(--dark); margin-bottom: 24px; }
.cs-feedback h2 em { font-style: italic; color: var(--green); font-family: var(--serif); }
.cs-testimonial {
  background: var(--cream-2); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 26px; position: relative;
}
.cs-testimonial-quote {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: rgba(34,136,60,.15); line-height: 1; margin-bottom: 4px;
}
.cs-testimonial-text {
  font-family: var(--body); font-size: .9rem; color: #374151;
  line-height: 1.75; margin-bottom: 20px;
}
.cs-testimonial-highlight {
  background: rgba(34,136,60,.1); border-bottom: 2px solid rgba(34,136,60,.3);
  padding: 1px 2px; border-radius: 2px; color: #0f4d22; font-weight: 500;
}
.cs-testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.cs-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(34,136,60,.2); flex-shrink: 0; }
.cs-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cs-testimonial-name { font-family: var(--heading); font-size: .88rem; font-weight: 700; color: var(--dark); }
.cs-testimonial-role { font-family: var(--body); font-size: .72rem; color: var(--muted); margin-top: 2px; }
.cs-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; margin-bottom: 6px; }

.cs-feedback-stats { display: flex; flex-direction: column; gap: 16px; }
.cs-feedback-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--cream-2); border: 1px solid var(--border);
  border-radius: 12px; transition: all .2s ease;
}
.cs-feedback-stat:hover { border-color: rgba(34,136,60,.3); background: var(--green-light); }
.cs-feedback-stat-icon { font-size: 1.4rem; flex-shrink: 0; }
.cs-feedback-stat-val { font-family: var(--heading); font-size: 1.3rem; font-weight: 900; color: var(--green); line-height: 1; }
.cs-feedback-stat-lbl { font-family: var(--body); font-size: .75rem; color: var(--muted); margin-top: 3px; }

/* CS Next Case Study */
.cs-next { padding: 64px 5vw; background: var(--cream); border-top: 1px solid var(--border); }
.cs-next-inner { max-width: 1100px; margin: 0 auto; }
.cs-next-label { font-family: var(--body); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.cs-next-card {
  display: flex; align-items: center; gap: 28px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 28px; transition: all .3s ease; text-decoration: none;
}
.cs-next-card:hover { border-color: rgba(34,136,60,.35); box-shadow: 0 10px 40px rgba(34,136,60,.1); transform: translateY(-3px); }
.cs-next-thumb { width: 100px; height: 72px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.cs-next-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-next-eyebrow { font-family: var(--body); font-size: .68rem; font-weight: 700; color: var(--green); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 5px; }
.cs-next-title { font-family: var(--heading); font-size: 1.05rem; font-weight: 800; color: var(--dark); line-height: 1.3; }
.cs-next-meta { font-family: var(--body); font-size: .75rem; color: var(--muted); margin-top: 5px; }
.cs-next-arrow { margin-left: auto; font-size: 1.3rem; color: var(--green); flex-shrink: 0; transition: transform .2s; }
.cs-next-card:hover .cs-next-arrow { transform: translateX(5px); }

/* CS CTA */
.cs-cta {
  padding: 80px 5vw; background: linear-gradient(160deg, #0d2b17 0%, #0a1a0c 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cs-cta-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 70vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(34,136,60,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cs-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cs-cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.cs-cta p { font-family: var(--body); font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; }
.cs-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   SEO LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════ */
.seo-hero {
  min-height: 80svh; padding: 120px 5vw 80px;
  background: #060e07;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.seo-hero-inner {
  max-width: 900px; margin: 0 auto; width: 100%;
  text-align: center; position: relative; z-index: 1;
}
.seo-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
  color: #fff; line-height: 1.08; margin-bottom: 22px;
  letter-spacing: -.03em;
}
.seo-hero h1 em { font-style: italic; color: #6EE7B7; font-family: var(--serif); }
.seo-hero-sub {
  font-family: var(--body); font-size: 1rem; color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.seo-location-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--body); font-size: .75rem; font-weight: 700;
  color: #6EE7B7; background: rgba(34,136,60,.15);
  border: 1px solid rgba(34,136,60,.35); padding: 8px 18px; border-radius: 100px;
  margin-bottom: 22px;
}
.seo-services-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  padding: 80px 5vw; background: var(--cream);
}
.seo-services-inner { max-width: 1100px; margin: 0 auto; }
.seo-content-section {
  padding: 80px 5vw; background: #fff;
}
.seo-content-inner {
  max-width: 800px; margin: 0 auto;
}
.seo-content-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--dark); margin-bottom: 18px; }
.seo-content-inner h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; margin-top: 28px; }
.seo-content-inner p { font-family: var(--body); font-size: .92rem; color: #4b5563; line-height: 1.8; margin-bottom: 16px; }
.seo-content-inner ul { list-style: disc; padding-left: 1.5em; margin-bottom: 16px; }
.seo-content-inner ul li { font-family: var(--body); font-size: .92rem; color: #4b5563; line-height: 1.7; margin-bottom: 6px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .process-steps-wrap { grid-template-columns: repeat(2,1fr); }
  .ps-card--1,.ps-card--2,.ps-card--3,.ps-card--4 { margin-top: 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; align-items: center; }
  .about-image-wrap { min-height: 0; }
  .about-photo-frame { position: static; aspect-ratio: 4/5; max-width: 360px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3,1fr); }

  .cs-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cs-metrics-card { display: block; padding: 26px 20px; }
  .cs-metric-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
  .cs-metric-item { flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; gap: 9px; padding: 4px 10px; border-bottom: none; border-right: 1px solid rgba(255,255,255,.08); }
  .cs-metric-item:last-child { border-right: none; }
  .cs-metric-icon { margin: 0 auto; }
  .cs-metric-val { white-space: nowrap; font-size: 1.5rem; }
  .cs-metric-lbl { margin-top: 0; line-height: 1.35; }
  .cs-overview-inner, .cs-challenge-inner, .cs-solution-header, .cs-feedback-inner { grid-template-columns: 1fr; gap: 36px; }
  .cs-steps { grid-template-columns: repeat(2,1fr); }
  .cs-tools-grid { grid-template-columns: repeat(3,1fr); }
  .cs-results-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .breadcrumb-bar { display: none; }
  .hero-section { padding: 100px 5vw 60px; }
  .hero-content h1 { font-size: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps-wrap { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-cta-col { grid-column: 1 / -1; max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-feats { gap: 12px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-white, .cta-actions .btn-outline { width: 100%; justify-content: center; }
  .section-sub { margin-bottom: 32px; }

  .cs-hero { padding: 130px 5vw 56px; }
  .cs-steps { grid-template-columns: 1fr; }
  .cs-tools-grid { grid-template-columns: repeat(2,1fr); }
  .cs-results-grid { grid-template-columns: 1fr; }
  .cs-ba { grid-template-columns: 1fr; }
  .cs-challenge-imgs { grid-template-columns: 1fr; }
  .cs-challenge-img-main { grid-column: 1; }
  .cs-solution-imgs { grid-template-columns: 1fr; }
  .cs-solution-img.tall { aspect-ratio: 16/9; }
  .cs-cta-actions { flex-direction: column; align-items: center; }
  .cs-cta-actions a { width: 100%; justify-content: center; }
  .cs-next-card { flex-direction: column; align-items: flex-start; }
  .cs-next-arrow { margin-left: 0; }
  .seo-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  :root { --sw: 94vw; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-stat-num { font-size: 1.1rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .sc-metrics { grid-template-columns: repeat(3,1fr); }
  .cs-hero h1 { font-size: 1.8rem; }
  .cs-tools-grid { grid-template-columns: repeat(2,1fr); }
  .cs-metrics-card { padding: 22px 14px; }
  .cs-metric-item { gap: 7px; padding: 4px 6px; }
  .cs-metric-icon { width: 34px; height: 34px; font-size: .92rem; }
  .cs-metric-val { font-size: 1.3rem; }
  .cs-metric-lbl { font-size: .6rem; }
}

/* ═══ WORDPRESS ADMIN BAR OFFSET ═══ */
.admin-bar .site-nav { top: 32px; }
.admin-bar .breadcrumb-bar { top: 104px; }
@media (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
  .admin-bar .breadcrumb-bar { top: 118px; }
}

/* ═══ ALIGNMENTS ═══ */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1em; }
img.alignleft, img.alignright, img.aligncenter { max-width: 100%; height: auto; }

/* ═══ WP GENERATED CLASSES ═══ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--body); font-size: .75rem; color: var(--muted); text-align: center; margin-top: 4px; }
.gallery { margin: 0 -4px; }
.gallery-item { float: left; padding: 4px; }
.gallery-columns-2 .gallery-item { width: 50%; }
.gallery-columns-3 .gallery-item { width: 33.33%; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (legal pages + contact) · added v1.1.0
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg, #060e07);
  padding: 150px 5vw 64px; text-align: center;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero .cs-cat-tag { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--heading); font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.08;
  letter-spacing: -.02em; color: var(--white); margin: 0 0 16px;
}
.page-hero h1 em {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: var(--green-mid);
}
.page-hero p {
  font-family: var(--body); font-size: 1.02rem; line-height: 1.65;
  color: rgba(255,255,255,.62); max-width: 600px; margin: 0 auto;
}
.page-hero-updated {
  font-family: var(--body) !important; font-size: .8rem !important;
  color: rgba(255,255,255,.4) !important; margin-top: 22px !important;
}

/* ═══ LEGAL / GENERIC PAGE PROSE ═══ */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 72px 5vw 96px; }
.legal-content { font-family: var(--body); color: #2a342a; font-size: 1.02rem; line-height: 1.78; }
.legal-content > *:first-child { margin-top: 0; }
.legal-content h2 {
  font-family: var(--heading); font-weight: 800; font-size: 1.6rem;
  color: var(--dark); letter-spacing: -.01em; line-height: 1.2;
  margin: 48px 0 16px; padding-top: 8px;
}
.legal-content h3 {
  font-family: var(--heading); font-weight: 700; font-size: 1.2rem;
  color: var(--dark); margin: 32px 0 12px;
}
.legal-content p { margin: 0 0 18px; }
.legal-content a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--green); }
.legal-content ul, .legal-content ol { margin: 0 0 18px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--dark); font-weight: 700; }
.legal-content hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }
.legal-content blockquote {
  margin: 24px 0; padding: 16px 22px; border-left: 3px solid var(--green);
  background: var(--green-light); border-radius: 0 10px 10px 0;
  font-style: italic; color: #2a342a;
}

/* ═══ CONTACT PAGE ═══ */
.contact-section { background: #fff; padding: 80px 5vw 96px; }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start;
}
.contact-info h2 {
  font-family: var(--heading); font-weight: 800; font-size: 1.9rem;
  letter-spacing: -.02em; color: var(--dark); margin: 0 0 12px;
}
.contact-lead {
  font-family: var(--body); font-size: 1rem; line-height: 1.65;
  color: var(--muted); margin: 0 0 28px;
}
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; background: #fff; transition: all .2s var(--ease);
}
a.contact-method:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 12px 28px -18px var(--green); }
.contact-method-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.1rem;
  background: var(--green-light); color: var(--green-deep);
}
.contact-method-label {
  display: block; font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.contact-method-val { display: block; font-family: var(--body); font-size: .98rem; font-weight: 600; color: var(--dark); }
.contact-assure { display: flex; flex-direction: column; gap: 8px; }
.contact-assure p {
  font-family: var(--body); font-size: .92rem; color: #2a342a; margin: 0;
}
.contact-assure p::first-letter { color: var(--green); font-weight: 700; }

.contact-form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; box-shadow: 0 30px 60px -40px rgba(13,43,23,.35);
}
.contact-form-card h3 {
  font-family: var(--heading); font-weight: 800; font-size: 1.4rem;
  color: var(--dark); margin: 0 0 6px;
}
.contact-form-sub { font-family: var(--body); font-size: .92rem; color: var(--muted); margin: 0 0 24px; }
.contact-fallback {
  font-family: var(--body); font-size: .92rem; line-height: 1.7; color: #2a342a;
  background: var(--green-light); border: 1px dashed rgba(34,136,60,.4);
  border-radius: 12px; padding: 20px 22px;
}
.contact-fallback ol { margin: 10px 0; padding-left: 20px; }
.contact-fallback li { margin-bottom: 6px; }
.contact-fallback a { color: var(--green-deep); font-weight: 600; }

/* ═══ CONTACT FORM 7, on-brand styling ═══ */
.bpb-cf7 .wpcf7 { margin: 0; }
.bpb-cf7 p { margin: 0 0 16px; }
.bpb-cf7 label {
  display: block; font-family: var(--body); font-size: .86rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.bpb-cf7 input[type=text],
.bpb-cf7 input[type=email],
.bpb-cf7 input[type=tel],
.bpb-cf7 input[type=url],
.bpb-cf7 textarea,
.bpb-cf7 select {
  width: 100%; font-family: var(--body); font-size: .96rem; color: var(--dark);
  padding: 13px 15px; border: 1px solid var(--border); border-radius: 11px;
  background: #fff; transition: border-color .2s, box-shadow .2s; box-sizing: border-box;
}
.bpb-cf7 textarea { min-height: 130px; resize: vertical; }
.bpb-cf7 input:focus, .bpb-cf7 textarea:focus, .bpb-cf7 select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.bpb-cf7 input[type=submit],
.bpb-cf7 .wpcf7-submit {
  width: 100%; cursor: pointer; font-family: var(--body); font-size: .98rem; font-weight: 700;
  color: #fff; background: var(--green); border: 0; border-radius: 11px;
  padding: 15px 24px; margin-top: 4px; transition: background .2s, transform .2s;
}
.bpb-cf7 input[type=submit]:hover,
.bpb-cf7 .wpcf7-submit:hover { background: var(--green-deep); transform: translateY(-2px); }
.bpb-cf7 .wpcf7-spinner { margin: 12px auto 0; display: block; }
.bpb-cf7 .wpcf7-response-output {
  font-family: var(--body); font-size: .9rem; border-radius: 10px;
  margin: 16px 0 0 !important; padding: 12px 16px !important;
}
.bpb-cf7 .wpcf7-not-valid-tip { font-family: var(--body); font-size: .8rem; color: #d33; }
.bpb-cf7 .wpcf7-form-control-wrap { display: block; }

/* ═══════════════════════════════════════════════════════
   PROFESSIONAL ICON SYSTEM  (bpb_icon / bpb_brand)
   Inline SVG icons + real brand logos. Layout untouched, 
   icons inherit currentColor and align via existing flex.
   ═══════════════════════════════════════════════════════ */

/* Base, never shrink, sit on the text baseline, no extra line-height */
.bpb-ic, .bpb-brand { flex-shrink: 0; vertical-align: middle; }
svg.bpb-ic, svg.bpb-brand { display: block; }
.bpb-ic { color: inherit; }

/* Section eyebrows: icon inherits the label's colour (green on light, mint on dark) */
.section-label .bpb-ic, .section-label-ic { color: currentColor; }

/* Case-study eyebrows were display:block, make them flex so the icon aligns */
.cs-section-label { display: inline-flex; align-items: center; gap: 7px; }
.cs-results-header .cs-section-label { display: inline-flex; justify-content: center; }

/* Buttons, icon already inherits the button text colour via currentColor */
.btn-ic { margin-left: -1px; }

/* Footer meta rows (location / email) */
.footer-meta-ic { color: var(--green); margin-right: 7px; vertical-align: -2px; }
.footer-meta a:hover .footer-meta-ic { color: #fff; }

/* Logo strip, real brand logos, centred in the pill, in their own brand colours */
.logo-pill-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 0; }
.logo-pill-icon svg { display: block; }

/* Problem cards, green icon that deepens on hover */
.pi-icon { color: var(--green); display: inline-flex; align-items: center; }
.problem-item:hover .pi-icon { color: var(--green-deep); }

/* Solution card (dark), mint icons to pop on the green-black gradient */
.sc-header-title { display: inline-flex; align-items: center; gap: 7px; }
.sc-header-title .bpb-ic { color: #6EE7B7; }
.sc-stage-icon { display: inline-flex; align-items: center; color: #6EE7B7; }

/* Service cards, branded rounded icon tile (matches the contained-icon reference) */
.sc-icon {
  width: 52px; height: 52px; margin-bottom: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(34,136,60,.18);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover .sc-icon { background: #e6f6ea; border-color: rgba(34,136,60,.32); }

/* Process-step decorative icons */
.ps-zoom-center { color: var(--green); }
.ps-zt { color: #475569; }
.ps-zt svg { display: block; }

/* SEO landing location badge, inherits badge colour */
.seo-location-badge .bpb-ic { color: currentColor; }

/* Case-study icon containers */
.cs-pain-icon { color: #dc2626; }
.cs-step-icon, .cs-tool-icon, .cs-feedback-stat-icon {
  color: var(--green); display: inline-flex; align-items: center;
}
.cs-tool-icon svg { display: block; }
.cs-results .cs-result-icon { color: #6EE7B7; display: inline-flex; align-items: center; justify-content: center; }
/* Hero "Results at a Glance" card sits on dark, mint icons to match the values */
.cs-metric-icon { color: #6EE7B7; }
.cs-metric-icon svg { display: block; }

/* ═══════════════════════════════════════════════════════
   PREMIUM UPGRADE LAYER  (v1.4 → v1.5)
   Warm depth, refined motion, micro-interactions.
   Layout unchanged, additive polish only.
   ═══════════════════════════════════════════════════════ */

/* ---- Global typographic polish ---------------------------------------- */
h1, h2, h3 { text-wrap: balance; }
p, li, blockquote { text-wrap: pretty; }
h1 { letter-spacing: -.03em; }
h2 { letter-spacing: -.022em; }
.hero-sub, .section-sub, .seo-hero-sub { text-wrap: pretty; }
::selection { background: rgba(34,136,60,.20); color: #0a0f0a; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 5px; }
/* Stat numbers don't jitter while counting up */
.hero-stat-num, .about-stat-val, .sc-metric-val, .cs-result-val,
.wc-thumb-metric-val, .hero-stat-num *, .cs-feedback-stat-val { font-variant-numeric: tabular-nums; }

/* ---- Ultra-subtle film grain (premium tactile texture) ---------------- */
body::after {
  content: ''; position: fixed; inset: 0;
  z-index: 2147483000; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---- Refined scroll reveals (clean fade + gentle rise, no blur) ------- */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  will-change: opacity, transform;
}
.reveal { transform: translateY(22px); }

/* ---- Soft floating shadows on light-surface cards --------------------- */
.service-card, .review-card, .work-card, .cs-tool-card {
  box-shadow: var(--shadow-sm);
}
.service-card:hover, .review-card:hover, .cs-tool-card:hover { box-shadow: var(--shadow-lg); }
.work-card:hover { box-shadow: var(--shadow-lg); }
.solution-card { box-shadow: 0 30px 80px rgba(6,20,10,.28), 0 0 0 1px rgba(34,136,60,.22); }

/* ---- Smooth hover motion (replaces the springy/overshoot easing) ------ */
/* transform + box-shadow glide together on a gentle ease-out, no bounce */
.service-card, .review-card, .work-card, .cs-tool-card {
  transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out),
              border-color .3s ease, background-color .3s ease;
}
.btn-primary, .btn-white, .btn-outline, .btn-ghost {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .28s ease, color .28s ease, border-color .28s ease;
}

/* ---- Cursor-follow spotlight glow on cards (set via JS: --mx/--my) ----- */
/* isolate creates a stacking context so the z-index:-1 glow sits ABOVE the
   card background but BELOW content, no need to reposition children, which
   would otherwise break absolutely-positioned elements like .sc-badge. */
.service-card, .review-card, .cs-result-card { isolation: isolate; }
.service-card::before, .review-card::before, .cs-result-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%),
              rgba(34,136,60,.16), transparent 60%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.cs-result-card::before { background: radial-gradient(280px circle at var(--mx,50%) var(--my,0%), rgba(110,231,183,.18), transparent 60%); }
.service-card:hover::before, .review-card:hover::before, .cs-result-card:hover::before { opacity: 1; }

/* ---- Magnetic CTAs: smoother lift, springy shadow --------------------- */
.btn-primary, .btn-white { will-change: transform; }
.btn-primary:hover { box-shadow: var(--shadow-green); }

/* ---- Unified, brand-tinted case-study imagery ------------------------- */
.wc-thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(150deg, rgba(34,136,60,.22), rgba(13,43,23,.05) 55%);
  mix-blend-mode: color; opacity: .55; transition: opacity .5s ease;
}
.work-card:hover .wc-thumb::after { opacity: 0; }

/* ---- Trust: risk-reversal guarantee badge ----------------------------- */
.guarantee {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 14px; border-radius: 14px;
  background: var(--green-light); border: 1px solid rgba(34,136,60,.2);
  box-shadow: var(--shadow-sm); text-align: left; max-width: 100%;
}
.guarantee-ic {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--green-mid), var(--green) 60%, var(--green-deep));
  box-shadow: 0 6px 16px rgba(34,136,60,.32);
}
.guarantee-txt { display: flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.25; }
.guarantee-txt strong { font-family: var(--heading); font-size: .9rem; font-weight: 800; color: var(--dark); }
.guarantee-txt span { font-family: var(--body); font-size: .76rem; color: var(--muted); }
.hero-guarantee { margin-top: 26px; }
/* On-dark variant (CTA / footer-dark sections) */
.guarantee--dark { background: rgba(255,255,255,.06); border-color: rgba(110,231,183,.25); box-shadow: none; }
.guarantee--dark .guarantee-txt strong { color: #fff; }
.guarantee--dark .guarantee-txt span { color: rgba(255,255,255,.62); }
.cta-guarantee { margin: 22px auto 0; }

/* (Removed the rotating CTA gradient, the static glow reads cleaner.) */

/* ---- Nav: subtle glass depth once scrolled ---------------------------- */
.site-nav.scrolled { box-shadow: 0 6px 26px rgba(16,40,24,.08); backdrop-filter: saturate(1.4) blur(10px); }

/* ---- Buttons: light sheen sweep on hover ------------------------------ */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease-out); pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* ---- Smooth, quick page-to-page navigation (View Transitions API) ----- */
/* Progressive enhancement: supported browsers cross-fade between page loads
   (e.g. case-study Prev/Next); others navigate normally. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: .26s; animation-timing-function: var(--ease-out); }
::view-transition-new(root) { animation-duration: .26s; animation-timing-function: var(--ease-out); }

/* ---- Reduced-motion: disable all of the above motion ------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-up { opacity: 1 !important; transform: none !important; filter: none !important; }
  .btn-primary::after { display: none; }
  .hero-bg-glow, .hero-ring-1, .hero-ring-2 { transform: translate(-50%,-50%) !important; }
  .hero-bg-glow { transform: translateX(-50%) !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}


/* ═══════════════════════════════════════════════════════
   INTEGRATED COMPONENTS · added v1.6.0
   ═══════════════════════════════════════════════════════ */
/* The three blocks below were moved out of the component files
   (homepage-tools-section.html, quick-contact-widget.html) and the
   contact-form-cf7.txt PART 2, so all styling lives in one place.
   The component markup itself stays in the templates. */

/* ═══ HOMEPAGE FREE-TOOLS STRIP (.bi-tools-strip) ═══ */
/* Re-themed (v1.6.1) to a LIGHT section so the page no longer stacks two
   dark bands (case studies → tools). Mirrors the .service-card light
   pattern and uses the theme's tokens, fonts and Lucide icons. */
.bi-tools-strip{background:#fff;padding:96px 5vw;font-family:var(--body)}
.bi-tools-strip .bi-ts-inner{max-width:1200px;margin:0 auto;text-align:center}
.bi-tools-strip h2{color:var(--dark);font-family:var(--heading);font-size:clamp(1.9rem,3.5vw,2.6rem);font-weight:900;line-height:1.15;letter-spacing:-.5px;margin-top:2px}
.bi-tools-strip h2 em{font-style:italic;font-weight:600;color:var(--green);font-family:var(--serif)}
.bi-tools-strip .bi-ts-sub{color:var(--muted);max-width:600px;margin:14px auto 0;font-size:1.02rem;line-height:1.6}
/* animated flow line */
.bi-ts-flow{display:flex;justify-content:center;align-items:center;gap:0;margin:36px auto 40px;flex-wrap:wrap}
.bi-ts-step{display:flex;align-items:center;gap:0}
.bi-ts-node{background:var(--cream);border:1px solid var(--border);color:var(--dark);font-family:var(--body);font-size:.8rem;font-weight:600;border-radius:999px;padding:9px 16px;white-space:nowrap}
.bi-ts-link{width:34px;height:2px;background:var(--border);position:relative;overflow:hidden}
.bi-ts-link::after{content:"";position:absolute;left:-8px;top:0;width:8px;height:2px;background:var(--green);animation:bi-ts-pulse 2.2s linear infinite}
@keyframes bi-ts-pulse{0%{left:-8px}100%{left:100%}}
.bi-ts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:8px;text-align:left}
.bi-ts-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:28px 24px;text-decoration:none;display:block;position:relative;overflow:hidden;transition:all .3s var(--ease)}
.bi-ts-card:hover{border-color:rgba(34,136,60,.35);transform:translateY(-6px);box-shadow:0 16px 48px rgba(34,136,60,.12)}
.bi-ts-card .bi-ts-ico{width:52px;height:52px;border-radius:14px;background:var(--green-light);border:1px solid rgba(34,136,60,.18);color:var(--green);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.bi-ts-card .bi-ts-ico svg{width:24px;height:24px}
.bi-ts-card strong{color:var(--dark);font-family:var(--heading);font-size:1.05rem;display:block;margin-bottom:6px;font-weight:700}
.bi-ts-card span{color:var(--muted);font-size:.9rem;line-height:1.55;display:block}
.bi-ts-card .bi-ts-go{color:var(--green-deep);font-weight:700;font-size:.86rem;margin-top:14px}
.bi-ts-all{display:inline-flex;align-items:center;gap:8px;margin-top:36px;color:#fff;background:var(--green);border:2px solid var(--green);text-decoration:none;font-family:var(--heading);font-weight:700;font-size:.95rem;padding:14px 30px;border-radius:10px;box-shadow:0 4px 20px rgba(34,136,60,.3);transition:all .25s var(--ease)}
.bi-ts-all:hover{background:var(--green-deep);border-color:var(--green-deep);transform:translateY(-2px);box-shadow:0 8px 32px rgba(34,136,60,.4)}
@media(max-width:760px){.bi-ts-grid{grid-template-columns:1fr}.bi-ts-flow{display:none}.bi-tools-strip{padding:72px 5vw}}


/* ═══ QUICK CONTACT WIDGET (#bi-qc) ═══ */
/* Redesigned (v1.6.1) for clean, even spacing and full responsiveness.
   Uses the theme tokens + fonts; brand colours kept on the channel icons. */
#bi-qc{position:fixed;right:24px;bottom:24px;z-index:99999;font-family:var(--body)}
#bi-qc-btn{width:60px;height:60px;border-radius:50%;background:var(--green-dark);border:none;cursor:pointer;box-shadow:0 10px 28px rgba(13,43,23,.34);display:flex;align-items:center;justify-content:center;transition:transform .2s var(--ease),box-shadow .2s ease;position:relative}
#bi-qc-btn:hover{transform:scale(1.06);box-shadow:0 14px 34px rgba(13,43,23,.42)}
#bi-qc-btn svg{width:26px;height:26px;fill:#fff}
#bi-qc-btn .bi-qc-dot{position:absolute;top:4px;right:4px;width:13px;height:13px;border-radius:50%;background:#3fae5a;border:2.5px solid var(--green-dark)}
#bi-qc-panel{position:absolute;right:0;bottom:78px;width:360px;max-width:calc(100vw - 32px);background:#fff;border-radius:20px;box-shadow:0 24px 60px rgba(13,43,23,.26);overflow:hidden;opacity:0;transform:translateY(14px) scale(.97);transform-origin:bottom right;pointer-events:none;transition:opacity .22s var(--ease-out),transform .22s var(--ease-out)}
#bi-qc.open #bi-qc-panel{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
/* header */
.bi-qc-head{background:linear-gradient(135deg,var(--green-dark),var(--green-deep));color:#fff;padding:22px 20px;display:flex;gap:14px;align-items:center}
.bi-qc-ava{width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.14);display:flex;align-items:center;justify-content:center;font-family:var(--heading);font-weight:800;font-size:1.05rem;letter-spacing:.5px;flex:0 0 auto;border:2px solid rgba(255,255,255,.3);overflow:hidden}
.bi-qc-ava img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.bi-qc-head h4{font-family:var(--heading);font-size:1.05rem;font-weight:700;line-height:1.2;color:#fff}
.bi-qc-head p{font-size:.78rem;color:rgba(255,255,255,.72);display:flex;align-items:center;gap:7px;margin-top:4px}
.bi-qc-head p::before{content:"";width:8px;height:8px;border-radius:50%;background:#4ade80;display:inline-block;box-shadow:0 0 0 3px rgba(74,222,128,.25);flex:0 0 auto}
/* body + rows */
.bi-qc-body{padding:16px}
.bi-qc-intro{font-size:.86rem;color:var(--muted);padding:2px 4px 14px;line-height:1.5}
.bi-qc-item{position:relative;display:flex;align-items:center;gap:14px;padding:13px 40px 13px 14px;border-radius:14px;text-decoration:none;color:var(--dark);border:1px solid var(--border);margin-bottom:10px;transition:border-color .16s ease,background .16s ease,transform .16s ease}
.bi-qc-item:hover{border-color:rgba(34,136,60,.4);background:var(--green-light);transform:translateX(2px)}
.bi-qc-item::after{content:"";position:absolute;right:17px;top:50%;width:8px;height:8px;border-right:2px solid #c2cbc2;border-bottom:2px solid #c2cbc2;transform:translateY(-50%) rotate(-45deg);transition:border-color .16s ease}
.bi-qc-item:hover::after{border-color:var(--green)}
.bi-qc-ic{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.bi-qc-ic svg{width:20px;height:20px}
.bi-qc-item strong{font-family:var(--heading);font-size:.92rem;display:block;font-weight:700;line-height:1.25;color:inherit}
.bi-qc-item div span{font-size:.76rem;color:var(--muted);display:block;margin-top:3px;line-height:1.35}
.bi-qc-wa .bi-qc-ic{background:#e7f6ec}.bi-qc-wa svg{fill:#25d366}
.bi-qc-em .bi-qc-ic{background:#fdf3e0}.bi-qc-em svg{fill:#c9a227}
.bi-qc-li .bi-qc-ic{background:#e8f1f8}.bi-qc-li svg{fill:#0a66c2}
/* primary "book" row */
.bi-qc-bk{background:var(--green-dark);border-color:var(--green-dark);color:#fff;margin-top:4px}
.bi-qc-bk:hover{background:var(--green-deep);border-color:var(--green-deep);transform:translateX(0)}
.bi-qc-bk .bi-qc-ic{background:rgba(255,255,255,.14)}.bi-qc-bk svg{fill:#fff}
.bi-qc-bk div span{color:rgba(255,255,255,.72)}
.bi-qc-bk::after{border-color:rgba(255,255,255,.5)}
.bi-qc-bk:hover::after{border-color:#fff}
/* footer */
.bi-qc-foot{text-align:center;font-size:.72rem;color:#9aa59c;padding:8px 0 14px}
/* responsive */
@media(max-width:480px){
  #bi-qc{right:16px;bottom:16px}
  #bi-qc-btn{width:56px;height:56px}
  #bi-qc-panel{width:calc(100vw - 32px);bottom:72px}
  .bi-qc-head{padding:20px 18px}
  .bi-qc-body{padding:14px}
}

/* ═══ CONTACT FORM (.bi-form), upgraded CF7 ═══ */
/* Appended from contact-form-cf7.txt PART 2. Pairs with the CF7 markup
   in PART 1 (added in the Contact Form 7 editor) wrapped in .bi-form.
   Distinct from the theme's existing .bpb-cf7 styling above. */
/* ===== Basit Iqbal, Contact form styling (CF7) ===== */
.bi-form{max-width:680px;margin:0 auto;background:#fff;border:1px solid #e4e0d2;border-radius:18px;box-shadow:0 10px 30px rgba(13,43,23,.08);padding:38px}
.bi-form .bi-form-head{text-align:center;margin-bottom:26px}
.bi-form .bi-form-head h3{font-size:1.5rem;color:#0d2b17;margin:0 0 8px;font-weight:800}
.bi-form .bi-form-head p{color:#5b6b5f;font-size:.95rem;margin:0}
.bi-form .bi-row{display:grid;grid-template-columns:1fr 1fr;gap:0 18px}
.bi-form label{display:block;font-weight:600;font-size:.9rem;color:#0d2b17;margin-bottom:16px}
.bi-form .wpcf7-form-control-wrap{display:block;margin-top:7px}
.bi-form input[type=text],
.bi-form input[type=email],
.bi-form select,
.bi-form textarea{width:100%;padding:13px 15px;border:1.5px solid #e4e0d2;border-radius:10px;background:#fcfbf7;font-size:1rem;font-family:inherit;color:#0d2b17;transition:border-color .15s ease,box-shadow .15s ease}
.bi-form input:focus,.bi-form select:focus,.bi-form textarea:focus{outline:none;border-color:#1e4d2e;box-shadow:0 0 0 3px rgba(30,77,46,.12);background:#fff}
.bi-form textarea{resize:vertical;min-height:110px}
.bi-form .bi-form-foot{text-align:center;margin-top:6px}
.bi-form .bi-submit{background:#0d2b17;color:#fff;border:none;border-radius:999px;padding:15px 38px;font-size:1rem;font-weight:700;cursor:pointer;transition:background .15s ease,transform .15s ease;width:auto}
.bi-form .bi-submit:hover{background:#1e4d2e;transform:translateY(-1px)}
.bi-form .bi-privacy{display:block;margin-top:12px;font-size:.78rem;color:#9aa59c}
.bi-form .wpcf7-not-valid{border-color:#a33b2e !important}
.bi-form .wpcf7-not-valid-tip{font-size:.78rem;color:#a33b2e;margin-top:5px;font-weight:400}
.bi-form .wpcf7-response-output{border:none !important;border-radius:10px;padding:14px 18px !important;margin:18px 0 0 !important;font-size:.9rem;text-align:center}
.bi-form .wpcf7-form.sent .wpcf7-response-output{background:#e8efe6;color:#1e4d2e;font-weight:600}
.bi-form .wpcf7-form.invalid .wpcf7-response-output,
.bi-form .wpcf7-form.failed .wpcf7-response-output{background:#f6e4e1;color:#a33b2e}
.bi-form .wpcf7-spinner{margin:0 auto;display:block}
@media(max-width:600px){
  .bi-form{padding:26px 20px}
  .bi-form .bi-row{grid-template-columns:1fr}
}
