/* =====================================================
   NUMBERCRUNCH — GLOBAL DESIGN SYSTEM
   Colour palette: --green #1D9E75 (unchanged from original)
   Aesthetic: Authoritative editorial / Swiss-influenced grid
   NOT generic AI purple-gradient slop
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- TOKENS ---- */
:root {
  --green:      #1D9E75;
  --green-dark: #0F6E56;
  --green-mid:  #085041;
  --green-light:#E1F5EE;
  --green-xlight:#F0FAF6;
  --ink:        #0e1a14;
  --ink-2:      #2a3830;
  --muted:      #637068;
  --faint:      #99aaa3;
  --rule:       rgba(14,26,20,0.10);
  --rule-mid:   rgba(14,26,20,0.18);
  --bg:         #fafaf8;
  --bg-warm:    #f4f4f1;
  --bg-card:    #ffffff;
  --amber:      #EF9F27;
  --amber-light:#FAEEDA;
  --blue-light: #E6F1FB;
  --purple-light:#EEEDFE;
  --red-light:  #FCEBEB;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow:    0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);

  --max: 1120px;
  --max-text: 720px;

  --nav-h: 66px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- ACCESSIBILITY ---- */
.sr-only {
  position: absolute !important;
  width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.skip-link {
  position:absolute; top:-60px; left:1rem;
  background:var(--green); color:#fff;
  padding:10px 20px; border-radius:var(--r-sm);
  font-size:14px; font-weight:600;
  z-index:9999; transition:top .15s;
}
.skip-link:focus { top:1rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---- LAYOUT HELPERS ---- */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.wrap-text { max-width: var(--max-text); margin: 0 auto; padding: 0 2rem; }
.section  { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ---- TYPOGRAPHY ---- */
.label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  display: block; margin-bottom: .6rem;
}
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1px; color: var(--ink);
}
.display em { font-style: italic; color: var(--green); }
.title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.5px; color: var(--ink);
}
.subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted); line-height: 1.7;
  max-width: 560px;
}

/* ---- RULE DIVIDER ---- */
.rule { border: none; border-top: 0.5px solid var(--rule); }
.rule-mid { border: none; border-top: 0.5px solid var(--rule-mid); }

/* =====================
   NAVIGATION
   ===================== */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--rule);
  display: flex; align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 600; letter-spacing: -.4px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px; background: var(--green);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex; align-items: center; gap: .1rem;
  flex: 1;
}
.nav-links a {
  font-size: 13.5px; color: var(--muted);
  padding: 7px 13px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); background: var(--bg-warm); }

.nav-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-tel {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 5px;
}
.nav-tel a { color: var(--ink); font-weight: 500; }
.btn-nav {
  background: var(--green); color: #fff !important;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 7px; border-radius: var(--r-sm); transition: background .15s;
}
.hamburger:hover { background: var(--bg-warm); }
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile menu */
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 190;
  overflow-y: auto; padding: 1.5rem;
  flex-direction: column; gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; font-size: 17px; color: var(--ink);
  padding: 13px 16px; border-radius: var(--r);
  border-bottom: 0.5px solid var(--rule);
}
.mobile-nav a:hover { background: var(--bg-warm); }
.mob-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint);
  padding: 1.5rem 16px 4px; border-bottom: none !important;
}
.mob-cta-btn {
  margin-top: 1.25rem; background: var(--green); color: #fff;
  text-align: center; padding: 15px; border-radius: var(--r);
  font-size: 16px; font-weight: 600; display: block;
  border-bottom: none !important;
}
.mob-cta-btn:hover { background: var(--green-dark); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  transition: all .15s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-secondary {
  background: #fff; color: var(--ink);
  border: 1px solid var(--rule-mid);
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; border-radius: 8px; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--bg-warm); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 7rem 0 6rem;
  background: linear-gradient(165deg, var(--green-xlight) 0%, var(--bg) 55%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-mid);
  font-size: 12.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 1.75rem;
}
.badge-pulse {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2.25rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--r);
  overflow: hidden; margin-top: 2.5rem;
}
.hero-stat {
  background: #fff; padding: 1.25rem 1.5rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 900; color: var(--green);
  letter-spacing: -1px; line-height: 1;
}
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Hero visual panel */
.hero-panel {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-xl); padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}

/* =====================
   TICKER
   ===================== */
.ticker {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 10px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 3.5rem; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { font-size: 12.5px; display: flex; align-items: center; gap: 8px; }
.ticker-item strong { color: var(--green); font-weight: 600; }
.ticker-sep { color: var(--green); opacity: .5; }

/* =====================
   CARDS
   ===================== */
.card {
  background: var(--bg-card); border: 0.5px solid var(--rule);
  border-radius: var(--r); padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1rem;
}
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1.25rem; }

