/* ============================================================================
   MGR Infotech — Enterprise IT Solutions
   Design system v2 — rich emerald/teal, bright & energetic, premium.
   Self-contained (no build step). mgr.nimblestride.ca
   ========================================================================== */

/* ---- Design tokens -------------------------------------------------------- */
:root {
  /* Deep forest-teal inks (dark sections + strong text) */
  --navy-950: #04150f;
  --navy-900: #062219;
  --navy-850: #082a20;
  --navy-800: #0c3628;
  --navy-700: #114535;
  --navy-600: #1a5a44;

  /* Neutral-green text ramp */
  --ink-900: #08201a;
  --ink-700: #33453e;
  --ink-500: #5a6b63;
  --ink-400: #859890;
  --ink-300: #b3c3bb;

  /* Bright, mint-tinted surfaces */
  --paper: #ffffff;
  --paper-2: #f1faf5;
  --paper-3: #e6f6ee;
  --line: #d9ece2;
  --mint-50: #ecfdf5;

  /* Brand accents — emerald → teal → lime */
  --accent: #10b981;        /* emerald */
  --accent-600: #059669;
  --accent-700: #047857;
  --accent-400: #34d399;
  --teal: #14b8a6;
  --cyan: #2dd4bf;          /* teal-cyan */
  --lime: #a3e635;
  --spring: #4ade80;
  --amber: #fbbf24;         /* single warm pop for energy */

  --grad-brand: linear-gradient(120deg, #10b981 0%, #14b8a6 52%, #2dd4bf 100%);
  --grad-text:  linear-gradient(100deg, #34d399, #2dd4bf 42%, #a3e635);
  --grad-lime:  linear-gradient(120deg, #34d399, #a3e635);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(6, 34, 25, .06), 0 2px 6px rgba(6, 34, 25, .07);
  --shadow: 0 14px 40px -16px rgba(6, 40, 30, .28);
  --shadow-lg: 0 40px 80px -28px rgba(4, 30, 22, .40);
  --glow: 0 20px 50px -18px rgba(16, 185, 129, .55);
  --glow-strong: 0 0 0 1px rgba(16,185,129,.35), 0 24px 60px -20px rgba(16,185,129,.6);

  --maxw: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(16,185,129,.22); }

/* ---- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 40px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 18px 0 16px; font-weight: 700; }
.section-head p { color: var(--ink-500); font-size: 18.5px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 650; font-size: 15px; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #04231a; font-weight: 700; box-shadow: 0 12px 28px -10px rgba(16,185,129,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(16,185,129,.85); }
.btn-ghost { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.24); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: #0c2c22; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: #fff; color: var(--ink-900); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--accent-400); color: var(--accent-700); transform: translateY(-2px); }

/* ---- Navbar --------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(6,40,30,.28);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-brand);
  display: grid; place-items: center; color: #05271d; font-weight: 800; font-size: 20px;
  font-family: var(--font-display);
  box-shadow: 0 10px 22px -8px rgba(16,185,129,.8); letter-spacing: -.04em;
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; line-height: 1; }
.brand-sub { font-size: 11px; color: var(--ink-400); font-weight: 600; letter-spacing: .05em; }
.nav.at-top:not(.scrolled) .brand-name { color: #fff; }
.nav.at-top:not(.scrolled) .brand-sub { color: rgba(220,255,242,.65); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 550; color: var(--ink-700);
  transition: background .18s ease, color .18s ease; position: relative;
}
.nav-links a:hover { background: var(--paper-3); color: var(--accent-700); }
.nav-links a.active-link { color: var(--accent-700); }
.nav.at-top:not(.scrolled) .nav-links a { color: rgba(230,255,246,.86); }
.nav.at-top:not(.scrolled) .nav-links a:hover,
.nav.at-top:not(.scrolled) .nav-links a.active-link { background: rgba(255,255,255,.12); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: inherit; }
.nav.at-top:not(.scrolled) .nav-toggle { color: #fff; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 16px 24px 26px; box-shadow: var(--shadow-lg);
  transform: translateY(-14px); opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 13px 8px; font-weight: 600; border-bottom: 1px solid var(--paper-3); color: var(--ink-900); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 680px at 82% -6%, rgba(16,185,129,.36), transparent 55%),
    radial-gradient(880px 560px at 4% 12%, rgba(45,212,191,.24), transparent 55%),
    radial-gradient(700px 500px at 60% 110%, rgba(163,230,53,.14), transparent 60%),
    linear-gradient(165deg, #04150f 0%, #06241a 48%, #052018 100%);
  padding: 168px 0 118px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(1000px 640px at 70% 24%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(1000px 640px at 70% 24%, #000 0%, transparent 78%);
}
/* Floating orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0; pointer-events: none; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, #10b981, transparent 70%); top: -90px; right: -60px; animation: float1 14s ease-in-out infinite; }
.orb-2 { width: 340px; height: 340px; background: radial-gradient(circle, #2dd4bf, transparent 70%); bottom: -120px; left: -40px; animation: float2 18s ease-in-out infinite; }
.orb-3 { width: 260px; height: 260px; background: radial-gradient(circle, #a3e635, transparent 70%); top: 40%; left: 46%; opacity: .3; animation: float1 20s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px, 30px) scale(1.08); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(34px, -24px) scale(1.1); } }

.hero .wrap { position: relative; z-index: 3; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(16,185,129,.14); border: 1px solid rgba(52,211,153,.34);
  color: #b8f5da; border-radius: 999px; padding: 8px 16px; font-size: 12.5px; font-weight: 650;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(163,230,53,.6); animation: ping 2.2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(163,230,53,.55); } 70% { box-shadow: 0 0 0 10px rgba(163,230,53,0); } 100% { box-shadow: 0 0 0 0 rgba(163,230,53,0); } }
.hero h1 { font-size: clamp(40px, 5.6vw, 70px); font-weight: 700; margin: 24px 0 20px; letter-spacing: -.03em; }
.hero h1 .grad {
  background: var(--grad-text); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: panText 6s ease infinite;
}
@keyframes panText { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-lead { font-size: 19.5px; color: #bfe6d6; max-width: 570px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; color: #8fbfaa; font-size: 13.5px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--lime); }

/* Hero capability panel (honest — no fabricated telemetry) */
.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  padding: 24px; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
}
.hero-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(52,211,153,.6), transparent 40%, rgba(45,212,191,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hero-panel-head .lbl { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8fd7bd; font-family: var(--font-display); }
.hp-tabs { display: flex; gap: 6px; }
.hp-tab { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.hp-tab:nth-child(1){ background:#34d399;} .hp-tab:nth-child(2){ background:#2dd4bf;} .hp-tab:nth-child(3){background:#a3e635;}
.hp-row { display: flex; align-items: center; gap: 14px; padding: 13px; border-radius: 13px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); margin-bottom: 10px; transition: transform .18s ease, background .18s ease; }
.hp-row:hover { transform: translateX(4px); background: rgba(52,211,153,.1); }
.hp-ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex: none; color: #05271d; }
.hp-ic svg { width: 20px; height: 20px; }
.hp-row .t { font-weight: 700; font-size: 14.5px; color: #eafff6; }
.hp-row .s { font-size: 12.5px; color: #8fbfaa; }
.hp-arrow { margin-left: auto; color: #4ade80; }
.hp-arrow svg { width: 18px; height: 18px; }
.hp-foot { display:flex; align-items:center; gap:8px; margin-top:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,.1); font-size:12.5px; color:#8fbfaa; }
.hp-foot b { color:#eafff6; font-family: var(--font-display); }

/* Marquee logos strip */
.logostrip { border-top: 1px solid rgba(255,255,255,.08); background: #041710; padding: 26px 0; color: #6f9a86; }
.logostrip .wrap { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.logostrip .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #5c8873; }
.logostrip .chip { font-family: var(--font-display); font-weight: 600; letter-spacing: .01em; color: #a9ccbc; font-size: 15px; opacity: .9; transition: color .2s, opacity .2s; }
.logostrip .chip:hover { color: #a3e635; opacity: 1; }

/* ---- Stat band (honest facts) --------------------------------------------- */
.stats { background: linear-gradient(180deg, var(--mint-50), #fff); border-bottom: 1px solid var(--line); }
.stat { text-align: center; padding: 16px 10px; }
.stat .n { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 700; letter-spacing: -.03em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: var(--ink-500); font-size: 14px; font-weight: 550; margin-top: 6px; }

/* ---- Cards / services ----------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .28s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 20px; color: #05271d; box-shadow: 0 10px 22px -12px rgba(16,185,129,.6);
}
.card .ic svg { width: 25px; height: 25px; }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card p { color: var(--ink-500); font-size: 15px; }
.card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag { font-size: 12px; font-weight: 600; color: var(--accent-700); background: var(--mint-50); border: 1px solid var(--paper-3); border-radius: 999px; padding: 4px 11px; }

/* Icon tiles — cohesive green/teal/lime spectrum for energy */
.ic-blue   { background: linear-gradient(135deg,#34d399,#10b981); }
.ic-cyan   { background: linear-gradient(135deg,#2dd4bf,#14b8a6); }
.ic-indigo { background: linear-gradient(135deg,#10b981,#0d9488); }
.ic-emerald{ background: linear-gradient(135deg,#4ade80,#16a34a); }
.ic-amber  { background: linear-gradient(135deg,#bef264,#a3e635); color:#1a2e05 !important; }
.ic-slate  { background: linear-gradient(135deg,#0f766e,#115e59); color:#eafff6 !important; }
.ic-rose   { background: linear-gradient(135deg,#5eead4,#2dd4bf); }
.ic-violet { background: linear-gradient(135deg,#a7f3d0,#34d399); }

/* ---- Tabbed services (industries) ---------------------------------------- */
.tabbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tabbtn {
  border: 1px solid var(--line); background: #fff; color: var(--ink-700);
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  transition: all .18s ease;
}
.tabbtn:hover { border-color: var(--accent-400); color: var(--accent-700); }
.tabbtn.active { background: var(--grad-brand); color: #04231a; border-color: transparent; box-shadow: 0 10px 22px -12px rgba(16,185,129,.7); }
.tabpanel { display: none; }
.tabpanel.active { display: block; animation: fadeUp .35s ease; }
.panel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.panel-inner { display: grid; grid-template-columns: 1fr 1fr; }
.panel-copy { padding: 44px; }
.panel-copy h3 { font-size: 27px; margin-bottom: 14px; }
.panel-copy p { color: var(--ink-500); font-size: 16px; margin-bottom: 22px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; color: var(--ink-700); font-size: 15px; }
.checklist svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 1px; }
.panel-visual { background: linear-gradient(160deg, #062219, #041710); padding: 44px; color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 14px; position: relative; overflow: hidden; }
.panel-visual::before { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(16,185,129,.4),transparent 70%); top:-80px; right:-80px; filter:blur(30px); }
.metric-row { position: relative; display: flex; align-items: baseline; gap: 12px; padding: 18px 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; }
.metric-row .big { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.metric-row .cap { font-size: 13.5px; color: #aaccbd; }

/* ---- Products / equipment ------------------------------------------------- */
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .28s ease;
  display: flex; flex-direction: column;
}
.prod:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.prod-media { height: 170px; display: grid; place-items: center; position: relative; color: #eafff6; }
.prod-media svg { width: 78px; height: 78px; opacity: .96; }
.prod-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 750; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--accent-700); }
.prod-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 18.5px; margin-bottom: 7px; }
.prod-body p { color: var(--ink-500); font-size: 14px; flex: 1; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.prod-price { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--accent-700); }
.prod-link { font-size: 13.5px; font-weight: 700; color: var(--accent-700); display: inline-flex; align-items: center; gap: 5px; transition: gap .18s ease; }
.prod:hover .prod-link { gap: 9px; }

.pm-slate { background: linear-gradient(150deg,#0f766e,#0a3428); }
.pm-blue  { background: linear-gradient(150deg,#059669,#065f46); }
.pm-cyan  { background: linear-gradient(150deg,#0d9488,#115e59); }
.pm-violet{ background: linear-gradient(150deg,#16a34a,#14532d); }

/* ---- Nimblestride subsidiary --------------------------------------------- */
.subsid {
  color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(820px 520px at 88% 0%, rgba(45,212,191,.26), transparent 55%),
    radial-gradient(720px 480px at 4% 100%, rgba(16,185,129,.22), transparent 55%),
    linear-gradient(160deg, #062219, #04150f);
}
.subsid .section-head h2 { color: #fff; }
.subsid .section-head p { color: #a9ccbd; }
.family {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 9px 18px; font-size: 13px; color: #c9e6da; font-weight: 600;
}
.family b { color: #fff; font-family: var(--font-display); }
.family .arw { color: var(--lime); font-weight: 800; }
.ns-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 28px;
  transition: transform .22s ease, border-color .2s ease, background .2s ease;
}
.ns-card:hover { transform: translateY(-6px); border-color: rgba(52,211,153,.5); background: linear-gradient(180deg, rgba(16,185,129,.16), rgba(255,255,255,.03)); }
.ns-card .ic { margin-bottom: 18px; }
.ns-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.ns-card p { color: #a9ccbd; font-size: 14.5px; }
.ns-card .who { display: inline-block; margin-top: 15px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #7fc5a8; }

/* ---- Corporate structure -------------------------------------------------- */
.org { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-node {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 30px; text-align: center; box-shadow: var(--shadow-sm); min-width: 260px;
}
.org-node.parent { border-color: transparent; box-shadow: var(--glow-strong); }
.org-node .k { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-600); }
.org-node .name { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin: 6px 0 4px; }
.org-node .desc { font-size: 13.5px; color: var(--ink-500); }
.org-connector { width: 2px; height: 40px; background: linear-gradient(var(--accent), var(--line)); }
.org-children { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; width: 100%; }
.org-branch { display: flex; flex-direction: column; align-items: center; }

/* ---- Process timeline ----------------------------------------------------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding-top: 22px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--accent-600);
}
.step .bar { height: 4px; background: var(--paper-3); border-radius: 4px; margin: 12px 0 18px; overflow: hidden; }
.step .bar i { display: block; height: 100%; width: 0; background: var(--grad-brand); border-radius: 4px; transition: width 1.1s ease; }
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: 14.5px; }

/* ---- Coverage / mint sections --------------------------------------------- */
.coverage { background: linear-gradient(180deg, #fff, var(--paper-2)); }
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.prov { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.prov-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease; }
.prov-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.prov-card .abbr { font-family: var(--font-display); font-size: 32px; font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.02em; }
.prov-card .full { font-weight: 700; margin-top: 4px; }
.prov-card .sm { font-size: 12.5px; color: var(--ink-400); margin-top: 4px; }

/* ---- Why-choose cards (replaces fabricated testimonials) ------------------ */
.why { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .28s ease; position: relative; overflow: hidden; }
.why::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-brand); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.why:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.why:hover::before { transform: scaleX(1); }
.why .ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; color: #05271d; }
.why .ic svg { width: 25px; height: 25px; }
.why h3 { font-size: 20px; margin-bottom: 9px; }
.why p { color: var(--ink-500); font-size: 15px; }

/* ---- FAQ ------------------------------------------------------------------ */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s ease; }
.faq-item.open { border-color: var(--accent-400); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 26px; font-family: var(--font-display); font-weight: 600; font-size: 16.5px; width: 100%; background: none; border: 0; text-align: left; color: var(--ink-900); }
.faq-q .chev { flex: none; width: 22px; height: 22px; transition: transform .25s ease; color: var(--ink-400); }
.faq-item.open .chev { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 26px 22px; color: var(--ink-500); font-size: 15px; }

/* ---- CTA band ------------------------------------------------------------- */
.cta {
  color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(760px 420px at 80% 20%, rgba(16,185,129,.42), transparent 60%),
    radial-gradient(600px 400px at 12% 90%, rgba(45,212,191,.3), transparent 60%),
    linear-gradient(135deg, #062219, #04150f);
}
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 16px; }
.cta p { color: #b8ddcc; font-size: 18.5px; max-width: 620px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info li:last-child { border-bottom: 0; }
.contact-info .ic { width: 48px; height: 48px; border-radius: 13px; flex: none; color: #05271d; }
.contact-info .k { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); font-weight: 700; }
.contact-info .v { font-weight: 650; font-size: 16px; color: var(--ink-900); }
.contact-info .v a:hover { color: var(--accent-700); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 650; margin-bottom: 7px; color: var(--ink-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink-900); background: var(--paper-2);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-400); background: #fff; box-shadow: 0 0 0 4px rgba(16,185,129,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--ink-400); margin-top: 4px; }
.form-success { display: none; background: var(--mint-50); border: 1px solid var(--accent-400); color: var(--accent-700); padding: 14px 16px; border-radius: 12px; font-weight: 600; font-size: 14.5px; margin-top: 8px; }
.form-success.show { display: block; }

/* ---- Footer --------------------------------------------------------------- */
.footer { background: #041710; color: #86b09d; padding: 68px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer li { margin-bottom: 10px; }
.footer a { font-size: 14.5px; transition: color .15s ease; }
.footer a:hover { color: var(--lime); }
.footer .blurb { font-size: 14.5px; max-width: 330px; margin: 16px 0 20px; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: #5f8a75; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: 13px; color: #5c8873; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .2s ease, transform .2s ease; }
.footer-bottom .socials a:hover { background: var(--grad-brand); color: #05271d; transform: translateY(-2px); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ---- Reveal animation ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 540px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .panel-inner { grid-template-columns: 1fr; }
  .cov-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .org-children { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .btn-text-hide { display: none; }
  .nav-toggle { display: inline-flex; }
  .cols-4, .cols-3, .cols-2, .steps, .prov, .form-row { grid-template-columns: 1fr; }
  .hero { padding: 132px 0 88px; }
  .hero-trust { gap: 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .orb-3 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none !important; }
}
