/* ══════════════════════════════════════════════════════════════════
   Green Edge Technologies — IT Procurement · it-procurement.css
   Aesthetic: Industrial blueprint / enterprise logistics command centre
   Accent: Electric amber-gold + deep navy — distinct from all sibling pages
══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --bg:#0A0F1C; --bg-2:#121826; --bg-3:#0d1220;
  --surface:#1A2235; --surface-2:#202c42;
  --border:rgba(255,255,255,.07); --border-g:rgba(0,200,83,.22);
  --text:#FFFFFF; --text-muted:#B0B8C5; --text-faint:#6F7A8A;
  --green:#00C853; --green-dark:#006837;
  --green-glow:rgba(0,200,83,.30); --green-subtle:rgba(0,200,83,.08);
  --ai-blue:#00A8FF; --tech-purple:#6C63FF; --orange:#FF6B00;
  /* Procurement page accent — amber gold */
  --gold:#F5A623; --gold-glow:rgba(245,166,35,.28); --gold-subtle:rgba(245,166,35,.08);
  --grad-text:linear-gradient(120deg,#00C853 0%,#00A8FF 50%,#6C63FF 100%);
  --grad-btn:linear-gradient(135deg,#00C853,#006837);
  --grad-gold:linear-gradient(135deg,#F5A623,#E8830A);
  --font-d:'Manrope',sans-serif; --font-b:'Inter',sans-serif;
  --mono:'JetBrains Mono',monospace;
  --radius:14px; --radius-lg:22px;
  --ease:cubic-bezier(.16,1,.3,1);
  --nav-h:72px
}
body.light {
  --bg:#F4F6FA; --bg-2:#EBEEF5; --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);
  --gold-subtle:rgba(245,166,35,.1)
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; overflow-x:hidden }
body {
  background:var(--bg); color:var(--text);
  font-family:var(--font-b); font-size:16px; line-height:1.7;
  cursor:default;
  transition:background .4s,color .4s
}
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 }
img { display:block; max-width:100%; height:auto }

/* NOISE */
/* CURSOR — amber for procurement theme */

/* 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 40px 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) }
.btn-ghost:hover { background:rgba(0,200,83,.16); transform:translateY(-2px); box-shadow:0 6px 26px var(--green-glow) }
.btn-gold { background:var(--grad-gold); color:#fff; box-shadow:0 4px 22px var(--gold-glow) }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 10px 40px var(--gold-glow) }
.btn-lg  { padding:15px 34px; font-size:1rem; border-radius:11px }
.btn-xl  { padding:17px 42px; 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 SHARED */
.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-tag--gold {
  color:var(--gold); background:var(--gold-subtle);
  border-color:rgba(245,166,35,.25)
}
.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
}
.gold-text { color:var(--gold) }

/* REVEALS */
.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)*.08s) }
.reveal-section.is-visible,.reveal-card.is-visible { opacity:1; transform:translateY(0) }

/* BACK TO TOP */
.progress-ring-wrap {
  position:fixed; bottom:2rem; right:2rem; z-index:1200;
  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 }
.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) }

/* ══ NAV ═════════════════════════════════════════════════════════════ */
/* ══ 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:32px; height:32px; border-radius:8px; background:var(--surface);
  border:1px solid var(--border); display:flex; align-items:center;
  justify-content:center; color:var(--text-faint); transition:all .2s; cursor:pointer
}
.social-link:hover { background:var(--green-subtle); color:var(--green); border-color:var(--border-g) }
.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-width:280px }
.newsletter-wrap { margin-top:1.5rem }
.newsletter-label {
  font-family:var(--font-d); font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--text-faint); margin-bottom:.75rem
}
.newsletter-form { display:flex; gap:.5rem }
.newsletter-form input {
  flex:1; background:var(--surface); border:1px solid var(--border);
  border-radius:9px; padding:.7rem 1rem; color:var(--text); font-size:.85rem; min-width:0
}
.newsletter-form input:focus { border-color:var(--border-g); box-shadow:0 0 0 3px rgba(0,200,83,.1) }
.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) }

/* ══════════════════════════════════════════════════════════════════
   PROCUREMENT PAGE — UNIQUE BLUEPRINT / LOGISTICS AESTHETIC
══════════════════════════════════════════════════════════════════ */