/* =====================
   STEPS
   ===================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; }
.step {
  background: #fff; border: 0.5px solid var(--rule);
  border-radius: var(--r); padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.step:hover { border-color: var(--green); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px; font-weight: 900; color: var(--green-light);
  line-height: 1; position: absolute; top: -.5rem; right: 1rem;
  letter-spacing: -3px; user-select: none;
}
.step-icon { font-size: 26px; margin-bottom: .75rem; }
.step h3 { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.step p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* =====================
   SERVICES
   ===================== */
.service-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1rem; }
.service {
  background: #fff; border: 0.5px solid var(--rule);
  border-radius: var(--r); padding: 1.75rem;
  cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .15s;
}
.service:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1rem;
}
.service h3 { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.service p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* =====================
   PRICING
   ===================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1rem; }
.price-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 2rem;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured { border: 2px solid var(--green); }
.featured-label {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 0 0 10px 10px;
}
.price-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.price-tagline { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900; color: var(--green);
  letter-spacing: -1.5px; line-height: 1;
}
.price-per { font-size: 12px; color: var(--muted); margin-top: 2px; margin-bottom: 1.5rem; }
hr.price-rule { border: none; border-top: 0.5px solid var(--rule); margin-bottom: 1.5rem; }
.price-feats { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 1.5rem; }
.price-feats li { font-size: 13.5px; display: flex; align-items: flex-start; gap: 8px; }
.check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-btn {
  display: block; width: 100%; padding: 12px;
  background: var(--bg-warm); color: var(--ink);
  border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all .15s;
  text-align: center;
}
.price-card.featured .price-btn { background: var(--green); color: #fff; }
.price-btn:hover { background: var(--green); color: #fff; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.25rem; }
.testimonial {
  background: #fff; border: 0.5px solid var(--rule);
  border-radius: var(--r); padding: 1.75rem;
}
.stars { color: #F5A623; font-size: 14px; margin-bottom: .75rem; letter-spacing: 1px; }
.testimonial p { font-size: 14.5px; line-height: 1.7; color: var(--ink-2); margin-bottom: 1.25rem; }
.t-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; }
.t-author span { font-size: 12px; color: var(--muted); }

/* =====================
   LOGO STRIP
   ===================== */
.logo-strip {
  padding: 2.5rem 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  background: var(--bg-warm);
}
.logo-strip-label { font-size: 12px; color: var(--faint); text-align: center; margin-bottom: 1.25rem; font-weight: 500; }
.logo-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.logo-pill {
  background: #fff; border: 1px solid var(--rule);
  border-radius: 100px; padding: 7px 18px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}

/* =====================
   CTA STRIP
   ===================== */
.cta-strip {
  background: var(--green-mid); color: #fff;
  padding: 4.5rem 0; text-align: center;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 900;
  letter-spacing: -.5px; margin-bottom: .75rem;
}
.cta-strip p { font-size: 16px; opacity: .8; margin-bottom: 2rem; }
.cta-strip-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================
   DASHBOARD WIDGET
   ===================== */
.dash-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r); padding: 1.4rem; box-shadow: var(--shadow);
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.dash-title { font-size: 14px; font-weight: 600; }
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; background: var(--green-light); color: var(--green-dark);
  padding: 3px 9px; border-radius: 100px; font-weight: 600;
}
.live-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }
.bars { display: flex; flex-direction: column; gap: 11px; margin-bottom: 1.25rem; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.bar-label { width: 78px; text-align: right; flex-shrink: 0; }
.bar-bg { flex: 1; height: 7px; background: var(--bg-warm); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; }
.bar-val { width: 38px; font-weight: 600; color: var(--ink); font-size: 12px; }
.insight {
  background: var(--green-light); border-radius: 9px;
  padding: 13px 15px; font-size: 13px; color: var(--green-mid); line-height: 1.55;
}
.insight strong { font-weight: 700; }
.deadlines {
  background: #fff; border: 0.5px solid var(--rule);
  border-radius: var(--r); padding: 1rem; margin-top: 1rem;
}
.dl-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.dl-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 6px 0; border-bottom: 0.5px solid var(--rule);
}
.dl-row:last-child { border-bottom: none; }
.dl-badge { font-size: 11px; padding: 3px 9px; border-radius: 5px; font-weight: 600; }
.dl-green { background: var(--green-light); color: var(--green-dark); }
.dl-amber { background: var(--amber-light); color: #7F4D0B; }

/* =====================
   BLOG CARDS
   ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.blog-card {
  background: #fff; border: 0.5px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.blog-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-thumb {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-dark);
  background: var(--green-light); padding: 3px 10px; border-radius: 100px;
  margin-bottom: .75rem;
}
.blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: .5rem; line-height: 1.3; }
.blog-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-meta span:first-child { font-size: 12px; color: var(--faint); }
.blog-read { font-size: 13px; font-weight: 600; color: var(--green); }

/* =====================
   ARTICLE
   ===================== */
.article-hero {
  background: var(--ink); color: #fff;
  padding: 5rem 0 4rem;
}
.article-hero .label { color: var(--green); }
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 52px); font-weight: 900;
  line-height: 1.1; letter-spacing: -.5px;
  max-width: 700px; margin-top: .75rem;
}
.article-meta { display: flex; gap: .5rem; align-items: center; font-size: 13.5px; opacity: .65; margin-top: 1rem; }
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65);
  margin-bottom: 2rem; cursor: pointer; transition: color .15s;
}
.article-back:hover { color: #fff; }
.article-body {
  max-width: 720px; margin: 3rem auto; padding: 0 2rem;
  font-size: 16.5px; line-height: 1.8; color: var(--ink-2);
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.article-body h3 { font-size: 18px; font-weight: 700; margin: 2rem 0 .75rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.25rem; }
.article-body ul li { margin-bottom: .5rem; }
.article-body strong { font-weight: 700; }
.article-body a { color: var(--green); text-decoration: underline; }
.article-cta {
  max-width: 720px; margin: 0 auto 3rem; padding: 0 2rem;
}
.article-cta-box {
  background: var(--green-light); border-radius: var(--r);
  padding: 1.75rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.article-disclaimer {
  max-width: 720px; margin: 0 auto 4rem; padding: 0 2rem;
  font-size: 12.5px; color: var(--faint); line-height: 1.6;
}

/* =====================
   CONTACT FORM
   ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-top: 1.75rem; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--green-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 13px; font-weight: 700; }
.contact-detail span  { font-size: 14px; color: var(--muted); }
.contact-detail a { color: var(--ink); }
.contact-detail a:hover { color: var(--green); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--rule-mid); border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff; transition: border-color .15s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.req-star { color: var(--green); }
.form-submit {
  width: 100%; background: var(--green); color: #fff;
  padding: 14px; border-radius: 10px;
  font-size: 16px; font-weight: 700; border: none;
  cursor: pointer; transition: background .15s, transform .1s;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin: .75rem 0 .5rem; }
.form-success p { color: var(--muted); }

/* =====================
   AI TECH SECTION
   ===================== */
.ai-wrap {
  background: var(--bg-warm); border-radius: var(--r-xl);
  padding: 3rem; margin: 0 .5rem;
}
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ai-feats { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.ai-feat { display: flex; gap: 14px; align-items: flex-start; }
.ai-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.ai-feat h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.ai-feat p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* =====================
   PAGE HEADERS (inner pages)
   ===================== */
.page-header {
  background: var(--bg-warm);
  border-bottom: 0.5px solid var(--rule);
  padding: 4rem 0 3rem;
}
.page-header .label { margin-bottom: .5rem; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900; letter-spacing: -.5px; line-height: 1.1;
  max-width: 660px;
}
.page-header p {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 550px; margin-top: .75rem;
}

/* =====================
   FAQ
   ===================== */
.faq { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 0.5px solid var(--rule);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 1rem;
}
.faq-q h3 { font-size: 16px; font-weight: 600; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-warm); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; transition: background .15s;
}
.faq-item.open .faq-toggle { background: var(--green); color: #fff; }
.faq-a { display: none; padding-top: .75rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* =====================
   WHO WE HELP (audience cards)
   ===================== */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.25rem; }
.audience-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 2rem;
  transition: border-color .2s, box-shadow .2s;
}
.audience-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.aud-icon { font-size: 36px; margin-bottom: 1rem; }
.audience-card h3 { font-size: 18px; font-weight: 700; margin-bottom: .5rem; }
.audience-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
.aud-perks { display: flex; flex-direction: column; gap: 7px; }
.aud-perk { font-size: 13px; display: flex; align-items: flex-start; gap: 7px; }
.aud-perk::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* =====================
   ABOUT PAGE
   ===================== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; }
.value-card {
  background: #fff; border: 0.5px solid var(--rule);
  border-radius: var(--r); padding: 1.75rem;
}
.value-icon { font-size: 30px; margin-bottom: .75rem; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: .4rem; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* =====================
   PROCESS / TIMELINE
   ===================== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 1px; background: var(--rule);
}
.timeline-item { position: relative; padding: 0 0 2.5rem 2.5rem; }
.timeline-dot {
  position: absolute; left: -2rem; top: 3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--green);
}
.timeline-num {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green); margin-bottom: .4rem;
}
.timeline-item h3 { font-size: 18px; font-weight: 700; margin-bottom: .5rem; }
.timeline-item p  { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* =====================
   PRICING PAGE EXTRAS
   ===================== */
.pricing-hero {
  background: var(--ink); color: #fff;
  padding: 5rem 0 4rem; text-align: center;
}
.pricing-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -.5px;
  margin: .75rem 0;
}
.pricing-hero p { font-size: 17px; opacity: .7; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.compare-table th, .compare-table td {
  padding: 12px 16px; text-align: left; border-bottom: 0.5px solid var(--rule);
  font-size: 14px;
}
.compare-table th { font-weight: 700; background: var(--bg-warm); }
.compare-table .yes { color: var(--green); font-weight: 700; }
.compare-table .no  { color: var(--faint); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 4.5rem 0 0;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: .75rem; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-logo .logo-mark { background: var(--green); }
.footer-logo span { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.4px; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6);
  transition: all .15s;
}
.social-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,.55);
  margin-bottom: .5rem; transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: #fff; }

