/*
Theme Name: Sarwz Technology
Theme URI: https://sarwz.com
Author: Sarwz Technology
Description: Official Sarwz Technology WordPress theme — Premier IT Consulting, Cybersecurity, Cloud, AI, Staffing & Web Development. Professional Inter + Syne typography throughout.
Version: 3.0.0
License: Private
Text Domain: sarwz
*/

/* ============================================================
   GOOGLE FONTS — Inter (body) + Syne (display/headings)
   Inter: clean, modern, used by Vercel, Linear, Notion
   Syne: strong geometric display for headlines
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

/* ============================================================
   CSS RESET + ROOT VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --p:    #032d6d;   /* Primary navy */
  --pm:   #054099;   /* Primary hover */
  --pl:   #e8eef8;   /* Primary light */
  --ac:   #4db8d4;   /* Accent teal */
  --ap:   #eaf6f9;   /* Accent pale */

  /* Typography — ALL TEXT IS BLACK */
  --c-heading: #032d6d;   /* headings */
  --c-body:    #0d0d0d;   /* body text */
  --c-sub:     #1a1a1a;   /* secondary body */
  --c-muted:   #3d3d3d;   /* captions, meta */

  /* Surface */
  --wh:   #ffffff;
  --sf:   #f7f9fc;
  --bd:   rgba(3,45,109,0.1);

  /* Font stacks */
  --f-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-head: 'Syne', var(--f-body);
}

/* ============================================================
   BASE — professional Inter throughout
   ============================================================ */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-body);
  background: var(--wh);
}

/* All text elements use Inter */
p, li, td, th, label, input, textarea, select, button, figcaption,
.elementor *, .elementor-widget *, .e-con *, .wp-block * {
  font-family: var(--f-body) !important;
}

/* Headings use Syne */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: var(--f-head) !important;
  color: var(--c-heading);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
}

h1 { font-size: clamp(32px, 4.5vw, 54px); }
h2 { font-size: clamp(24px, 3.2vw, 40px); }
h3 { font-size: clamp(18px, 2.2vw, 26px); }
h4 { font-size: 17px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.snav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px; padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow .3s;
  gap: 16px;
}
.snav.scrolled { box-shadow: 0 2px 24px rgba(3,45,109,.1); }

/* BRAND / LOGO */
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; color: inherit; flex-shrink: 0; }
.brand:hover, .brand:focus, .brand:visited { text-decoration: none; }
.brand img { height: 44px; width: 44px; object-fit: contain; }
.brand-name { font-family: var(--f-head) !important; font-size: 16px; font-weight: 800; color: var(--p) !important; letter-spacing: 2.5px; }
.brand-sub  { font-family: var(--f-body) !important; font-size: 8px; font-weight: 700; color: var(--c-body) !important; letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; }
.brand-text { line-height: 1.15; }

/* NAV LINKS */
.nav-links { display: flex; gap: 0; align-items: center; flex: 1; justify-content: center; flex-wrap: nowrap; overflow: visible; }
.nav-links li { position: relative; }
.nav-links li > a {
  font-family: var(--f-body) !important;
  font-size: 13px; font-weight: 600; color: var(--c-body);
  padding: 7px 11px; border-radius: 7px;
  display: flex; align-items: center; gap: 4px;
  transition: all .18s; white-space: nowrap; cursor: pointer;
  letter-spacing: 0;
}
.nav-links li > a:hover,
.nav-links li.open > a { color: var(--p); background: var(--pl); }
.nav-links li > a svg.chev {
  width: 11px; height: 11px; stroke: currentColor; fill: none;
  stroke-width: 2.5; transition: transform .2s;
}
.nav-links li.open > a svg.chev { transform: rotate(180deg); }

.nav-cta {
  font-family: var(--f-body) !important;
  background: var(--p); color: #fff !important;
  padding: 10px 22px !important; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.2px;
  transition: background .2s; cursor: pointer;
}
.nav-cta:hover { background: var(--pm) !important; }