/* ── HERO ════════════════════════════════════════════════════════════ */
.proc-hero {
  min-height:100svh; display:flex; align-items:center;
  padding-top:var(--nav-h); background:var(--bg);
  position:relative; overflow:hidden
}
/* Blueprint dot grid unique to this page */
.proc-hero-grid {
  position:absolute; inset:0; pointer-events:none; opacity:1;
  background-image:
    radial-gradient(circle, rgba(245,166,35,.12) 1px, transparent 1px);
  background-size:36px 36px
}
body.light .proc-hero-grid { opacity:.4 }
/* radial glows */
.proc-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 55% at 75% 40%, rgba(245,166,35,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 12% 72%, rgba(0,200,83,.05) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 90% 85%, rgba(0,168,255,.04) 0%, transparent 50%)
}
.proc-hero-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4.5rem; align-items:center;
  padding:5rem 0 4rem; position:relative; z-index:1
}

/* left column */
.proc-hero-eyebrow { display:flex; align-items:center; gap:10px; margin-bottom:1.5rem }
.proc-eyebrow-badge {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--mono); font-size:.65rem; font-weight:500;
  color:var(--gold); letter-spacing:.1em; text-transform:uppercase;
  padding:4px 12px; border:1px solid rgba(245,166,35,.25);
  border-radius:4px; background:var(--gold-subtle)
}
.proc-eyebrow-dot {
  width:7px; height:7px; border-radius:50%; background:var(--gold);
  box-shadow:0 0 10px var(--gold-glow);
  animation:goldPulse 2.4s ease-in-out infinite
}
@keyframes goldPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.6)} }
.proc-hero-title {
  font-family:var(--font-d);
  font-size:clamp(2.3438rem, 4.6875vw, 4.125rem);
  font-weight:800; line-height:1.06;
  letter-spacing:-.04em; margin-bottom:1.4rem;
  animation:heroFadeUp .9s var(--ease) .1s both
}
@keyframes heroFadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.proc-hero-sub {
  font-size:1.05rem; color:var(--text-muted); line-height:1.82;
  max-max-width: 500px; width: 100%; margin-bottom:2.5rem;
  animation:heroFadeUp .9s var(--ease) .2s both
}
.proc-hero-ctas { display:flex; gap:.85rem; flex-wrap:wrap; animation:heroFadeUp .9s var(--ease) .3s both }
/* trust bar */
.proc-trust-bar {
  display:flex; gap:2rem; margin-top:2.5rem; flex-wrap:wrap;
  animation:heroFadeUp .9s var(--ease) .4s both
}
.proc-trust-item { display:flex; align-items:center; gap:.55rem }
.proc-trust-icon {
  width:32px; height:32px; border-radius:8px;
  background:var(--gold-subtle); border:1px solid rgba(245,166,35,.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0
}
.proc-trust-text { font-family:var(--font-d); font-size:.78rem; font-weight:700; color:var(--text-muted) }
.proc-trust-text span { display:block; font-size:.68rem; font-weight:500; color:var(--text-faint) }

/* right: IT equipment photo collage */
.proc-hero-visual { animation:heroFadeUp .9s var(--ease) .18s both; position:relative }
.proc-hero-img-main {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 40px 100px rgba(0,0,0,.65);
  aspect-ratio:4/3; position:relative
}
body.light .proc-hero-img-main { box-shadow:0 40px 100px rgba(0,0,0,.14) }
.proc-hero-img-main img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease)
}
.proc-hero-img-main:hover img { transform:scale(1.04) }
/* overlay tint */
.proc-hero-img-main::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, transparent 40%, rgba(10,15,28,.7) 100%)
}
/* floating status chips */
.proc-chip {
  position:absolute; display:flex; align-items:center; gap:8px;
  font-family:var(--font-d); font-size:.7rem; font-weight:700;
  padding:8px 14px; border-radius:100px; backdrop-filter:blur(12px);
  box-shadow:0 8px 32px rgba(0,0,0,.45); z-index:2; white-space:nowrap
}
.proc-chip--a {
  top:-16px; right:-10px;
  background:rgba(245,166,35,.15); border:1px solid rgba(245,166,35,.35); color:var(--gold);
  animation:floatA 3.8s ease-in-out infinite
}
.proc-chip--b {
  bottom:-16px; left:-8px;
  background:rgba(0,200,83,.12); border:1px solid rgba(0,200,83,.3); color:var(--green);
  animation:floatB 4.2s ease-in-out infinite
}
.proc-chip--c {
  bottom:48px; right:-18px;
  background:rgba(0,168,255,.1); border:1px solid rgba(0,168,255,.25); color:var(--ai-blue);
  animation:floatA 5s ease-in-out .5s infinite
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
/* small thumbnails row below main image */
.proc-hero-thumbs {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:.75rem; margin-top:.75rem
}
.proc-hero-thumb {
  border-radius:12px; overflow:hidden;
  border:1px solid var(--border); aspect-ratio:4/3;
  transition:transform .35s var(--ease),border-color .3s
}
.proc-hero-thumb:hover { transform:translateY(-4px); border-color:rgba(245,166,35,.4) }
.proc-hero-thumb img { width:100%; height:100%; object-fit:cover }

/* ── STATS BAR ────────────────────────────────────────────────────── */
.stats-bar {
  background:var(--bg-2); border-top:1px solid var(--border);
  border-bottom:1px solid var(--border); padding:32px 0
}
.stats-bar-inner {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0
}
.stat-item {
  text-align:center; padding:0 1.5rem;
  border-right:1px solid var(--border)
}
.stat-item:last-child { border-right:none }
.stat-val {
  font-family:var(--font-d); font-size:2.4rem; font-weight:800;
  letter-spacing:-.04em; color:var(--text); line-height:1
}
.stat-val span { color:var(--gold) }
.stat-label { font-size:.78rem; color:var(--text-faint); font-family:var(--font-d); font-weight:600; margin-top:.4rem }

/* ── WHY SECTION — alternating 2-col layout with image ──────────── */
.why-section { background:var(--bg); padding:110px 0; overflow:hidden }
.why-layout {
  display:grid; grid-template-columns:1fr 1fr;
  gap:6rem; align-items:center
}
.why-image-col { position:relative }
.why-img-stack { position:relative; width:100% }
.why-img-main {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 28px 80px rgba(0,0,0,.5);
  aspect-ratio:4/3
}
.why-img-main img { width:100%; height:100%; object-fit:cover }
/* smaller offset card */
.why-img-accent {
  position:absolute; bottom:-30px; right:-24px;
  width:55%; border-radius:14px; overflow:hidden;
  border:1px solid rgba(245,166,35,.25);
  box-shadow:0 16px 50px rgba(0,0,0,.5);
  aspect-ratio:4/3
}
.why-img-accent img { width:100%; height:100%; object-fit:cover }
/* metric badge */
.why-metric {
  position:absolute; top:20px; left:-20px; z-index:2;
  background:var(--surface); border:1px solid rgba(245,166,35,.3);
  border-radius:14px; padding:14px 18px;
  box-shadow:0 12px 40px rgba(0,0,0,.4)
}
.why-metric-val { font-family:var(--font-d); font-size:1.6rem; font-weight:800; color:var(--gold); line-height:1 }
.why-metric-label { font-size:.72rem; color:var(--text-faint); font-family:var(--font-d); margin-top:3px }
/* text column */
.why-text-col {}
.why-text-col .section-tag { margin-bottom:1.25rem }
.why-text-col h2 {
  font-family:var(--font-d); font-size:clamp(1.7812rem, 3.2812vw, 2.8125rem);
  font-weight:800; letter-spacing:-.04em; line-height:1.1; margin-bottom:1.1rem
}
.why-text-col p { color:var(--text-muted); line-height:1.82; margin-bottom:2rem }
.why-cards { display:flex; flex-direction:column; gap:.85rem }
.why-card {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1.1rem 1.25rem; border-radius:var(--radius);
  background:var(--surface); border:1px solid var(--border);
  transition:border-color .3s,transform .35s var(--ease)
}
.why-card:hover { border-color:rgba(245,166,35,.3); transform:translateX(5px) }
.why-card-icon {
  width:40px; height:40px; border-radius:10px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); transition:transform .3s var(--ease)
}
.why-card:hover .why-card-icon { transform:scale(1.1) }
.why-card h4 { font-family:var(--font-d); font-size:.9rem; font-weight:800; margin-bottom:.25rem }
.why-card p { font-size:.82rem; color:var(--text-muted); line-height:1.65; margin:0 }