/* =====================
   CHAT WIDGET (preserved from original)
   ===================== */
.nc-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 1000; width: 58px; height: 58px;
  background: var(--green); border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(29,158,117,.5);
  transition: transform .2s, box-shadow .2s;
}
.nc-fab:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(29,158,117,.6); }
.nc-fab svg { width: 26px; height: 26px; transition: opacity .2s, transform .2s; }
.nc-fab .icon-close { position: absolute; opacity: 0; transform: scale(.7); }
.nc-fab.open .icon-chat { opacity: 0; transform: scale(.7); }
.nc-fab.open .icon-close { opacity: 1; transform: scale(1); }

.nc-panel {
  position: fixed; bottom: 5.5rem; right: 1.5rem;
  z-index: 999; width: 360px;
  background: #fff; border-radius: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
  overflow: hidden; max-height: 540px;
  transform: scale(.92) translateY(12px);
  opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform .25s, opacity .2s;
}
.nc-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.nc-panel-head {
  background: var(--green); color: #fff;
  padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: 10px;
}
.nc-panel-head-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.nc-panel-head-text strong { display: block; font-size: 14px; font-weight: 700; }
.nc-panel-head-text span { font-size: 12px; opacity: .8; }

/* Gate + chat views */
.nc-view { padding: 1.25rem; flex: 1; overflow-y: auto; }
.nc-gate h3 { font-size: 15px; font-weight: 700; margin-bottom: .4rem; }
.nc-gate p { font-size: 13px; color: var(--muted); margin-bottom: 1.25rem; }
.nc-gate input {
  width: 100%; padding: 10px 13px; border: 1px solid var(--rule-mid);
  border-radius: 8px; font-family: inherit; font-size: 14px;
  margin-bottom: .6rem;
}
.nc-gate input:focus { border-color: var(--green); outline: none; }
.nc-gate-submit {
  width: 100%; background: var(--green); color: #fff;
  padding: 11px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: background .15s;
}
.nc-gate-submit:hover { background: var(--green-dark); }
.nc-gate-err { font-size: 12px; color: #c0392b; margin-top: .5rem; }

.nc-messages { display: flex; flex-direction: column; gap: .75rem; padding: 1.25rem; flex: 1; overflow-y: auto; min-height: 200px; }
.nc-msg { display: flex; }
.nc-msg.user { justify-content: flex-end; }
.nc-bubble {
  max-width: 80%; padding: 10px 14px; border-radius: 14px;
  font-size: 14px; line-height: 1.5;
}
.nc-msg.assistant .nc-bubble { background: var(--bg-warm); color: var(--ink); border-radius: 4px 14px 14px 14px; }
.nc-msg.user .nc-bubble { background: var(--green); color: #fff; border-radius: 14px 14px 4px 14px; }
.nc-msg.user .nc-bubble a { color: rgba(255,255,255,.85); }
.nc-bubble a { color: var(--green); }
.nc-typing span {
  display: inline-block; width: 6px; height: 6px; background: var(--muted);
  border-radius: 50%; margin: 0 2px;
  animation: typing .9s ease-in-out infinite;
}
.nc-typing span:nth-child(2) { animation-delay: .15s; }
.nc-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }

.nc-form {
  padding: .75rem 1rem; border-top: 1px solid var(--rule);
  display: flex; gap: .5rem; align-items: flex-end;
}
.nc-input {
  flex: 1; border: 1px solid var(--rule-mid); border-radius: 10px;
  padding: 9px 13px; font-family: inherit; font-size: 14px;
  resize: none; max-height: 120px; line-height: 1.4;
}
.nc-input:focus { border-color: var(--green); outline: none; }
.nc-send {
  width: 36px; height: 36px; background: var(--green); color: #fff;
  border: none; border-radius: 9px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s;
}
.nc-send:hover { background: var(--green-dark); }
.nc-send:disabled { opacity: .5; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nc-panel { width: calc(100vw - 2rem); right: 1rem; }
  .section { padding: 3.5rem 0; }
  .wrap { padding: 0 1.25rem; }
}