/* MEGA MENU */
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--bd);
  border-radius: 18px; box-shadow: 0 24px 64px rgba(3,45,109,.12);
  padding: 24px; width: 720px; display: none; z-index: 300;
}
.nav-links li.open .mega-menu { display: block; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-head { grid-column: 1/-1; margin-bottom: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--bd); }
.mega-head p {
  font-family: var(--f-body) !important;
  font-size: 10px; font-weight: 700; color: var(--ac);
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 5px;
}
.mega-head h3 {
  font-family: var(--f-head) !important;
  font-size: 15px; font-weight: 700; color: var(--p); letter-spacing: -0.3px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 13px; border-radius: 10px; cursor: pointer;
  transition: all .18s; border: 1px solid transparent;
}
.mega-item:hover { background: var(--sf); border-color: var(--bd); }
.mega-item:hover .micon { background: var(--p); }
.mega-item:hover .micon svg { stroke: #fff; }
.micon {
  width: 34px; height: 34px; border-radius: 8px; background: var(--pl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .18s;
}
.micon svg { width: 17px; height: 17px; fill: none; stroke: var(--p); stroke-width: 1.8; transition: stroke .18s; }
.mega-item.feat { background: var(--p); }
.mega-item.feat .micon { background: rgba(255,255,255,.15); }
.mega-item.feat .micon svg { stroke: #fff; }
.mega-item.feat .mt { color: #fff; }
.mega-item.feat .md { color: rgba(255,255,255,.75); font-weight: 400; }
.mega-item.feat:hover { background: var(--pm); }
/* BLACK mega text */
.mt {
  font-family: var(--f-body) !important;
  font-size: 13px; font-weight: 700; color: var(--c-body); margin-bottom: 2px;
}
.md {
  font-family: var(--f-body) !important;
  font-size: 11.5px; color: var(--c-muted); line-height: 1.45; font-weight: 400;
}
.mbadge {
  font-family: var(--f-body) !important;
  font-size: 9px; font-weight: 700; color: var(--ac); background: var(--ap);
  border: 1px solid rgba(77,184,212,.25); padding: 2px 7px;
  border-radius: 100px; margin-left: 5px; display: inline-block;
}
.mega-foot {
  grid-column: 1/-1; margin-top: 10px; padding-top: 12px;
  border-top: 1px solid var(--bd);
  display: flex; align-items: center; justify-content: space-between;
}
.mega-foot span {
  font-family: var(--f-body) !important;
  font-size: 12.5px; color: var(--c-body); font-weight: 500;
}
.mega-foot a {
  font-family: var(--f-body) !important;
  font-size: 12.5px; font-weight: 700; color: var(--ac);
  display: flex; align-items: center; gap: 4px;
}
.mega-foot a svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* DROPDOWN */
.simple-drop {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border: 1px solid var(--bd);
  border-radius: 12px; box-shadow: 0 16px 48px rgba(3,45,109,.1);
  padding: 8px; min-width: 210px; display: none; z-index: 300;
}
.nav-links li.open .simple-drop { display: block; }
.simple-drop a {
  font-family: var(--f-body) !important;
  display: block; font-size: 13.5px; color: var(--c-body);
  font-weight: 500; padding: 8px 14px; border-radius: 7px; transition: all .15s;
}
.simple-drop a:hover { color: var(--p); background: var(--pl); }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.seyebrow {
  font-family: var(--f-body) !important;
  font-size: 10.5px; font-weight: 700; color: var(--ac);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; display: block;
}
.stitle {
  font-family: var(--f-head) !important;
  font-size: clamp(22px,2.8vw,36px); font-weight: 800; color: var(--p);
  letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 12px;
}
.sdesc {
  font-family: var(--f-body) !important;
  font-size: 15px; color: var(--c-sub); line-height: 1.75; font-weight: 400; margin-bottom: 32px;
}

/* BUTTONS */
.btn-primary {
  font-family: var(--f-body) !important;
  background: var(--p); color: #fff; padding: 12px 26px;
  border-radius: 9px; font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.1px; display: inline-block;
  transition: all .22s; border: 2px solid var(--p);
}
.btn-primary:hover { background: var(--pm); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(3,45,109,.25); }
.btn-outline {
  font-family: var(--f-body) !important;
  background: transparent; color: var(--p); padding: 12px 26px;
  border-radius: 9px; font-size: 14.5px; font-weight: 600;
  border: 2px solid rgba(3,45,109,.25); display: inline-block; transition: all .22s;
}
.btn-outline:hover { border-color: var(--p); background: var(--pl); }
.btn-white {
  font-family: var(--f-body) !important;
  background: #fff; color: var(--p); padding: 13px 28px;
  border-radius: 9px; font-size: 14px; font-weight: 700;
  display: inline-block; transition: all .2s; letter-spacing: 0.1px;
}
.btn-white:hover { background: var(--ap); }
/* White button inside dark hero sections — forces navy text against CSS overrides */
.btn-hero-white {
  background: #fff !important; color: #032d6d !important;
  font-weight: 700; padding: 13px 28px; border-radius: 50px;
  font-size: 14px; display: inline-block; text-decoration: none;
  transition: opacity .2s;
}
.btn-hero-white:hover { opacity: .92; }
.btn-ghost {
  font-family: var(--f-body) !important;
  background: rgba(255,255,255,.1); color: #fff; padding: 13px 28px;
  border-radius: 9px; font-size: 14px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.28); display: inline-block; transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 5% 60px; gap: 60px;
  position: relative; overflow: hidden; background: var(--wh);
}
.hero-bg {
  position: absolute; right: -180px; top: -80px;
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle,rgba(77,184,212,.1) 0%,rgba(3,45,109,.05) 50%,transparent 75%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ap); border: 1px solid rgba(77,184,212,.3);
  padding: 6px 15px; border-radius: 100px;
  font-family: var(--f-body) !important;
  font-size: 11.5px; font-weight: 600; color: var(--p);
  margin-bottom: 22px; letter-spacing: 0.2px;
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--ac); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }

.hero-title {
  font-family: var(--f-head) !important;
  font-size: clamp(32px,4.2vw,56px); font-weight: 800;
  line-height: 1.06; letter-spacing: -1.5px; color: var(--p); margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--ac); }
