*, *::before, *::after { box-sizing: border-box; }
/* ═══════════════════════════════════════════════════════════════
   NexCore Services Page — style.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg:           #0A0F1C;
  --bg-2:         #121826;
  --bg-3:         #0d1220;
  --surface:      #1A2235;
  --surface-2:    #202c42;
  --border:       rgba(255,255,255,0.07);
  --border-g:     rgba(0,200,83,0.22);
  --text:         #FFFFFF;
  --text-muted:   #B0B8C5;
  --text-faint:   #6F7A8A;
  --green:        #00C853;
  --green-dark:   #006837;
  --green-glow:   rgba(0,200,83,0.30);
  --green-subtle: rgba(0,200,83,0.08);
  --ai-blue:      #00A8FF;
  --tech-purple:  #6C63FF;
  --neon:         #39FF14;
  --orange:       #FF6B00;
  --grad-text:    linear-gradient(120deg,#00C853 0%,#00A8FF 50%,#6C63FF 100%);
  --grad-btn:     linear-gradient(135deg,#00C853,#006837);
  --font-d:       'Manrope', sans-serif;
  --font-b:       'Inter', sans-serif;
  --radius:       14px;
  --radius-lg:    22px;
  --ease:         cubic-bezier(0.16,1,0.3,1);
  --nav-h:        72px;
}

/* ── Reset ───────────────────────────────────────────────────── */
body.light {
  --bg: #F5F7FA; --bg-2: #EBEEF3; --bg-3: #E0E5EE;
  --surface: #FFFFFF; --surface-2: #F0F3F8;
  --border: rgba(0,0,0,.08); --border-g: rgba(0,200,83,.30);
  --text: #0A0F1C; --text-muted: #4A5568; --text-faint: #9AA5B4;
  --green-subtle: rgba(0,200,83,.10);
}
html { overflow-x:hidden }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-b); font-size: 16px; line-height: 1.7;
   cursor: pointer;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }

/* ── Noise overlay ───────────────────────────────────────────── */

/* ── Container ───────────────────────────────────────────────── */
.container { max-max-width: 1240px; width: 100%; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: 9px;
  font-family: var(--font-d); font-weight: 700; font-size: .9rem;
  letter-spacing: .01em; transition: all .3s var(--ease);
  position: relative; overflow: hidden; cursor: pointer;
}
.btn::after { content: ''; position: absolute; inset: 0; opacity: 0; background: rgba(255,255,255,.1); border-radius: inherit; transition: opacity .25s; }
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: 0 4px 22px var(--green-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 38px var(--green-glow), 0 0 0 1px rgba(0,200,83,.35); }
.btn-ghost { border: 1.5px solid var(--green); color: var(--green); background: var(--green-subtle); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(0,200,83,.16); transform: translateY(-2px); box-shadow: 0 6px 26px var(--green-glow); }
.btn-lg { padding: 15px 34px; font-size: 1rem; border-radius: 11px; }
.btn-xl { padding: 17px 40px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-pulse { animation: btnPulse 3s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 4px 22px var(--green-glow); }
  50%      { box-shadow: 0 4px 44px rgba(0,200,83,.6), 0 0 0 7px rgba(0,200,83,.07); }
}