/* ── EQUIPMENT GRID — image cards ───────────────────────────────── */
.equip-section { background:var(--bg-2); padding:110px 0; overflow:hidden }
.equip-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 80% 20%, rgba(245,166,35,.04) 0%, transparent 55%)
}
.equip-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
.equip-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden; cursor:pointer;
  transition:border-color .3s,box-shadow .35s,transform .35s var(--ease)
}
.equip-card:hover { border-color:rgba(245,166,35,.35); box-shadow:0 24px 64px rgba(0,0,0,.38); transform:translateY(-6px) }
/* image zone at top */
.equip-card-img {
  aspect-ratio:16/9; overflow:hidden; position:relative;
  background:var(--bg-3)
}
.equip-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .55s var(--ease)
}
.equip-card:hover .equip-card-img img { transform:scale(1.07) }
/* image overlay shimmer on hover */
.equip-card-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(10,15,28,.55) 100%);
  pointer-events:none
}
.equip-card-body { padding:1.5rem }
.equip-card-icon {
  width:42px; height:42px; border-radius:11px; margin-bottom:1rem;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); transition:transform .3s var(--ease)
}
.equip-card:hover .equip-card-icon { transform:scale(1.1) rotate(-5deg) }
.equip-card h3 { font-family:var(--font-d); font-size:1rem; font-weight:800; margin-bottom:.45rem }
.equip-card p { font-size:.84rem; color:var(--text-muted); line-height:1.72 }
.equip-card-spec {
  display:flex; flex-wrap:wrap; gap:.4rem; margin-top:.85rem
}
.equip-spec {
  font-family:var(--mono); font-size:.58rem; font-weight:500;
  color:var(--text-faint); padding:2px 8px;
  border:1px solid var(--border); border-radius:3px
}