.hero-desc {
  font-family: var(--f-body) !important;
  font-size: 16.5px; line-height: 1.72; color: var(--c-sub);
  max-width: 460px; margin-bottom: 32px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--bd); }
.stat-num {
  font-family: var(--f-head) !important;
  font-size: 28px; font-weight: 800; color: var(--p); letter-spacing: -1px;
}
.stat-label {
  font-family: var(--f-body) !important;
  font-size: 12px; color: var(--c-body); font-weight: 600; margin-top: 3px; letter-spacing: 0.2px;
}
.hero-visual { position: relative; z-index: 1; }
.card-cluster { position: relative; height: 440px; }
.vis-card { position: absolute; background: var(--wh); border: 1px solid var(--bd); border-radius: 18px; box-shadow: 0 4px 28px rgba(3,45,109,.07); }
.vis-main { inset: 0 0 auto 0; padding: 28px; }
.vis-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--p); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.vis-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; }
.vis-main h3 {
  font-family: var(--f-head) !important;
  font-size: 15.5px; font-weight: 700; color: var(--p); margin-bottom: 8px;
}
.vis-main p  {
  font-family: var(--f-body) !important;
  font-size: 13px; color: var(--c-sub); line-height: 1.6; font-weight: 400; margin-bottom: 14px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.vtag {
  font-family: var(--f-body) !important;
  padding: 3px 10px; border-radius: 5px; font-size: 10.5px; font-weight: 600;
  background: var(--pl); color: var(--p); border: 1px solid rgba(3,45,109,.1);
}
.vis-stat { width: 170px; background: var(--p); border-radius: 14px; padding: 18px 20px; bottom: 0; right: 0; border: none; box-shadow: 0 8px 32px rgba(3,45,109,.22); }
.vs-label {
  font-family: var(--f-body) !important;
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 7px;
}
.vs-num { font-family: var(--f-head) !important; font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.vs-sub { font-family: var(--f-body) !important; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 400; }
.vis-cert { width: 190px; background: var(--ap); border: 1px solid rgba(77,184,212,.22); border-radius: 14px; padding: 16px 18px; bottom: 44px; left: 0; }
.vis-cert-label { font-family: var(--f-body) !important; font-size: 9.5px; font-weight: 700; color: var(--c-body); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ctag { font-family: var(--f-body) !important; padding: 3px 9px; border-radius: 5px; font-size: 10.5px; font-weight: 600; background: rgba(3,45,109,.07); color: var(--p); }

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted { padding: 28px 5%; border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.trusted-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trusted-label { font-family: var(--f-body) !important; font-size: 10.5px; font-weight: 800; color: var(--c-body); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.trusted-divider { width: 1px; height: 20px; background: var(--bd); }
.logos { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.logo-item { font-family: var(--f-head) !important; font-size: 13px; font-weight: 700; color: rgba(3,45,109,.2); letter-spacing: 0.2px; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services { padding: 90px 5%; background: var(--sf); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.svc-card { background: var(--wh); border-radius: 16px; padding: 26px; border: 1px solid var(--bd); transition: all .3s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(3,45,109,.09); border-color: rgba(3,45,109,.18); }
.svc-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc-icon svg { width: 20px; height: 20px; stroke-width: 1.8; fill: none; }
.svc-card h3 { font-family: var(--f-head) !important; font-size: 15px; font-weight: 700; color: var(--p); margin-bottom: 8px; letter-spacing: -0.2px; }
.svc-card p  { font-family: var(--f-body) !important; font-size: 13.5px; color: var(--c-sub); line-height: 1.65; font-weight: 400; }
.svc-link { font-family: var(--f-body) !important; display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; color: var(--ac); margin-top: 14px; }

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */
.svc-page-hero { background: var(--p); padding: 64px 5% 52px; position: relative; overflow: hidden; }
.svc-page-glow { position: absolute; right: -100px; top: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(77,184,212,.14) 0%,transparent 70%); pointer-events: none; }
.svc-page-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-body) !important; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); padding: 7px 14px; border-radius: 8px;
  margin-bottom: 24px; transition: all .2s;
}
.svc-page-back:hover { background: rgba(255,255,255,.2); color: #fff; }
.svc-page-back svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.svc-page-hero h1 {
  font-family: var(--f-head) !important;
  font-size: clamp(26px,3.4vw,44px); font-weight: 800; color: #fff;
  letter-spacing: -1.2px; line-height: 1.07; margin-bottom: 14px;
}
.svc-page-hero p {
  font-family: var(--f-body) !important;
  font-size: 15.5px; color: rgba(255,255,255,.88); max-width: 600px; line-height: 1.7; font-weight: 400;
}
.svc-hero-meta { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.svc-meta-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 13px; border-radius: 8px;
  font-family: var(--f-body) !important; font-size: 11.5px; color: #fff; font-weight: 500;
}
.svc-meta-chip svg { width: 12px; height: 12px; stroke: var(--ac); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ============================================================
   SERVICE BODY
   ============================================================ */
.svc-body { padding: 56px 5%; background: var(--wh); }
.svc-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; align-items: start; }

.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.svc-feat { background: var(--sf); border-radius: 13px; padding: 20px; border: 1px solid var(--bd); transition: all .22s; }
.svc-feat:hover { border-color: rgba(3,45,109,.18); box-shadow: 0 4px 20px rgba(3,45,109,.06); transform: translateY(-1px); }
.svc-feat svg { width: 18px; height: 18px; stroke: var(--ac); fill: none; stroke-width: 1.8; margin-bottom: 11px; }
.svc-feat h4 { font-family: var(--f-head) !important; font-size: 13.5px; font-weight: 700; color: var(--p); margin-bottom: 6px; letter-spacing: -0.2px; }
.svc-feat p  { font-family: var(--f-body) !important; font-size: 13px; color: var(--c-sub); line-height: 1.65; font-weight: 400; }
.svc-feat.hl { background: linear-gradient(135deg,var(--pl),var(--ap)); border-color: rgba(77,184,212,.3); }
.svc-feat.hl svg { stroke: var(--p); }
.svc-feat.az { background: linear-gradient(135deg,#e8f0fe,#dce8f8); border-color: rgba(0,120,212,.2); }
.svc-feat.az svg { stroke: #0078d4; }
.new-tag {
  font-family: var(--f-body) !important;
  display: inline-block; font-size: 8.5px; font-weight: 700;
  color: #fff; background: var(--p); padding: 2px 7px;
  border-radius: 100px; margin-left: 5px; vertical-align: middle; letter-spacing: 0.3px;
}

/* TECH STACK */
.tech-stack { margin-top: 24px; background: linear-gradient(135deg,var(--p),var(--pm)); border-radius: 14px; padding: 22px 24px; }
.tech-stack-title {
  font-family: var(--f-head) !important; font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 5px; display: flex; align-items: center; gap: 8px;
}
.tech-stack-title svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; flex-shrink: 0; }
.tech-stack-sub { font-family: var(--f-body) !important; font-size: 12px; color: rgba(255,255,255,.72); margin-bottom: 14px; font-weight: 400; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.tech-pill { font-family: var(--f-body) !important; padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 500; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.tech-pill.core { background: rgba(255,255,255,.24); font-weight: 700; border-color: rgba(255,255,255,.36); }

/* AZURE CALLOUT */
.azure-stack { margin-top: 24px; border-radius: 14px; overflow: hidden; }
.azure-head { background: linear-gradient(135deg,#0078d4,#032d6d); padding: 18px 20px; }
.azure-head-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.azure-head-row svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.azure-head-title { font-family: var(--f-head) !important; font-size: 14px; font-weight: 700; color: #fff; }
.azure-head-sub { font-family: var(--f-body) !important; font-size: 11.5px; color: rgba(255,255,255,.72); font-weight: 400; }
.azure-core-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.azure-pill { font-family: var(--f-body) !important; padding: 4px 11px; border-radius: 6px; font-size: 10.5px; font-weight: 600; background: rgba(255,255,255,.17); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.azure-body { background: var(--sf); padding: 14px 18px; border: 1px solid rgba(0,120,212,.14); border-top: none; border-radius: 0 0 14px 14px; }
.azure-also-label { font-family: var(--f-body) !important; font-size: 10px; font-weight: 800; color: var(--c-body); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
.azure-also-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.azure-also-pill { font-family: var(--f-body) !important; padding: 3px 9px; border-radius: 5px; font-size: 11px; font-weight: 500; background: var(--wh); color: var(--c-sub); border: 1px solid var(--bd); }

/* PROCESS STEPS */
.process-steps { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.process-section-title { font-family: var(--f-head) !important; font-size: 14px; font-weight: 700; color: var(--p); margin-bottom: 12px; }
.process-step { display: flex; gap: 14px; align-items: flex-start; background: var(--sf); border-radius: 12px; padding: 16px 18px; border: 1px solid var(--bd); }
.step-num { width: 28px; height: 28px; border-radius: 8px; background: var(--p); color: #fff; font-family: var(--f-head) !important; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-num.ac { background: var(--ac); }
.process-step h4 { font-family: var(--f-head) !important; font-size: 13px; font-weight: 700; color: var(--p); margin-bottom: 4px; }
.process-step p  { font-family: var(--f-body) !important; font-size: 12.5px; color: var(--c-sub); line-height: 1.6; font-weight: 400; }

/* CABLING CALLOUT */
.cable-callout { margin-top: 24px; background: var(--sf); border: 1px solid rgba(77,184,212,.25); border-radius: 13px; padding: 18px 20px; }
.cable-callout-title { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.cable-callout-title svg { width: 14px; height: 14px; stroke: var(--ac); fill: none; stroke-width: 2; flex-shrink: 0; }
.cable-callout-title span { font-family: var(--f-head) !important; font-size: 13px; font-weight: 700; color: var(--p); }
.cable-items { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
.cable-item { display: flex; align-items: center; gap: 6px; font-family: var(--f-body) !important; font-size: 12.5px; color: var(--c-sub); font-weight: 500; }
.cable-item svg { width: 11px; height: 11px; stroke: var(--ac); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.svc-sidebar { position: sticky; top: 92px; }
.sidebar-cta { background: var(--p); border-radius: 16px; padding: 24px; margin-bottom: 14px; }
.sidebar-cta h3 { font-family: var(--f-head) !important; font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sidebar-cta p  { font-family: var(--f-body) !important; font-size: 13px; color: rgba(255,255,255,.76); line-height: 1.6; margin-bottom: 18px; font-weight: 400; }
.sidebar-cta-btn {
  font-family: var(--f-body) !important;
  display: block; background: #fff; color: var(--p); text-align: center;
  padding: 11px; border-radius: 9px; font-size: 13px; font-weight: 700;
  margin-bottom: 8px; transition: background .2s;
}
.sidebar-cta-btn:hover { background: var(--ap); }
.sidebar-contact { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 9px 12px; margin-bottom: 6px; }
.sidebar-contact svg { width: 13px; height: 13px; stroke: var(--ac); fill: none; stroke-width: 2; flex-shrink: 0; }
.sc-label { font-family: var(--f-body) !important; font-size: 9px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; font-weight: 600; }
.sc-val   { font-family: var(--f-body) !important; font-size: 12.5px; color: #fff; font-weight: 600; }
.sidebar-info { background: var(--sf); border-radius: 14px; padding: 18px; border: 1px solid var(--bd); }
.sidebar-info h4 { font-family: var(--f-body) !important; font-size: 10px; font-weight: 800; color: var(--c-body); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.2px; }
.sidebar-info-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; }
.sidebar-info-row svg { width: 12px; height: 12px; stroke: var(--ac); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.sidebar-info-row span { font-family: var(--f-body) !important; font-size: 12.5px; color: var(--c-sub); line-height: 1.55; font-weight: 500; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 90px 5%; background: var(--p); text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 600px; height: 360px; border-radius: 50%; background: radial-gradient(ellipse,rgba(77,184,212,.12) 0%,transparent 70%); pointer-events: none; }
.cta-section h2 { font-family: var(--f-head) !important; font-size: clamp(26px,3.5vw,46px); font-weight: 800; color: #fff; letter-spacing: -1.2px; margin-bottom: 14px; position: relative; }
.cta-section p  { font-family: var(--f-body) !important; font-size: 16px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; font-weight: 400; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-hero { background: var(--p); padding: 68px 5% 56px; position: relative; overflow: hidden; }
.careers-hero h1 { font-family: var(--f-head) !important; font-size: clamp(28px,3.5vw,46px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.07; margin-bottom: 14px; }
.careers-hero p  { font-family: var(--f-body) !important; font-size: 15.5px; color: rgba(255,255,255,.88); max-width: 560px; line-height: 1.7; font-weight: 400; }
.careers-body { padding: 56px 5%; background: var(--sf); }

.apply-banner { background: var(--wh); border: 1px solid rgba(77,184,212,.24); border-radius: 16px; padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; box-shadow: 0 2px 20px rgba(3,45,109,.06); }
.apply-banner-left h3 { font-family: var(--f-head) !important; font-size: 17px; font-weight: 700; color: var(--p); margin-bottom: 5px; }
.apply-banner-left p  { font-family: var(--f-body) !important; font-size: 13.5px; color: var(--c-body); font-weight: 500; line-height: 1.6; }
.apply-email-row { display: flex; align-items: center; gap: 6px; margin-top: 9px; font-family: var(--f-body) !important; font-size: 14px; font-weight: 700; color: var(--ac); }
.apply-email-row svg { width: 14px; height: 14px; stroke: var(--ac); fill: none; stroke-width: 2; flex-shrink: 0; }
.apply-subj-note { font-family: var(--f-body) !important; font-size: 11.5px; color: var(--c-muted); font-weight: 500; margin-top: 5px; }
.apply-subj-note strong { color: var(--c-body); font-weight: 700; }
.apply-banner-right { background: var(--ap); border: 1px solid rgba(77,184,212,.2); border-radius: 10px; padding: 14px 20px; font-family: var(--f-body) !important; font-size: 13px; color: var(--c-body); font-weight: 600; text-align: center; line-height: 1.9; }

.job-cards { display: flex; flex-direction: column; gap: 18px; }
.job-card { background: var(--wh); border: 1px solid var(--bd); border-radius: 18px; overflow: hidden; transition: box-shadow .25s; }
.job-card:hover { box-shadow: 0 8px 48px rgba(3,45,109,.09); }
.job-card-head { padding: 22px 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; cursor: pointer; border-bottom: 1px solid transparent; transition: border-color .2s; }
.job-card.expanded .job-card-head { border-bottom-color: var(--bd); }
.job-head-left { display: flex; align-items: flex-start; gap: 16px; }
.job-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.job-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; }
.job-title { font-family: var(--f-head) !important; font-size: 18px; font-weight: 700; color: var(--p); margin-bottom: 8px; letter-spacing: -0.3px; }
.job-tags { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.job-tag { font-family: var(--f-body) !important; padding: 3px 11px; border-radius: 100px; font-size: 11px; font-weight: 600; background: var(--pl); color: var(--c-body); border: 1px solid rgba(3,45,109,.1); }
.job-tag.green { background: #e8f5e9; color: #1b5e20; border-color: rgba(46,125,50,.2); }
.job-head-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.job-apply-btn { font-family: var(--f-body) !important; background: var(--p); color: #fff; padding: 9px 18px; border-radius: 8px; font-size: 12.5px; font-weight: 700; white-space: nowrap; border: none; cursor: pointer; transition: background .2s; }
.job-apply-btn:hover { background: var(--pm); }
.toggle-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--pl); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--bd); transition: background .2s; }
.toggle-icon svg { width: 13px; height: 13px; stroke: var(--p); fill: none; stroke-width: 2.5; transition: transform .25s; }
.job-card.expanded .toggle-icon { background: var(--p); border-color: var(--p); }
.job-card.expanded .toggle-icon svg { stroke: #fff; transform: rotate(180deg); }
.job-card-body { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.job-card.expanded .job-card-body { max-height: 3000px; padding: 26px 28px; }
.jd-section { margin-bottom: 22px; }
.jd-section h4 { font-family: var(--f-head) !important; font-size: 14px; font-weight: 700; color: var(--p); margin-bottom: 12px; padding-bottom: 7px; border-bottom: 1px solid var(--bd); }
.jd-section p  { font-family: var(--f-body) !important; font-size: 14px; color: var(--c-body); line-height: 1.75; font-weight: 400; }
.jd-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.jd-list li { display: flex; align-items: flex-start; gap: 9px; font-family: var(--f-body) !important; font-size: 13.5px; color: var(--c-body); line-height: 1.6; font-weight: 400; }
.jd-list li svg { width: 13px; height: 13px; stroke: var(--ac); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 3px; }
.jd-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jd-apply-row { margin-top: 22px; padding: 20px 22px; background: linear-gradient(135deg,var(--pl),var(--ap)); border-radius: 12px; border: 1px solid rgba(77,184,212,.2); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.jd-apply-text h5 { font-family: var(--f-head) !important; font-size: 14px; font-weight: 700; color: var(--p); margin-bottom: 4px; }
.jd-email { font-family: var(--f-body) !important; font-size: 13px; font-weight: 700; color: var(--p); margin-top: 4px; }
.jd-subj  { font-family: var(--f-body) !important; font-size: 12px; color: var(--c-muted); font-weight: 500; margin-top: 3px; }
.jd-subj strong { color: var(--c-body); font-weight: 700; }
.jd-mailto-btn { font-family: var(--f-body) !important; background: var(--p); color: #fff; padding: 11px 22px; border-radius: 8px; font-size: 13px; font-weight: 700; display: inline-block; transition: background .2s; }
.jd-mailto-btn:hover { background: var(--pm); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: 80px 5%; background: var(--sf); text-align: center; }
.ind-grid { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.ind-pill { font-family: var(--f-body) !important; padding: 11px 20px; border-radius: 100px; background: var(--wh); border: 1px solid var(--bd); font-size: 13.5px; font-weight: 600; color: var(--c-body); display: flex; align-items: center; gap: 7px; transition: all .2s; }
.ind-pill:hover { background: var(--p); color: #fff; border-color: var(--p); }
.ind-pill svg { width: 14px; height: 14px; stroke-width: 2; fill: none; stroke: currentColor; }

/* ============================================================
   FOOTER — Inter throughout, ALL BLACK TEXT
   ============================================================ */
footer { padding: 60px 5% 28px; border-top: 1px solid var(--bd); background: var(--wh); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo { height: 72px; width: auto; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-brand p { font-family: var(--f-body) !important; font-size: 13.5px; color: var(--c-body); line-height: 1.68; max-width: 240px; font-weight: 400; margin-bottom: 10px; }
.footer-areas { font-family: var(--f-body) !important; font-size: 12.5px; color: var(--c-body); font-weight: 600; line-height: 1.6; margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 32px; height: 32px; border-radius: 8px; background: var(--pl); border: 1px solid var(--bd); display: flex; align-items: center; justify-content: center; transition: all .2s; cursor: pointer; }
.social-btn:hover { background: var(--p); border-color: var(--p); }
.social-btn:hover svg { stroke: #fff; }
.social-btn svg { width: 14px; height: 14px; stroke: var(--p); fill: none; stroke-width: 1.8; transition: stroke .2s; }
.footer-col h5 { font-family: var(--f-body) !important; font-size: 10px; font-weight: 800; color: var(--c-body); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-family: var(--f-body) !important; font-size: 13.5px; color: var(--c-body); font-weight: 500; transition: color .2s; }
.footer-col ul a:hover { color: var(--p); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-ci { display: flex; align-items: flex-start; gap: 8px; }
.footer-ci svg { width: 13px; height: 13px; stroke: var(--ac); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.ci-label { font-family: var(--f-body) !important; font-size: 9.5px; font-weight: 800; color: var(--ac); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.ci-val   { font-family: var(--f-body) !important; font-size: 13.5px; color: var(--c-body); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--bd); font-family: var(--f-body) !important; font-size: 12px; color: var(--c-body); flex-wrap: wrap; gap: 8px; font-weight: 500; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .svc-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .jd-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .cable-items { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .apply-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .tech-pills { gap: 5px; }
}