/* ── Section helpers ─────────────────────────────────────────── */
.section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-block; font-family: var(--font-d); font-size: .7rem;
  font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); background: var(--green-subtle);
  border: 1px solid var(--border-g); padding: 4px 14px;
  border-radius: 100px; margin-bottom: 1.25rem;
}
.section-header { text-align: center; max-max-width: 700px; width: 100%; margin: 0 auto 5rem; }
.section-title {
  font-family: var(--font-d); font-size: clamp(1.875rem, 3.75vw, 3.0469rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: 1.1rem;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-max-width: 560px; width: 100%; margin: 0 auto; line-height: 1.75; }
.gradient-text {
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Scroll animations ───────────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(40px); animation: revealUp .85s var(--ease) forwards; animation-delay: var(--d,0s); }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
.reveal-section, .reveal-card { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-card { transition-delay: calc(var(--i,0) * .1s); }
.reveal-section.is-visible, .reveal-card.is-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */

/* Logo */
/* Nav links */
/* Chevron */

/* Mega menu */

/* Nav CTA */
/* Hamburger */
/* ── Mobile backdrop ─────────────────────────────────────────── */
/* ── Mobile sidebar ──────────────────────────────────────────── */

/* Mobile nav items */
.mobile-nav-item:hover .mobile-nav-label,
/* Mobile footer */
/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h); background: var(--bg);
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(110px);
  pointer-events: none; animation: glowFloat 9s ease-in-out infinite;
}
.hero-glow-1 { max-width: 700px; width: 100%; height: 700px; background: radial-gradient(circle,rgba(0,200,83,.11) 0%,transparent 70%); top: -150px; right: -100px; }
.hero-glow-2 { max-width: 500px; width: 100%; height: 500px; background: radial-gradient(circle,rgba(108,99,255,.09) 0%,transparent 70%); bottom: -80px; left: -80px; animation-delay: -3.5s; }
.hero-glow-3 { max-width: 400px; width: 100%; height: 400px; background: radial-gradient(circle,rgba(0,168,255,.06) 0%,transparent 70%); top: 35%; left: 38%; animation-delay: -7s; }
@keyframes glowFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,14px) scale(.97); }
}
.hero-section .container { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 5rem; }
.hero-content { max-max-width: 820px; width: 100%; }
.hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; color: var(--text-faint); margin-bottom: 1.25rem;
}
.breadcrumb-sep { opacity: .4; }
.breadcrumb-active { color: var(--green); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600;
  color: var(--green); background: var(--green-subtle); border: 1px solid var(--border-g);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 10px var(--green); animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 4px var(--green); } 50% { box-shadow: 0 0 18px var(--green), 0 0 32px var(--green-glow); } }
.hero-headline {
  font-family: var(--font-d); font-size: clamp(2.8125rem, 6.5625vw, 5.1562rem);
  font-weight: 800; line-height: 1.07; letter-spacing: -.035em;
  margin-bottom: 1.5rem;
}
.hero-sub { font-size: clamp(0.9375rem, 1.875vw, 1.125rem); color: var(--text-muted); max-max-width: 560px; width: 100%; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat strong {
  font-family: var(--font-d); font-size: 1.65rem; font-weight: 800;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat span { font-size: .78rem; color: var(--text-muted); letter-spacing: .03em; }
.hero-divider { width: 1px; height: 44px; background: var(--border-g); }
.hero-scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint);
}
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom,var(--green),transparent); animation: scrollPulse 1.7s ease-in-out infinite; }
@keyframes scrollPulse {
  0%    { transform: scaleY(1); transform-origin: top; }
  50%   { transform: scaleY(0); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100%  { transform: scaleY(1); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES ROW CARDS
══════════════════════════════════════════════════════════════ */
.services-grid-section { background: var(--bg-2); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.65rem;
  display: flex; flex-direction: column; gap: .85rem;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .35s;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-7px);
  border-color: var(--sc, var(--green));
  box-shadow: 0 28px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(0,200,83,.08);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--si, rgba(0,200,83,.12)); color: var(--st, #00C853);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 800; }
.svc-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-d); font-size: .8rem; font-weight: 700;
  color: var(--sc, var(--green)); margin-top: .25rem;
  transition: gap .2s; background: none; border: none;
  text-decoration: none; cursor: pointer;
}
.svc-card:hover .svc-link { gap: 9px; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process-section { background: var(--bg); }
.process-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; }
.process-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.4rem; text-align: center;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s; cursor: pointer;
}
.process-step:hover { border-color: var(--border-g); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(0,200,83,.12); }
.step-num { font-family: var(--font-d); font-size: .68rem; font-weight: 800; letter-spacing: .15em; color: var(--green); margin-bottom: .75rem; }
.step-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--green-subtle); border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center; color: var(--green);
  margin: 0 auto 1.25rem;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.process-step:hover .step-icon { transform: scale(1.12); background: rgba(0,200,83,.18); box-shadow: 0 0 22px var(--green-glow); }