/* ── INSTALLATION SERVICES — wide image-left cards ──────────────── */
.install-section { background:var(--bg); padding:110px 0 }
.install-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
.install-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden; cursor:pointer;
  display:flex; flex-direction:column;
  transition:border-color .3s,box-shadow .35s,transform .35s var(--ease)
}
.install-card:hover { border-color:var(--border-g); box-shadow:0 20px 55px rgba(0,0,0,.32); transform:translateY(-5px) }
.install-card-img {
  aspect-ratio:16/9; overflow:hidden; position:relative; background:var(--bg-3)
}
.install-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease) }
.install-card:hover .install-card-img img { transform:scale(1.07) }
.install-card-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(10,15,28,.5) 100%);
  pointer-events:none
}
/* coloured top strip */
.install-card-bar {
  height:3px; background:var(--ic-accent, var(--green))
}
.install-card-body { padding:1.5rem; flex:1; display:flex; flex-direction:column }
.install-icon {
  width:44px; height:44px; border-radius:12px; margin-bottom:1rem;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); flex-shrink:0;
  transition:transform .3s var(--ease)
}
.install-card:hover .install-icon { transform:scale(1.1) rotate(-4deg) }
.install-card h3 { font-family:var(--font-d); font-size:.98rem; font-weight:800; margin-bottom:.45rem }
.install-card p { font-size:.84rem; color:var(--text-muted); line-height:1.72; flex:1 }

