/* ── Self-hosted fonts (no external requests) ──────────────────── */

/* ── Fallback fonts with matched metrics to prevent font-swap CLS ── */
/* These make Arial look as close as possible to Cabinet Grotesk / Chivo
   so the text shift when custom fonts load is near-zero              */
@font-face {
  font-family: 'Cabinet Grotesk Fallback';
  src: local('Arial'), local('Helvetica Neue');
  size-adjust: 106%;
  ascent-override: 89%;
  descent-override: 21%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Chivo Fallback';
  src: local('Arial'), local('Helvetica Neue');
  size-adjust: 100%;
  ascent-override: 95%;
  descent-override: 23%;
  line-gap-override: 0%;
}

/* Cabinet Grotesk — from Fontshare (free licence) */
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('/assets/fonts/cabinet-grotesk-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('/assets/fonts/cabinet-grotesk-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('/assets/fonts/cabinet-grotesk-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('/assets/fonts/cabinet-grotesk-800-normal.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('/assets/fonts/cabinet-grotesk-900-normal.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* Chivo — latin subset only */
@font-face {
  font-family: 'Chivo';
  src: url('/assets/fonts/chivo-300-normal.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Chivo';
  src: url('/assets/fonts/chivo-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Chivo';
  src: url('/assets/fonts/chivo-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Chivo';
  src: url('/assets/fonts/chivo-300-italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}

/* ────────────────────────────────────────────────────────────── */

:root {
  --night:   #080810;
  --night-2: #0d0d1a;
  --night-3: #131326;
  --night-4: #1a1a33;
  --ivory:   #f5f3ee;
  --ivory-2: #ede9e0;
  --ivory-3: #e0dbd0;
  --white:   #ffffff;
  --muted:   #7a7890;
  --muted-2: #a8a6bc;
  --blue:    #2563eb;
  --blue-2:  #1d4ed8;
  --blue-l:  #eff6ff;
  --blue-g:  rgba(37,99,235,0.12);
  --electric:#60a5fa;
  --lime:    #84cc16;
  --lime-l:  #f7fee7;
  --amber:   #f59e0b;
  --amber-l: #fffbeb;
  --border-d: rgba(255,255,255,0.08);
  --border-l: rgba(8,8,16,0.1);
  --border-l2: rgba(8,8,16,0.18);
  --head: 'Cabinet Grotesk', 'Cabinet Grotesk Fallback', sans-serif;
  --body: 'Chivo', 'Chivo Fallback', sans-serif;
  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl:40px;
  --sh-sm: 0 2px 12px rgba(0,0,0,0.08);
  --sh:    0 8px 32px rgba(0,0,0,0.12);
  --sh-lg: 0 24px 72px rgba(0,0,0,0.18);
  --sh-xl: 0 48px 120px rgba(0,0,0,0.24);
  --e: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.22s var(--e);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--body); background: var(--ivory); color: var(--night); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

h1,h2,h3,h4,h5 { font-family: var(--head); letter-spacing: -0.03em; line-height: 1.08; }
h1 { font-size: clamp(2.75rem, 6.5vw, 5.5rem); font-weight: 900; letter-spacing: -0.045em; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }
p { font-size: 1.0625rem; line-height: 1.78; color: var(--muted); font-weight: 300; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 8rem 0; }
.section-sm { padding: 5rem 0; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 0.875rem 2.25rem; border-radius: 4px; font-family: var(--head); font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; position: relative; overflow: hidden; }
.btn-primary { background: var(--night); color: var(--ivory); }
.btn-primary:hover { background: var(--night-3); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,99,235,0.4); }
.btn-outline-dark { background: transparent; color: var(--night); border: 1.5px solid var(--border-l2); }
.btn-outline-dark:hover { background: var(--night); color: var(--ivory); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--ivory); border: 1.5px solid var(--border-d); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-ivory { background: var(--ivory); color: var(--night); }
.btn-ivory:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.arr { width: 15px; height: 15px; transition: transform var(--t); flex-shrink: 0; }
.btn:hover .arr { transform: translate(3px, -3px); }

#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 800; padding: 1.5rem 0; transition: all 0.4s var(--e); background: rgba(8,8,16,0.97) !important; backdrop-filter: blur(24px); border-bottom: 1px solid rgba(255,255,255,0.08) !important; padding: 1rem 0 !important; }
#nav.solid { background: rgba(8,8,16,0.96); backdrop-filter: blur(24px); padding: 1rem 0; border-bottom: 1px solid var(--border-d); }
.nav-i { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-size: 1.25rem; font-weight: 900; letter-spacing: -0.04em; color: var(--ivory); }
.logo-mark { width: 32px; height: 32px; background: var(--blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 900; color: #fff; flex-shrink: 0; font-family: var(--head); }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links a { font-family: var(--head); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 0.5rem 0.6rem; color: rgba(255,255,255,0.5); }
.nav-links a:hover { color: var(--ivory); }
.nav-end { display: flex; align-items: center; gap: 0.5rem; }
.nav-end .btn { padding: 0.7rem 1.25rem; font-size: 0.8125rem; }
.nav-end .btn-wa { padding: 0.6rem 0.875rem; }
.nav-burger { display: none; background: none; border: none; color: var(--ivory); cursor: pointer; padding: 0.5rem; }
.mnav-close { background: none; border: none; color: var(--ivory); font-size: 2rem; cursor: pointer; padding: 0.5rem; }

@media(max-width:900px){
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-end { margin-left: auto; }
  .nav-end .btn-blue { display: none; }
  .nav-i { gap: 0.75rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .hero-sub-row { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions-col { align-items: flex-start; }
  .hero-action-btns { justify-content: flex-start; }
  .outcome-chips { justify-content: flex-start; }
  .hero-ticker { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ticker-item { padding: 0 1.25rem; }
  .ticker-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-hd { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pmc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-box { padding: 3rem 2rem; flex-direction: column; gap: 2rem; }
  .float-card { display: none; }
  .mnav-links a { font-size: 1.5rem; padding: 1rem 0; }
  .mnav-top { margin-bottom: 2rem; }
}
@media(max-width:600px){
  .nav-end .btn-wa svg { margin: 0; }
  .nav-end .btn-wa { padding: 0.6rem; font-size: 0; gap: 0; }
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .hero-ticker { grid-template-columns: 1fr 1fr; }
  .ticker-item { padding: 0 0.75rem; }
  .ti-num { font-size: 2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3,1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .mnav-links a { font-size: 1.25rem; padding: 0.875rem 0; }
}

#mnav { position: fixed; inset: 0; z-index: 900; background: var(--night); transform: translateX(100%); transition: transform 0.4s var(--e); padding: 2rem 2.5rem; display: flex; flex-direction: column; overflow-y: auto; }
#mnav.open { transform: none; }
.mnav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; }
.mnav-links { list-style: none; flex: 1; }
.mnav-links li { border-bottom: 1px solid var(--border-d); }
.mnav-links a { display: block; padding: 1.25rem 0; font-family: var(--head); font-size: 2.5rem; font-weight: 900; letter-spacing: -0.04em; color: rgba(255,255,255,0.4); transition: color var(--t); }
.mnav-links a:hover { color: var(--ivory); }
.mnav-foot { padding-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }

#hero { background: var(--night); min-height: 100vh; display: grid; grid-template-rows: 1fr auto; position: relative; overflow: hidden; padding-top: 6rem; }
.hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-geo::before { content: ''; position: absolute; width: 900px; height: 900px; border: 1px solid rgba(37,99,235,0.12); border-radius: 50%; top: -300px; right: -300px; animation: spin-slow 40s linear infinite; }
.hero-geo::after { content: ''; position: absolute; width: 600px; height: 600px; border: 1px solid rgba(37,99,235,0.08); border-radius: 50%; top: -100px; right: -100px; animation: spin-slow 28s linear infinite reverse; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-glow { position: absolute; width: 800px; height: 600px; background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%); top: -200px; right: -200px; pointer-events: none; }
.hero-grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-body { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 4rem 0 3rem; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 2.5rem; }
.eyebrow-line { width: 40px; height: 1px; background: var(--blue); }
.eyebrow-text { font-family: var(--head); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--electric); }
.hero-h1 { color: var(--ivory); margin-bottom: 0.75rem; max-width: 1100px; }
.hero-h1 .outlined { -webkit-text-stroke: 2px rgba(245,243,238,0.35); color: transparent; display: block; }
.hero-h1 .solid { display: block; }
.hero-sub-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-top: 3rem; }
.hero-sub-text { font-size: 1.125rem; color: rgba(245,243,238,0.5); line-height: 1.72; font-weight: 300; max-width: 480px; }
.hero-actions-col { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; }
.hero-action-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; justify-content: flex-end; }
.outcome-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.oc { display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(132,204,22,0.3); background: rgba(132,204,22,0.08); font-family: var(--head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em; color: #a3e635; }
.oc-dot { width: 6px; height: 6px; border-radius: 50%; background: #a3e635; }
.hero-ticker { position: relative; z-index: 2; border-top: 1px solid var(--border-d); padding: 2rem 0; display: grid; grid-template-columns: repeat(4,1fr); }
.ticker-item { padding: 0 2.5rem; border-right: 1px solid var(--border-d); display: flex; flex-direction: column; gap: 4px; }
.ticker-item:first-child { padding-left: 0; }
.ticker-item:last-child { border-right: none; }
.ti-num { font-family: var(--head); font-size: 2.75rem; font-weight: 900; color: var(--ivory); line-height: 1; letter-spacing: -0.04em; contain: layout; }
.ti-label { font-size: 0.8125rem; color: rgba(245,243,238,0.4); font-weight: 300; }

#outcomes { background: var(--night-2); padding: 0; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border-d); border-bottom: 1px solid var(--border-d); }
.og-item { padding: 3rem 2.5rem; border-right: 1px solid var(--border-d); transition: background var(--t); }
.og-item:last-child { border-right: none; }
.og-item:hover { background: var(--night-3); }
.og-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.og-val { font-family: var(--head); font-size: 1.875rem; font-weight: 900; color: var(--ivory); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; contain: layout; }
.og-desc { font-size: 0.875rem; color: rgba(245,243,238,0.4); line-height: 1.55; font-weight: 300; }

#trust { background: var(--ivory-2); padding: 1.75rem 0; }
.trust-row { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-lbl { font-family: var(--head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.trust-div { width: 1px; height: 18px; background: var(--border-l2); flex-shrink: 0; }
.trust-logos { display: flex; gap: 2.25rem; flex-wrap: wrap; align-items: center; }
.tl { font-family: var(--head); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em; color: var(--muted); opacity: 0.5; transition: opacity var(--t); }
.tl:hover { opacity: 1; color: var(--night); }

.eyebrow-sm { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.es-line { width: 28px; height: 2px; background: var(--blue); flex-shrink: 0; }
.es-text { font-family: var(--head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); }

#about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.about-h2 span { color: var(--blue); }
.about-p { margin: 1.75rem 0 2.5rem; font-size: 1.125rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); border: 1px solid var(--border-l); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2.5rem; }
.ap { background: var(--ivory); padding: 1.5rem; transition: background var(--t); }
.ap:hover { background: var(--blue-l); }
.ap-ic { font-size: 1.375rem; margin-bottom: 0.5rem; }
.ap-t { font-family: var(--head); font-size: 0.9375rem; font-weight: 700; color: var(--night); margin-bottom: 4px; }
.ap-d { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
.about-visual { position: relative; }
.about-card { background: var(--night); border-radius: var(--r-2xl); padding: 3rem; overflow: hidden; position: relative; }
.ac-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%); top: -200px; right: -150px; pointer-events: none; }
.ac-num { font-family: var(--head); font-size: 5.5rem; font-weight: 900; color: rgba(245,243,238,0.08); letter-spacing: -0.05em; line-height: 1; margin-bottom: -1rem; position: relative; z-index: 1; }
.ac-h { font-family: var(--head); font-size: 1.625rem; font-weight: 800; color: var(--ivory); margin-bottom: 0.875rem; position: relative; z-index: 1; letter-spacing: -0.03em; }
.ac-p { font-size: 0.9375rem; color: rgba(245,243,238,0.45); line-height: 1.72; margin-bottom: 2rem; position: relative; z-index: 1; font-weight: 300; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; position: relative; z-index: 1; }
.chip { padding: 5px 13px; border-radius: 100px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); font-family: var(--head); font-size: 0.8125rem; font-weight: 700; color: rgba(245,243,238,0.65); letter-spacing: 0.02em; }
.float-card { position: absolute; background: var(--white); border-radius: var(--r-lg); padding: 1.125rem 1.375rem; box-shadow: var(--sh-xl); border: 1px solid var(--border-l); }
.fc-1 { bottom: -2rem; left: -2.5rem; min-width: 180px; }
.fc-2 { top: -2rem; right: -2rem; min-width: 160px; }
.fc-n { font-family: var(--head); font-size: 2rem; font-weight: 900; color: var(--night); line-height: 1; letter-spacing: -0.04em; }
.fc-l { font-size: 0.75rem; color: var(--muted); margin-top: 4px; font-weight: 300; }

#services { background: var(--night); }
.svc-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.svc-hd h2 { color: var(--ivory); }
.svc-hd-right p { color: rgba(245,243,238,0.45); font-size: 1.0625rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-d); border: 1px solid var(--border-d); border-radius: var(--r-xl); overflow: hidden; }
.sc { background: var(--night-2); padding: 2.5rem; transition: background 0.3s var(--e); position: relative; overflow: hidden; }
.sc::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,99,235,0.06), transparent); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.sc:hover::before { opacity: 1; }
.sc:hover { background: var(--night-3); }
.sc-num { font-family: var(--head); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.15em; color: rgba(245,243,238,0.2); text-transform: uppercase; margin-bottom: 1.75rem; display: block; }
.sc-ic { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.sc-t { font-family: var(--head); font-size: 1.25rem; font-weight: 800; color: var(--ivory); margin-bottom: 0.75rem; letter-spacing: -0.025em; }
.sc-d { font-size: 0.875rem; color: rgba(245,243,238,0.4); line-height: 1.65; font-weight: 300; }
.sc-outcome { margin-top: 1.25rem; padding: 0.625rem 0.875rem; background: rgba(132,204,22,0.1); border: 1px solid rgba(132,204,22,0.2); border-radius: var(--r); font-family: var(--head); font-size: 0.8rem; font-weight: 700; color: #a3e635; letter-spacing: 0.02em; }
.sc-arrow { display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-size: 0.8125rem; font-weight: 700; color: var(--electric); margin-top: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase; transition: gap var(--t); }
.sc:hover .sc-arrow { gap: 10px; }

#process { background: var(--ivory); }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border-l); border-radius: var(--r-xl); overflow: hidden; }
.ps { padding: 2.5rem 2rem; border-right: 1px solid var(--border-l); transition: background var(--t); position: relative; }
.ps:last-child { border-right: none; }
.ps:hover { background: var(--night); }
.ps:hover .ps-n, .ps:hover .ps-t, .ps:hover .ps-d { color: var(--ivory) !important; }
.ps:hover .ps-n { opacity: 0.2; }
.ps:hover .ps-d { color: rgba(245,243,238,0.45) !important; }
.ps-n { font-family: var(--head); font-size: 3.5rem; font-weight: 900; color: var(--ivory-2); letter-spacing: -0.05em; line-height: 1; margin-bottom: 1.5rem; display: block; transition: all var(--t); }
.ps-t { font-family: var(--head); font-size: 1.0625rem; font-weight: 800; color: var(--night); margin-bottom: 0.625rem; transition: color var(--t); }
.ps-d { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; transition: color var(--t); }

#tech { background: var(--ivory-2); }
.tech-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.ti { aspect-ratio: 1; border: 1px solid var(--border-l); border-radius: var(--r-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ti:hover { background: var(--night); border-color: var(--night); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.ti:hover .ti-nm { color: rgba(245,243,238,0.5); }
.ti-ic { font-size: 1.875rem; }
.ti-nm { font-family: var(--head); font-size: 0.75rem; font-weight: 700; color: var(--muted); text-align: center; letter-spacing: 0.04em; transition: color var(--t); }

#pmc { background: var(--night); padding: 9rem 0; position: relative; overflow: hidden; }
.pmc-bg { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(37,99,235,0.15) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent); }
.pmc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.pmc-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 100px; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); font-family: var(--head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--electric); margin-bottom: 1.75rem; }
.pmc-h2 { color: var(--ivory); margin-bottom: 1.5rem; }
.pmc-h2 em { color: var(--electric); font-style: normal; }
.pmc-p { color: rgba(245,243,238,0.5); font-size: 1.0625rem; margin-bottom: 2.5rem; font-weight: 300; }
.pmc-feats { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 3rem; }
.pmc-feat { display: flex; align-items: flex-start; gap: 13px; }
.pmc-ck { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background: rgba(132,204,22,0.15); border: 1px solid rgba(132,204,22,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 0.625rem; font-weight: 900; color: #a3e635; }
.pmc-ft { font-size: 0.9375rem; color: rgba(245,243,238,0.68); font-weight: 300; }
.pmc-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.pmc-dash { background: rgba(255,255,255,0.04); border: 1px solid var(--border-d); border-radius: var(--r-2xl); overflow: hidden; }
.pd-bar { background: rgba(255,255,255,0.06); border-bottom: 1px solid var(--border-d); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.pd-dots { display: flex; gap: 6px; }
.pd-dot { width: 10px; height: 10px; border-radius: 50%; }
.pd-ttl { font-family: var(--head); font-size: 0.75rem; font-weight: 700; color: rgba(245,243,238,0.4); letter-spacing: 0.06em; }
.pd-body { padding: 1.5rem; }
.pd-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.pd-stat { background: rgba(255,255,255,0.05); border-radius: var(--r); padding: 0.875rem; border: 1px solid var(--border-d); }
.pd-stat-n { font-family: var(--head); font-size: 1.75rem; font-weight: 900; color: var(--ivory); line-height: 1; letter-spacing: -0.04em; }
.pd-stat-l { font-family: var(--head); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,243,238,0.3); margin-top: 4px; }
.pd-jobs { display: flex; flex-direction: column; gap: 0.5rem; }
.pj { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.03); border-radius: var(--r); padding: 0.75rem 1rem; border: 1px solid var(--border-d); }
.pj-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pj-n { font-size: 0.8125rem; color: rgba(245,243,238,0.7); flex: 1; font-weight: 300; }
.pj-s { font-family: var(--head); font-size: 0.6875rem; font-weight: 700; padding: 2px 9px; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase; }
.s-on { background: rgba(132,204,22,0.15); color: #a3e635; }
.s-tr { background: rgba(96,165,250,0.15); color: #93c5fd; }
.s-pd { background: rgba(245,158,11,0.15); color: #fcd34d; }

#pillars { background: var(--night-2); padding: 7rem 0; }
.pillars-hd { margin-bottom: 4rem; }
.pillars-hd h2 { color: var(--ivory); margin-bottom: 1rem; }
.pillars-hd p { color: rgba(245,243,238,0.45); max-width: 500px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-d); border: 1px solid var(--border-d); border-radius: var(--r-xl); overflow: hidden; }
.plc { background: var(--night); padding: 2.25rem 2rem; }
.plc:hover { background: var(--night-3); }
.plc-ic { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.plc-t { font-family: var(--head); font-size: 1.0625rem; font-weight: 800; color: var(--ivory); margin-bottom: 0.625rem; letter-spacing: -0.02em; }
.plc-d { font-size: 0.875rem; color: rgba(245,243,238,0.4); line-height: 1.65; margin-bottom: 1.25rem; font-weight: 300; }
.plc-plats { display: flex; flex-wrap: wrap; gap: 5px; }
.plp { font-family: var(--head); font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.07); color: rgba(245,243,238,0.5); border: 1px solid rgba(255,255,255,0.08); }
.pillars-cta { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

#faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.faq-intro p { font-size: 1.0625rem; color: var(--muted); line-height: 1.75; margin: 1.25rem 0 2rem; font-weight: 300; }
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-q { width: 100%; background: none; border: none; padding: 1.375rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--head); font-size: 1rem; font-weight: 700; color: var(--night); }
.faq-q:hover, .faq-q.open { color: var(--blue); }
.faq-caret { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid var(--border-l2); display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.faq-q.open .faq-caret { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
.faq-caret svg { stroke: var(--night); transition: stroke var(--t); }
.faq-q.open .faq-caret svg { stroke: #fff; }
.faq-ans { overflow: hidden; max-height: 0; transition: max-height 0.38s var(--e); }
.faq-ans.open { max-height: 400px; }
.faq-ans-inner { padding: 0 0 1.375rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.78; font-weight: 300; }

#testimonials { background: var(--ivory-2); }
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tcard { background: var(--ivory); border: 1px solid var(--border-l); border-radius: var(--r-2xl); padding: 2.25rem; transition: all var(--t); }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.t-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1.375rem; letter-spacing: 2px; }
.t-text { font-size: 0.9375rem; color: var(--night); line-height: 1.78; font-style: italic; margin-bottom: 1.75rem; font-weight: 300; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 0.875rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.t-name { font-family: var(--head); font-size: 0.9375rem; font-weight: 800; color: var(--night); letter-spacing: -0.01em; }
.t-role { font-size: 0.8125rem; color: var(--muted); font-weight: 300; }

#cta-banner { background: var(--ivory); padding: 7rem 0; }
.cta-box { background: var(--night); border-radius: var(--r-2xl); padding: 6rem 5rem; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 4rem; flex-wrap: wrap; }
.cta-geo { position: absolute; width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(37,99,235,0.15); top: 50%; right: -200px; transform: translateY(-50%); pointer-events: none; }
.cta-geo2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(37,99,235,0.1); top: 50%; right: -100px; transform: translateY(-50%); pointer-events: none; }
.cta-text { position: relative; z-index: 1; max-width: 600px; }
.cta-text h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-text p { color: rgba(245,243,238,0.5); font-size: 1.125rem; }
.cta-act { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.cta-note { font-size: 0.8125rem; color: rgba(245,243,238,0.3); }

#contact { background: var(--ivory-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.75fr; gap: 6rem; }
.ci-h3 { margin-bottom: 0.625rem; }
.ci-p { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.25rem; font-weight: 300; }
.cd-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cd-item { display: flex; align-items: flex-start; gap: 12px; }
.cd-ic { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--ivory); border: 1px solid var(--border-l); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cd-lbl { font-family: var(--head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cd-val { font-size: 0.9375rem; font-weight: 400; color: var(--night); }
.li-cta { padding: 1.25rem 1.5rem; background: #f0f7ff; border-radius: var(--r-lg); border: 1px solid #cce0ff; display: flex; align-items: flex-start; gap: 12px; }
.li-cta-ic { font-size: 1.5rem; flex-shrink: 0; }
.li-cta-text { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.li-cta-text a { color: #0077b5; font-family: var(--head); font-weight: 700; }
.msf { background: var(--ivory); border: 1px solid var(--border-l); border-radius: var(--r-2xl); padding: 3rem; }
.fp { display: flex; align-items: center; margin-bottom: 2.75rem; }
.fp-s { display: flex; align-items: center; gap: 9px; flex: 1; font-family: var(--head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; color: var(--muted); transition: color var(--t); }
.fp-s.active { color: var(--blue); }
.fp-s.done { color: #4d7c0f; }
.fp-c { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--border-l2); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 0.8125rem; font-weight: 900; transition: all var(--t); }
.fp-s.active .fp-c { background: var(--blue); border-color: var(--blue); color: #fff; }
.fp-s.done .fp-c { background: var(--lime); border-color: var(--lime); color: #fff; }
.fp-l { flex: 1; height: 1px; background: var(--border-l2); margin: 0 0.5rem; transition: background var(--t); }
.fp-s.done + .fp-l { background: var(--lime); }
.fstep { display: none; }
.fstep.active { display: block; animation: fadeUp 0.3s var(--e); }
.fstep-hd { margin-bottom: 2rem; }
.fstep-hd h4 { font-family: var(--head); font-size: 1.25rem; font-weight: 800; color: var(--night); margin-bottom: 5px; letter-spacing: -0.02em; }
.fstep-hd p { font-size: 0.875rem; color: var(--muted); font-weight: 300; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fl { font-family: var(--head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--night); }
.fi, .fsel, .fta { padding: 0.9rem 1.125rem; border-radius: var(--r); border: 1.5px solid var(--border-l2); font-family: var(--body); font-size: 0.9375rem; color: var(--night); background: var(--ivory-2); transition: all var(--t); outline: none; resize: none; font-weight: 300; }
.fi:focus, .fsel:focus, .fta:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(37,99,235,0.08); }
.fi::placeholder, .fta::placeholder { color: var(--muted); }
.fta { height: 115px; }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.sp { padding: 1rem; border-radius: var(--r); border: 1.5px solid var(--border-l2); display: flex; align-items: flex-start; gap: 10px; }
.sp:hover { border-color: var(--blue); background: var(--blue-l); }
.sp.sel { border-color: var(--blue); background: var(--blue-l); }
.sp-ic { font-size: 1.25rem; flex-shrink: 0; }
.sp-tx .sp-t { font-family: var(--head); font-size: 0.875rem; font-weight: 700; color: var(--night); margin-bottom: 2px; }
.sp-tx .sp-d { font-size: 0.75rem; color: var(--muted); font-weight: 300; }
.sp-ck { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border-l2); flex-shrink: 0; margin-top: 2px; margin-left: auto; transition: all var(--t); }
.sp.sel .sp-ck { background: var(--blue); border-color: var(--blue); }
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.form-back:hover { border-color: var(--border-l2); color: var(--night); }
.form-next { flex: 1; justify-content: center; }
.form-priv { font-family: var(--head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; color: var(--muted); text-align: center; margin-top: 1.125rem; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success.show { display: block; animation: fadeUp 0.4s var(--e); }
.fs-ic { font-size: 3.5rem; margin-bottom: 1rem; }
.fs-h { font-family: var(--head); font-size: 2rem; font-weight: 900; color: var(--night); margin-bottom: 0.875rem; letter-spacing: -0.04em; }
.fs-p { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; font-weight: 300; }
.fs-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

footer { background: var(--night); padding: 6rem 0 2.5rem; border-top: 1px solid var(--border-d); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
.foot-logo { font-family: var(--head); font-size: 1.375rem; font-weight: 900; color: var(--ivory); letter-spacing: -0.04em; display: flex; align-items: center; gap: 10px; margin-bottom: 1.125rem; }
.foot-p { font-size: 0.875rem; color: rgba(245,243,238,0.35); line-height: 1.72; margin-bottom: 1.75rem; font-weight: 300; }
.foot-contact-d { font-size: 0.875rem; color: rgba(245,243,238,0.6); line-height: 2; font-weight: 300; margin-bottom: 1.75rem; }
.foot-contact-d a { color: rgba(245,243,238,0.6); transition: color var(--t); }
.foot-contact-d a:hover { color: var(--ivory); }
.foot-soc { display: flex; gap: 8px; }
.fsoc { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(245,243,238,0.6); transition: all var(--t); }
.fsoc:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.25); color: var(--ivory); }
.foot-col-h { font-family: var(--head); font-size: 0.75rem; font-weight: 900; color: var(--ivory); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.foot-links a { font-size: 0.875rem; color: rgba(245,243,238,0.35); transition: color var(--t); font-weight: 300; }
.foot-links a:hover { color: var(--ivory); }
.foot-bottom { border-top: 1px solid var(--border-d); padding-top: 2.25rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.foot-copy { font-size: 0.8125rem; color: rgba(245,243,238,0.2); font-weight: 300; }
.foot-btm-links { display: flex; gap: 1.75rem; }
.foot-btm-links a { font-size: 0.8125rem; color: rgba(245,243,238,0.2); transition: color var(--t); font-weight: 300; }
.foot-btm-links a:hover { color: rgba(245,243,238,0.6); }

.fr { opacity: 0; transform: translateY(32px); transition: opacity 0.65s var(--e), transform 0.65s var(--e); }
.fr.vis { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.loc-card { background: var(--ivory); border: 1px solid var(--border-l); border-radius: var(--r-2xl); padding: 2.5rem; transition: all 0.35s var(--e); position: relative; overflow: hidden; }
.loc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.loc-card:hover::after { transform: scaleX(1); }
.loc-city { font-family: var(--head); font-size: 2rem; font-weight: 900; color: var(--night); letter-spacing: -0.04em; margin-bottom: 4px; }
.loc-suburbs { font-family: var(--head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; }
.loc-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.72; margin-bottom: 1.5rem; font-weight: 300; }
.loc-addr { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--muted); font-weight: 300; margin-bottom: 1.5rem; }
.loc-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-size: 0.875rem; font-weight: 700; color: var(--blue); transition: gap var(--t); }
.loc-card:hover .loc-link { gap: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border-l); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.blog-thumb {
  width: 100%; height: 200px; object-fit: cover; display: block;
  background: var(--ivory-2);
}
.blog-thumb-placeholder {
  width: 100%; height: 200px; display: flex; align-items: center; justify-content: center;
  background: var(--night-3); color: var(--electric); font-size: 2.5rem;
}
.blog-body { padding: 1.75rem; }
.blog-tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  background: var(--blue-g); border: 1px solid rgba(37,99,235,0.2);
  font-family: var(--head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.875rem;
}
.blog-title {
  font-family: var(--head); font-size: 1.25rem; font-weight: 800;
  color: var(--night); letter-spacing: -0.02em; line-height: 1.3;
  margin-bottom: 0.625rem;
}
.blog-card:hover .blog-title { color: var(--blue); }
.blog-excerpt { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 1.25rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8125rem; color: var(--muted); font-weight: 300; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--head); font-size: 0.875rem; font-weight: 700;
  color: var(--blue); margin-top: 1rem; transition: gap var(--t);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ARTICLE PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--head); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--electric); transition: gap var(--t);
}
.article-back:hover { gap: 10px; }
.article-h1 {
  color: var(--ivory); max-width: 800px; margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15;
}
.article-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(245,243,238,0.5); font-weight: 300;
  margin-top: 1.5rem;
}
.article-content {
  max-width: 760px; margin: 0 auto;
}
.article-content p {
  font-size: 1.0625rem; line-height: 1.85; color: var(--night);
  font-weight: 300; margin-bottom: 1.75rem;
}
.article-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 3rem; margin-bottom: 1.25rem;
}
.article-content h3 {
  font-size: 1.25rem; margin-top: 2.5rem; margin-bottom: 1rem;
}
.article-content ul, .article-content ol {
  padding-left: 1.5rem; margin-bottom: 1.75rem;
}
.article-content li {
  font-size: 1.0625rem; line-height: 1.85; color: var(--night);
  font-weight: 300; margin-bottom: 0.5rem;
}
.article-content blockquote {
  border-left: 3px solid var(--blue); padding: 1.25rem 1.75rem;
  margin: 2rem 0; background: var(--blue-l); border-radius: 0 var(--r) var(--r) 0;
}
.article-content blockquote p {
  color: var(--night); font-size: 1.125rem; font-weight: 400;
  font-style: italic; margin-bottom: 0;
}
.article-content img {
  width: 100%; height: auto; border-radius: var(--r-lg);
  margin: 2rem 0;
}
.article-content a { color: var(--blue); text-decoration: underline; }
.article-content a:hover { color: var(--blue-2); }
.article-cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-l); }

@media(max-width:900px){
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(4,1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .outcomes-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