.process-step h4 { font-family: var(--font-d); font-size: .98rem; font-weight: 700; margin-bottom: .6rem; }
.process-step p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.step-duration {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-family: var(--font-d); font-size: .67rem; font-weight: 700; letter-spacing: .08em;
  color: var(--green); background: var(--green-subtle); border: 1px solid var(--border-g);
}

/* ══════════════════════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════════════════════ */
.industries-section { background: var(--bg-2); }
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.industry-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: border-color .3s, transform .4s var(--ease), box-shadow .4s; cursor: pointer;
}
.industry-card:hover { border-color: var(--border-g); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 28px rgba(0,200,83,.1); }
.industry-icon { font-size: 2.1rem; display: block; margin-bottom: 1.1rem; }
.industry-card h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.industry-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.industry-bar { height: 3px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.industry-bar::after {
  content: ''; display: block; height: 100%; width: 0;
  background: linear-gradient(90deg,var(--green),var(--ai-blue));
  border-radius: 100px; transition: width 1.4s var(--ease);
}
.industry-card.is-visible .industry-bar::after { width: var(--pct,0%); }

/* ══════════════════════════════════════════════════════════════
   CASE STUDY
══════════════════════════════════════════════════════════════ */
.case-study-section { background: var(--bg); }
.case-study-card {
  display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem;
  background: var(--surface); border: 1px solid var(--border-g);
  border-radius: var(--radius-lg); padding: 3.5rem;
  box-shadow: 0 0 60px rgba(0,200,83,.05); position: relative; overflow: hidden;
}
.case-study-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--green),var(--ai-blue),var(--tech-purple));
}
.case-badge {
  display: inline-block; padding: 4px 13px; border-radius: 100px; margin-bottom: 1.25rem;
  font-family: var(--font-d); font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); background: var(--green-subtle); border: 1px solid var(--border-g);
}
.case-study-left h3 { font-family: var(--font-d); font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.case-intro { font-size: .94rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.case-flow { display: flex; flex-direction: column; gap: 1.25rem; }
.case-flow-step { display: flex; align-items: flex-start; gap: 1rem; }
.case-flow-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--c,var(--green)); box-shadow: 0 0 10px var(--c,var(--green-glow)); flex-shrink: 0; margin-top: .35rem; }
.case-flow-step > div { display: flex; flex-direction: column; gap: 3px; }
.case-flow-step strong { font-family: var(--font-d); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-flow-step span { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.case-study-right { display: flex; flex-direction: column; gap: 2rem; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.case-metric { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.metric-val { display: block; font-family: var(--font-d); font-size: 1.9rem; font-weight: 800; margin-bottom: .3rem; }
.metric-label { font-size: .74rem; color: var(--text-muted); line-height: 1.4; }
.case-visual { text-align: center; }
.case-chart { display: flex; align-items: flex-end; justify-content: center; gap: 2rem; height: 110px; margin-bottom: .75rem; }
.chart-bar { width: 56px; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; }
.chart-bar::before { content: ''; width: 100%; border-radius: 7px 7px 0 0; background: var(--c,var(--green)); height: var(--h,50%); opacity: .85; box-shadow: 0 0 18px var(--c); }
.chart-bar span { font-size: .74rem; color: var(--text-muted); font-family: var(--font-d); font-weight: 700; }
.chart-label { font-size: .78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   TRUST CARDS
══════════════════════════════════════════════════════════════ */
.trust-section { background: var(--bg-2); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.trust-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s; cursor: pointer;
}
.trust-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--green),var(--ai-blue));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.trust-card:hover::after { transform: scaleX(1); }
.trust-card:hover { border-color: var(--border-g); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 28px rgba(0,200,83,.1); }
.trust-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.trust-card h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.trust-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item:hover, .faq-item[data-open="true"] { border-color: var(--border-g); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; text-align: left; cursor: pointer;
  font-family: var(--font-d); font-size: .94rem; font-weight: 700; color: var(--text);
  transition: color .2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-subtle); border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green);
  transition: transform .35s var(--ease), background .2s;
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); background: var(--green); color: #000; border-color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item[data-open="true"] .faq-answer { max-height: 280px; }
.faq-answer-inner { padding: 0 1.4rem 1.4rem; }
.faq-answer-inner p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.final-cta-section { background: var(--bg-2); position: relative; overflow: hidden; padding: 140px 0; }
.cta-glow-1 { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); max-width: 900px; width: 100%; height: 500px; background: radial-gradient(ellipse at top,rgba(0,200,83,.08) 0%,transparent 70%); pointer-events: none; }
.cta-glow-2 { position: absolute; bottom: -100px; right: -100px; max-width: 500px; width: 100%; height: 500px; background: radial-gradient(circle,rgba(108,99,255,.07) 0%,transparent 70%); pointer-events: none; }
.final-cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin: 2.5rem 0 1.75rem; }
.cta-trust-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; font-size: .83rem; color: var(--text-muted); font-family: var(--font-d); font-weight: 600; }
.cta-trust-row span { display: flex; align-items: center; gap: 6px; color: var(--green); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-3); border-top: 1px solid var(--border); }
.footer-top-bar { background: rgba(0,200,83,.05); border-bottom: 1px solid var(--border-g); padding: 13px 0; }
.footer-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: var(--text-muted); font-family: var(--font-d); font-weight: 600; }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: 7px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .2s; cursor: pointer; }
.social-link:hover { background: var(--green-subtle); color: var(--green); border-color: var(--border-g); box-shadow: 0 0 14px var(--green-glow); }
.footer-main { padding: 60px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; max-max-width: 280px; width: 100%; }
.newsletter-wrap { margin-top: 1.5rem; }
.newsletter-label { font-family: var(--font-d); font-size: .78rem; font-weight: 700; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .65rem; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; background: var(--surface); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 13px; color: var(--text); font-size: .85rem; transition: border-color .2s; }
.newsletter-form input:focus { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-subtle); }
.footer-col h5 { font-family: var(--font-d); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .875rem; color: var(--text-muted); transition: color .2s; cursor: pointer; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .79rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-faint); transition: color .2s; cursor: pointer; }
.footer-legal a:hover { color: var(--green); }