/* ── PROCESS — full-width horizontal numbered steps with image ───── */
.process-section {
  background:var(--bg-2); padding:110px 0; overflow:hidden; position:relative
}
.process-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 100%, rgba(245,166,35,.05) 0%, transparent 60%)
}
/* big image banner */
.proc-img-banner {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border); margin-bottom:4rem;
  position:relative; aspect-ratio:21/7
}
.proc-img-banner img { width:100%; height:100%; object-fit:cover }
.proc-img-banner::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(10,15,28,.8) 0%, transparent 40%, transparent 60%, rgba(10,15,28,.8) 100%);
  pointer-events:none
}
.proc-img-banner-text {
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; z-index:1; text-align:center
}
.proc-img-banner-text h3 {
  font-family:var(--font-d); font-size:clamp(1.3125rem, 2.8125vw, 2.3438rem);
  font-weight:800; letter-spacing:-.03em; margin-bottom:.5rem
}
.proc-img-banner-text p { color:var(--text-muted); font-size:.95rem }
/* timeline steps */
.proc-steps {
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:0; position:relative
}
/* connecting line */
.proc-steps::before {
  content:''; position:absolute; top:32px; left:10%; right:10%; height:2px;
  background:linear-gradient(90deg, var(--green) 0%, rgba(245,166,35,.5) 50%, rgba(0,168,255,.3) 100%)
}
.proc-step {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; padding:0 .75rem; position:relative; z-index:1
}
.proc-step-num {
  width:64px; height:64px; border-radius:50%;
  background:var(--bg-3); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.25rem; position:relative;
  transition:border-color .35s,background .35s,transform .35s var(--ease)
}
.proc-step:hover .proc-step-num { border-color:var(--gold); background:var(--gold-subtle); transform:scale(1.08) }
.proc-step-badge {
  position:absolute; top:-8px; right:-8px;
  width:22px; height:22px; border-radius:50%;
  background:var(--gold); color:#0A0F1C;
  font-family:var(--font-d); font-size:.62rem; font-weight:800;
  display:flex; align-items:center; justify-content:center
}
.proc-step h4 { font-family:var(--font-d); font-size:.9rem; font-weight:800; margin-bottom:.4rem; line-height:1.3 }
.proc-step p { font-size:.78rem; color:var(--text-muted); line-height:1.65 }

/* ── SOLUTIONS GRID — image banner + 3-col cards ─────────────────── */
.solutions-section { background:var(--bg); padding:110px 0 }
/* full-width offset image strip */
.solutions-split {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center; margin-bottom:5rem
}
.solutions-split-img {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 30px 80px rgba(0,0,0,.5);
  aspect-ratio:4/3
}
.solutions-split-img img { width:100%; height:100%; object-fit:cover }
.solutions-split-text .section-tag { margin-bottom:1.25rem }
.solutions-split-text h2 {
  font-family:var(--font-d); font-size:clamp(1.6875rem, 2.8125vw, 2.625rem);
  font-weight:800; letter-spacing:-.04em; line-height:1.15; margin-bottom:1rem
}
.solutions-split-text p { color:var(--text-muted); line-height:1.8; margin-bottom:2rem }
.solutions-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem }
.sol-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden; cursor:pointer;
  transition:border-color .3s,transform .35s var(--ease),box-shadow .35s
}
.sol-card:hover { border-color:rgba(245,166,35,.3); transform:translateY(-5px); box-shadow:0 20px 55px rgba(0,0,0,.3) }
.sol-card-img { aspect-ratio:16/9; overflow:hidden; background:var(--bg-3) }
.sol-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease) }
.sol-card:hover .sol-card-img img { transform:scale(1.07) }
.sol-card-body { padding:1.4rem }
.sol-card-icon {
  width:40px; height:40px; border-radius:11px; margin-bottom:.9rem;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); transition:transform .3s var(--ease)
}
.sol-card:hover .sol-card-icon { transform:scale(1.1) rotate(-5deg) }
.sol-card h3 { font-family:var(--font-d); font-size:.95rem; font-weight:800; margin-bottom:.4rem }
.sol-card p { font-size:.82rem; color:var(--text-muted); line-height:1.7 }