/* ── Theme toggle ── */
/* ── Progress ring / back to top ── */
.progress-ring-wrap {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 2200;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: opacity .35s, visibility .35s, transform .35s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.progress-ring-wrap.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.progress-ring-wrap:hover { transform: translateY(-3px) scale(1.06); }
.progress-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.progress-ring__track { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 2.5; }
body.light .progress-ring__track { stroke: rgba(0,0,0,.08); }
.progress-ring__fill {
  fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 125.66; stroke-dashoffset: 125.66; transition: stroke-dashoffset .1s linear;
}
.progress-ring__icon { position: relative; z-index: 1; color: var(--green); }

/* ── Mobile CTA button (hidden on desktop, shown on mobile) ── */
.mobile-cta-btn { display: none; }

/* ══════════════════════════════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px;
  border-radius: 50%; background: var(--surface); border: 1.5px solid var(--border-g);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  z-index: 1100; opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s, box-shadow .2s;
  cursor: pointer !important;
}
.scroll-top.visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--green-subtle); box-shadow: 0 0 24px var(--green-glow); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 1100px) {
  .process-track { grid-template-columns: repeat(3,1fr); }
  .case-study-card { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
  .mobile-cta-btn { display: inline-flex; }
  .industries-grid, .trust-grid { grid-template-columns: repeat(2,1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { cursor:default; }
  a { cursor: pointer; }
  .btn { cursor: pointer; }
  .section { padding: 75px 0; }
  .hero-headline { font-size: clamp(2.3438rem, 8.4375vw, 3.5156rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.25rem; }
  .process-track { grid-template-columns: repeat(2,1fr); }
  .industries-grid, .trust-grid { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-top-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .svc-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-divider { display: none; }
  .case-metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-trust-row { flex-direction: column; align-items: center; gap: .75rem; }
}

img{max-width:100%;height:auto;}
img { max-width: 100%; height: auto; }

/* Logo Fix */

/* Logo sizing is controlled via Appearance → Customize → Logo & Branding.
   CSS custom properties are set by greenedge_logo_inline_css() in functions.php
   and consumed by components.css. Do not add hardcoded overrides here. */