/* ── INDUSTRIES — large cards with background photo tint ─────────── */
.ind-section { background:var(--bg-2); padding:110px 0 }
.ind-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
.ind-card {
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--border); cursor:pointer; position:relative;
  transition:border-color .3s,box-shadow .35s,transform .35s var(--ease)
}
.ind-card:hover { border-color:rgba(245,166,35,.35); box-shadow:0 24px 64px rgba(0,0,0,.4); transform:translateY(-6px) }
.ind-card-img { aspect-ratio:3/2; overflow:hidden; position:relative }
.ind-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease) }
.ind-card:hover .ind-card-img img { transform:scale(1.07) }
.ind-card-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 30%, rgba(10,15,28,.8) 100%);
  pointer-events:none
}
body.light .ind-card-img::after {
  background:linear-gradient(180deg, transparent 30%, rgba(20,30,50,.6) 100%)
}
.ind-card-body {
  position:absolute; bottom:0; left:0; right:0;
  padding:1.4rem 1.5rem;
  background:transparent
}
.ind-icon {
  width:42px; height:42px; border-radius:11px;
  background:rgba(10,15,28,.6); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:.65rem; transition:transform .3s var(--ease)
}
.ind-card:hover .ind-icon { transform:scale(1.1) }
.ind-card h3 { font-family:var(--font-d); font-size:.98rem; font-weight:800; color:#fff; margin-bottom:.2rem }
.ind-card p { font-size:.78rem; color:rgba(255,255,255,.65); line-height:1.5 }

/* ── TESTIMONIALS ════════════════════════════════════════════════════ */
.test-section { background:var(--bg); padding:110px 0; overflow:hidden }
/* large background image behind testimonials */
.test-bg {
  position:absolute; inset:0; overflow:hidden; pointer-events:none
}
.test-bg img {
  width:100%; height:100%; object-fit:cover; opacity:.04; filter:blur(2px)
}
body.light .test-bg img { opacity:.06 }
.tcar-wrap { position:relative; z-index:1 }
.tcar-viewport { overflow:hidden; border-radius:var(--radius-lg) }
.tcar-track { display:flex; gap:1.5rem; transition:transform .55s var(--ease) }
.tcard {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2rem;
  flex-shrink:0; width:calc(50% - .75rem);
  display:flex; flex-direction:column; gap:1.25rem;
  position:relative; overflow:hidden
}
/* gold corner brackets */
.tcard::before,.tcard::after {
  content:''; position:absolute; width:16px; height:16px;
  border-color:rgba(245,166,35,.22); border-style:solid
}
.tcard::before { top:14px; left:14px; border-width:1.5px 0 0 1.5px }
.tcard::after  { bottom:14px; right:14px; border-width:0 1.5px 1.5px 0 }
.tcard-stars { display:flex; gap:3px }
.tcard-star { color:var(--gold); font-size:.9rem }
.tcard-quote { font-size:.95rem; color:var(--text-muted); line-height:1.82; font-style:italic; flex:1 }
.tcard-quote::before {
  content:'\201C'; font-size:2.5rem; color:var(--gold);
  line-height:0; vertical-align:-.45em; margin-right:3px
}
.tcard-author { display:flex; align-items:center; gap:.85rem }
.tcard-avatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--gold-subtle); border:2px solid rgba(245,166,35,.3);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-d); font-size:.9rem; font-weight:800; color:var(--gold);
  flex-shrink:0
}
.tcard-name { font-family:var(--font-d); font-size:.9rem; font-weight:800 }
.tcard-role { font-size:.78rem; color:var(--text-faint) }
.tcar-controls { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:2rem }
.tcar-btn {
  width:42px; height:42px; border-radius:50%;
  background:var(--surface); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); cursor:pointer; transition:all .25s
}
.tcar-btn:hover { background:var(--gold-subtle); color:var(--gold); border-color:rgba(245,166,35,.35) }
.tcar-dots { display:flex; gap:6px }
.tcar-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--border); transition:all .3s var(--ease); cursor:pointer
}
.tcar-dot.active { width:20px; border-radius:3px; background:var(--gold) }

/* ── FAQ ══════════════════════════════════════════════════════════════ */
.faq-section { background:var(--bg-2); padding:110px 0 }
.faq-layout { display:grid; grid-template-columns:1fr 1.5fr; gap:6rem; align-items:start }
.faq-left { position:sticky; top:calc(var(--nav-h) + 2rem) }
/* faq image */
.faq-img {
  border-radius:18px; overflow:hidden;
  border:1px solid var(--border);
  margin-top:2rem; aspect-ratio:4/3;
  box-shadow:0 20px 60px rgba(0,0,0,.4)
}
.faq-img img { width:100%; height:100%; object-fit:cover }
.faq-left .section-tag { margin-bottom:1.25rem }
.faq-left h2 {
  font-family:var(--font-d); font-size:clamp(1.6875rem, 2.8125vw, 2.5312rem);
  font-weight:800; letter-spacing:-.03em; line-height:1.2; margin-bottom:1rem
}
.faq-left p { font-size:.95rem; color:var(--text-muted); line-height:1.75; margin-bottom:1.75rem }
.faq-items { 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 .3s
}
.faq-item.open { border-color:rgba(245,166,35,.35) }
.faq-q {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.1rem 1.4rem; cursor:pointer
}
.faq-q-text { font-family:var(--font-d); font-size:.95rem; font-weight:700; line-height:1.4 }
.faq-q-icon {
  width:28px; height:28px; border-radius:8px;
  background:var(--gold-subtle); border:1px solid rgba(245,166,35,.25);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); flex-shrink:0;
  transition:transform .3s var(--ease),background .3s
}
.faq-item.open .faq-q-icon { transform:rotate(45deg); background:var(--gold); color:#0A0F1C }
.faq-a { max-height:0; overflow:hidden; transition:max-height .45s var(--ease) }
.faq-item.open .faq-a { max-height:300px }
.faq-a-inner { padding:0 1.4rem 1.4rem; font-size:.875rem; color:var(--text-muted); line-height:1.8 }

/* ── CTA STRIP ════════════════════════════════════════════════════════ */
.cta-strip {
  position:relative; overflow:hidden; padding:0
}
.cta-strip-img {
  position:absolute; inset:0
}
.cta-strip-img img { width:100%; height:100%; object-fit:cover }
.cta-strip-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(4,14,8,.92) 0%, rgba(10,15,28,.88) 60%, rgba(4,12,20,.9) 100%)
}
.cta-strip-inner {
  position:relative; z-index:1; padding:90px 0;
  text-align:center; max-max-width: 660px; width: 100%; margin:0 auto
}
.cta-strip h2 {
  font-family:var(--font-d); font-size:clamp(1.875rem, 4.2188vw, 3.1875rem);
  font-weight:800; letter-spacing:-.04em; margin-bottom:1.1rem; line-height:1.1
}
.cta-strip p { font-size:1.05rem; color:rgba(176,184,197,.85); line-height:1.75; margin-bottom:2.5rem }
.cta-strip-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap }

/* ── RESPONSIVE ══════════════════════════════════════════════════════ */
@media(max-width:1200px) {
  .equip-grid { grid-template-columns:repeat(2,1fr) }
  .install-grid { grid-template-columns:repeat(2,1fr) }
  .solutions-grid { grid-template-columns:repeat(2,1fr) }
  .ind-grid { grid-template-columns:repeat(2,1fr) }
}
@media(max-width:1100px) {
  .proc-hero-inner { grid-template-columns:1fr; gap:3rem }
  .proc-hero-visual { max-max-width: 580px; width: 100%; margin:0 auto; width:100% }
  .why-layout { grid-template-columns:1fr; gap:3rem }
  .why-img-accent { position:relative; bottom:auto; right:auto; width:48%; margin-top:1rem }
  .solutions-split { grid-template-columns:1fr; gap:2.5rem }
  .faq-layout { grid-template-columns:1fr; gap:3rem }
  .faq-left { position:static }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem }
  .footer-brand { grid-column:span 2 }
  .proc-steps { grid-template-columns:repeat(3,1fr); gap:2rem }
  .proc-steps::before { display:none }
}
@media(max-width:960px) {
  .stat-item:nth-child(2) { border-right:none }
  .stat-item:nth-child(3) { border-top:1px solid var(--border) }
  .stat-item:nth-child(4) { border-right:none; border-top:1px solid var(--border) }
}
@media(max-width:768px) {
  .section { padding:72px 0 }
  .equip-grid { grid-template-columns:1fr }
  .install-grid { grid-template-columns:1fr }
  .solutions-grid { grid-template-columns:1fr }
  .ind-grid { grid-template-columns:1fr }
  .proc-steps { grid-template-columns:1fr 1fr }
  .tcard { width:100% }
  .proc-hero-thumbs { grid-template-columns:repeat(3,1fr) }
  .proc-img-banner { aspect-ratio:16/7 }
}
@media(max-width:560px) {
  .stats-bar-inner { grid-template-columns:1fr 1fr }
  .proc-trust-bar { gap:1.25rem }
  .proc-steps { grid-template-columns:1fr }
  .proc-steps::before { display:none }
  .footer-grid { grid-template-columns:1fr }
  .footer-brand { grid-column:span 1 }
  .footer-bottom-inner { flex-direction:column; text-align:center }
  .footer-legal { justify-content:center; flex-wrap:wrap }
  .footer-top-inner { flex-direction:column; text-align:center }
  .proc-hero-thumbs { grid-template-columns:repeat(3,1fr) }
}

/* 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. */
