/* ============================================
   CENSCAPE V3 — Field Engineering Services
   Premium · Restrained · B2B Professional
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:        #0B1930;
  --navy-mid:    #1A3052;
  --blue:        #1849D6;
  --blue-soft:   #EBF1FF;
  --blue-muted:  rgba(24,73,214,0.07);
  --teal:        #0D9488;
  --teal-soft:   #F0FDFA;
  --gold:        #B45309;
  --gold-soft:   #FEF3C7;
  --white:       #FFFFFF;
  --bg:          #F8FAFD;
  --bg2:         #F1F5FB;
  --text:        #0B1930;
  --grey:        #5E7290;
  --grey-light:  #94A3B8;
  --border:      #E2E8F0;
  --border-dark: #C8D5E8;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
  --shadow:      0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.08);
  --display:     'Space Grotesk', sans-serif;
  --body:        'Inter', sans-serif;
  --max:         1440px;
  --r:           6px;
  --r-lg:        12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--body); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
section { padding: 96px 0; }

/* TYPOGRAPHY */
h1,h2,h3,h4 { font-family: var(--display); letter-spacing: -0.022em; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(36px, 4.5vw, 58px); font-weight: 400; }
h2 { font-size: clamp(24px, 3.2vw, 40px); font-weight: 500; }
h3 { font-size: clamp(16px, 1.8vw, 20px); font-weight: 600; }
p  { line-height: 1.8; color: var(--grey); }

.eyebrow {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.lead { font-size: 16px; color: var(--grey); line-height: 1.8; max-width: 540px; margin-top: 14px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r); font-size: 14px; font-weight: 600; font-family: var(--body); border: none; transition: all 0.2s; cursor: pointer; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1340B8; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border-dark); }
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-muted); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

.tag { display: inline-block; padding: 3px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; font-size: 11px; font-weight: 500; color: var(--grey); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 80px; display: flex; align-items: center;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.nav { display: flex; align-items: center; width: 100%; height: 100%; }

.logo { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: 0.05em; margin-right: 44px; display: flex; flex-direction: column; line-height: 1; color: var(--navy); }
.logo em { color: var(--blue); font-style: normal; }
.logo-sub { font-size: 9px; font-weight: 400; letter-spacing: 0.08em; color: var(--grey-light); margin-top: 4px; font-family: var(--body); }

.nav-links { display: flex; align-items: center; height: 100%; flex: 1; }
.nav-links > li { height: 100%; display: flex; align-items: center; position: relative; }
.nav-links a, .nav-btn {
  padding: 0 18px; height: 100%; display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--grey);
  transition: color 0.2s; cursor: pointer; background: none; border: none; white-space: nowrap;
}
.nav-links a:hover, .nav-btn:hover { color: var(--navy); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: -8px; width: 296px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: opacity 0.2s, transform 0.2s; z-index: 200;
}
.has-drop:hover .drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.drop a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--text);
  height: auto; transition: background 0.15s;
}
.drop a:hover { background: var(--bg); }
.drop-icon { font-size: 16px; flex-shrink: 0; }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed; top: 0; right: -100%; width: min(340px,90vw); height: 100vh;
  background: var(--white); z-index: 200; padding: 0 24px 28px;
  display: flex; flex-direction: column; box-shadow: -8px 0 48px rgba(0,0,0,0.1);
  transition: right 0.3s ease; overflow-y: auto;
}
.mob-menu.open { right: 0; }
.mob-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.22); z-index: 190; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-top { display: flex; align-items: center; justify-content: space-between; height: 68px; flex-shrink: 0; }
.mob-close { background: none; border: none; font-size: 20px; color: var(--grey); padding: 6px; }
.mob-nav > li { border-bottom: 1px solid var(--border); }
.mob-nav > li > a, .mob-nav > li > button { display: block; width: 100%; text-align: left; padding: 15px 0; font-size: 15px; font-weight: 500; color: var(--navy); background: none; border: none; }
.mob-sub { display: none; padding: 4px 0 12px 16px; }
.mob-sub.open { display: block; }
.mob-sub a { display: block; padding: 8px 0; font-size: 13px; color: var(--grey); }

/* ============================================
   HOMEPAGE HERO
   ============================================ */
.hero { padding: 0; min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--white); }
.hero-img-panel {
  position: absolute; top: 0; right: 0; width: 48%; height: 100%;
  background: var(--bg2);
}
.hero-img-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-img-panel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 60%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 148px 0 100px; max-width: 600px; }
.hero-content .eyebrow { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 20px; }
.hero-sub { font-size: 16px; line-height: 1.8; color: var(--grey); margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-rule { width: 100%; max-width: 440px; height: 1px; background: var(--border); margin-bottom: 32px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; }
.hstat-n { font-family: var(--display); font-size: 24px; font-weight: 500; color: var(--navy); line-height: 1; }
.hstat-l { font-size: 11px; color: var(--grey); margin-top: 4px; }

/* ============================================
   CHOOSE YOUR REQUIREMENT
   ============================================ */
.choose { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.choose h2 { margin-bottom: 8px; }
.choose-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 40px; }
.choose-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
}
.choose-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.choose-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.choose-need { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: 4px; }
.choose-name { font-size: 14px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.choose-arrow { font-size: 12px; color: var(--blue); font-weight: 600; }

/* ============================================
   SERVICE PILLARS
   ============================================ */
.pillars h2 { margin-bottom: 8px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.pillar-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pillar-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pillar-img { height: 176px; overflow: hidden; position: relative; background: var(--bg2); }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pillar-card:hover .pillar-img img { transform: scale(1.05); }
.pillar-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pillar-icon { font-size: 24px; margin-bottom: 10px; }
.pillar-body h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.pillar-body p { font-size: 13px; color: var(--grey); line-height: 1.65; flex: 1; }
.pillar-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 14px; transition: gap 0.2s; }
.pillar-card:hover .pillar-link { gap: 9px; }

/* ============================================
   SOLAR SPOTLIGHT — Featured
   ============================================ */
.solar-spot { background: var(--navy); overflow: hidden; position: relative; }
.solar-spot::before {
  content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(135deg, rgba(24,73,214,0.3) 0%, rgba(13,148,136,0.2) 100%);
}
.solar-spot-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solar-spot-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #FCD34D; margin-bottom: 10px; display: block; }
.solar-spot-inner h2 { color: #fff; margin-bottom: 16px; }
.solar-spot-inner p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.solar-spot-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.solar-spot-tag { padding: 4px 11px; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 11px; color: rgba(255,255,255,0.65); }
.solar-spot-visual { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.solar-spot-visual img { width: 100%; height: 100%; object-fit: cover; }
.solar-spot-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r); padding: 10px 14px;
  font-size: 12px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries { background: var(--bg); }
.industries h2 { margin-bottom: 8px; }
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 40px; }
.ind-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 16px; transition: border-color 0.2s, box-shadow 0.2s;
}
.ind-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.ind-icon { font-size: 24px; margin-bottom: 10px; }
.ind-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; font-family: var(--display); }
.ind-desc { font-size: 12px; color: var(--grey); line-height: 1.5; }

/* ============================================
   WHY CENSCAPE
   ============================================ */
.why h2 { margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.why-grid.why-grid--2col { grid-template-columns: repeat(2,1fr) !important; }
.why-card { padding: 28px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
.why-ico { width: 44px; height: 44px; border-radius: 9px; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.why-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 14px; line-height: 1.7; }

/* ============================================
   SERVICE CARDS (homepage)
   ============================================ */
.svc-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-card-img { height: 160px; overflow: hidden; position: relative; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.svc-card-icon { font-size: 22px; margin-bottom: 9px; }
.svc-card-body h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.svc-card-body p { font-size: 13px; color: var(--grey); line-height: 1.65; flex: 1; }
.svc-card-cta { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--blue); transition: gap 0.2s; }
.svc-card:hover .svc-card-cta { letter-spacing: 0.01em; }

/* ============================================
   SPECIALIZED INSPECTION SPOT
   ============================================ */
.insp-spot { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.insp-spot-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.insp-spot-text h2 { margin-bottom: 14px; }
.insp-spot-text p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 22px; }
.insp-tag-group { margin-bottom: 18px; }
.insp-tag-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy); margin-bottom: 8px; }
.insp-tags-row { display: flex; flex-wrap: wrap; gap: 6px; }

/* ============================================
   TRACK RECORD
   ============================================ */
.track { background: var(--bg); }
.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.track-text h2 { margin-bottom: 14px; }
.track-text p { font-size: 15px; margin-bottom: 12px; }
.track-note { font-size: 11px; color: var(--grey-light); background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 13px; margin-top: 16px; }
.track-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tstat { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 20px; }
.tstat-n { font-family: var(--display); font-size: clamp(22px,3vw,40px); font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.tstat-l { font-size: 12px; color: var(--grey); line-height: 1.4; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip { background: var(--navy); padding: 76px 0; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-row h2 { color: #fff; font-weight: 400; }
.cta-row p { color: rgba(255,255,255,0.5); margin-top: 8px; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--white); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.foot-brand .logo { font-size: 17px; }
.foot-brand p { font-size: 13px; color: var(--grey); margin-top: 10px; line-height: 1.65; max-width: 210px; }
.foot-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 13px; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { font-size: 13px; color: var(--grey); transition: color 0.2s; }
.foot-col a:hover { color: var(--navy); }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--grey-light); }

/* ============================================
   SERVICE PAGE — HERO
   ============================================ */
.svc-hero {
  min-height: 480px; display: flex; align-items: flex-end;
  position: relative; overflow: hidden; background: var(--navy);
  padding-top: 120px;
}
.svc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.svc-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,25,48,0.95) 35%, rgba(11,25,48,0.5) 100%); }
.svc-hero-wrap { position: relative; z-index: 1; padding: 60px 0; }
.svc-hero-2col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; }
.svc-back { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; transition: color 0.2s; }
.svc-back:hover { color: rgba(255,255,255,0.7); }
.svc-hero h1 { color: #fff; margin-bottom: 14px; }
.svc-hero-desc { font-size: 16px; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 22px; }
.svc-hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 26px; }
.svc-htag { padding: 4px 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; font-size: 11px; color: rgba(255,255,255,0.55); }
.svc-hero-meta { display: flex; gap: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.svc-meta { display: flex; flex-direction: column; gap: 2px; }
.svc-meta-l { font-size: 10px; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; text-transform: uppercase; }
.svc-meta-v { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); }
.svc-hero-side { display: flex; flex-direction: column; gap: 9px; }
.svc-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r); padding: 14px 16px; display: flex; gap: 11px; align-items: flex-start; }
.svc-badge-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.svc-badge-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.svc-badge-text strong { color: #fff; display: block; font-weight: 600; margin-bottom: 2px; }

/* ============================================
   SERVICE PAGE — BODY
   ============================================ */
.svc-crumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 0; }
.crumb-row { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--grey); }
.crumb-row a { color: var(--grey); transition: color 0.2s; }
.crumb-row a:hover { color: var(--navy); }
.crumb-sep { color: var(--border-dark); }
.crumb-cur { color: var(--navy); font-weight: 500; }

.svc-body { padding: 68px 0; }
.svc-2col { display: grid; grid-template-columns: 1fr 310px; gap: 56px; align-items: start; }

/* Sidebar */
.svc-sidebar { position: sticky; top: 82px; }
.sidebar-cta { background: var(--navy); border-radius: var(--r-lg); padding: 24px; margin-bottom: 12px; }
.sidebar-cta h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.52); font-size: 13px; margin-bottom: 16px; }
.sidebar-cta .btn-white { width: 100%; justify-content: center; }
.sidebar-info { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 16px; }
.sidebar-info h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 11px; }
.sinfo-row { display: flex; justify-content: space-between; align-items: flex-start; font-size: 12px; padding: 7px 0; border-bottom: 1px solid var(--border); gap: 10px; }
.sinfo-row:last-child { border-bottom: none; }
.sinfo-k { color: var(--grey); flex-shrink: 0; }
.sinfo-v { color: var(--navy); font-weight: 500; text-align: right; }

/* Main content */
.svc-intro { margin-bottom: 48px; }
.svc-intro p { font-size: 15px; line-height: 1.85; margin-bottom: 13px; }

.blk { margin-bottom: 48px; }
.blk-title { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 18px; padding-bottom: 11px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 8px; }

/* Deliverables */
.del-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.del-grid .del-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.del-item { display: flex; align-items: flex-start; gap: 9px; padding: 12px 13px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); }
.del-tick { width: 17px; height: 17px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.del-text { font-size: 13px; color: var(--navy); font-weight: 500; line-height: 1.4; }

/* Applications */
.apps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.apps-grid .app-item:last-child:nth-child(3n+1) { grid-column: 1 / -1; }
.app-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 14px; display: flex; align-items: center; gap: 10px; }
.app-icon { font-size: 18px; flex-shrink: 0; }
.app-text { font-size: 13px; color: var(--navy); font-weight: 500; }

/* Process */
.proc-step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: start; }
.proc-step:last-child { border-bottom: none; }
.proc-n { font-family: var(--display); font-size: 24px; font-weight: 300; color: var(--blue); opacity: 0.5; line-height: 1; }
.proc-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.proc-desc { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 0; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--navy); user-select: none; }
.faq-tog { width: 22px; height: 22px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; transition: transform 0.3s, background 0.2s; color: var(--blue); }
.faq-item.open .faq-tog { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-a { font-size: 13px; line-height: 1.75; color: var(--grey); max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 16px; }

.tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }

/* ============================================
   SECTORS PAGE
   ============================================ */
.sectors-hero { padding: 140px 0 60px; background: var(--bg); border-bottom: 1px solid var(--border); }
.sectors-body { padding: 72px 0; }
.sector-group { margin-bottom: 56px; }
.sector-group-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 8px; }
.sector-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sector-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 18px; transition: border-color 0.2s, box-shadow 0.2s; }
.sector-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.sector-icon { font-size: 26px; margin-bottom: 10px; }
.sector-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: var(--display); }
.sector-desc { font-size: 12px; color: var(--grey); line-height: 1.5; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero { background: var(--bg); border-bottom: 1px solid var(--border); padding: 140px 0 60px; }
.contact-hero h1 { margin-bottom: 10px; }
.contact-body { padding: 68px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 17px; }
.flabel { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.flabel .req { color: var(--blue); }
.finput, .fselect, .ftextarea {
  width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 14px; font-family: var(--body); color: var(--navy); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.finput:focus, .fselect:focus, .ftextarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,73,214,0.08); }
.ftextarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.fselect { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.fsubmit { width: 100%; padding: 14px; font-size: 14px; font-weight: 600; }
.contact-aside { }
.cinfo-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; margin-bottom: 13px; }
.cinfo-card h3 { font-size: 17px; margin-bottom: 16px; }
.cinfo-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.cinfo-label { font-size: 10px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.cinfo-val { font-size: 13px; color: var(--navy); font-weight: 500; }
.resp-note { background: var(--blue-muted); border: 1px solid rgba(24,73,214,0.1); border-radius: var(--r); padding: 13px 14px; font-size: 13px; color: var(--navy); margin-top: 13px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { padding: 140px 0 68px; background: var(--bg); border-bottom: 1px solid var(--border); }
.about-hero h1 { max-width: 660px; margin-bottom: 14px; }
.about-body { padding: 76px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.about-text p { font-size: 15px; line-height: 1.85; margin-bottom: 14px; }
.val-list { margin-top: 26px; }
.val-item { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.val-item:last-child { border-bottom: none; }
.val-icon { font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.val-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.val-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 26px; }
.astat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 18px; }
.astat-n { font-family: var(--display); font-size: clamp(20px,2.5vw,34px); font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.astat-l { font-size: 12px; color: var(--grey); line-height: 1.4; }
.about-svc-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.about-svc-link { display: inline-block; font-size: 13px; font-weight: 500; color: var(--navy); background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 9px 16px; text-decoration: none; transition: border-color .2s, color .2s; }
.about-svc-link:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .nav-links, .nav-right .btn-blue { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero-img-panel { display: none; }
  .hero-content { padding: 110px 0 72px; max-width: 100%; }
  .hero-stats { gap: 24px; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .monitor-grid { grid-template-columns: 1fr 1fr; }
  .specialist-grid { grid-template-columns: 1fr 1fr; }
  .insp-spot-inner { grid-template-columns: 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .why-grid--2col { grid-template-columns: 1fr 1fr; }
  .track-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-row { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1/-1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-2col { grid-template-columns: 1fr; }
  .svc-hero-side { display: none; }
  .svc-2col { grid-template-columns: 1fr; }
  .svc-sidebar { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { display: none; }
  .del-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .track-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why-grid, .why-grid--2col { grid-template-columns: 1fr; }
  .monitor-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .specialist-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}

/* ============================================
   CAPABILITY THEME CARDS (homepage service section)
   ============================================ */
.cap-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 44px;
}
.cap-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cap-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cap-img { height: 200px; overflow: hidden; background: var(--bg2); position: relative; }
.cap-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cap-card:hover .cap-img img { transform: scale(1.04); }
.cap-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.cap-theme { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.cap-body h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.cap-body p { font-size: 13px; color: var(--grey); line-height: 1.7; margin-bottom: 16px; }
.cap-bullets { list-style: none; padding: 0; margin-bottom: 20px; display: flex; flex-direction: column; gap: 5px; }
.cap-bullets li { font-size: 12px; color: var(--navy); display: flex; align-items: flex-start; gap: 7px; }
.cap-bullets li::before { content: '—'; color: var(--blue); flex-shrink: 0; font-weight: 600; }
.cap-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--blue); margin-top: auto; letter-spacing: 0.01em; transition: gap 0.2s; }
.cap-card:hover .cap-cta { gap: 10px; }

/* ============================================
   ENGINEERING WORKFLOW SECTION
   ============================================ */
.workflow { background: var(--navy); }
.workflow h2 { color: #fff; }
.workflow .eyebrow { color: rgba(255,255,255,0.45); }
.workflow .lead { color: rgba(255,255,255,0.5); max-width: 600px; }
.workflow-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px;
  background: rgba(255,255,255,0.06); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
}
.wf-step {
  padding: 28px 22px; background: transparent;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.wf-step:last-child { border-right: none; }
.wf-n {
  font-family: var(--display); font-size: 36px; font-weight: 300;
  color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 16px;
}
.wf-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; font-family: var(--display); }
.wf-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ============================================
   ENGINEERING EXPERIENCE / CASE STUDIES
   ============================================ */
.exp-section { background: var(--bg); }
.exp-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px;
}
.exp-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 20px; display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.exp-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.exp-tag { display: inline-block; padding: 3px 10px; background: var(--blue-soft); border: 1px solid rgba(24,73,214,0.12); border-radius: 100px; font-size: 10px; font-weight: 600; color: var(--blue); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.exp-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.exp-scope-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-light); margin-bottom: 6px; }
.exp-scope { font-size: 12px; color: var(--grey); line-height: 1.65; }
.exp-note { font-size: 11px; color: var(--grey-light); margin-top: 32px; border-top: 1px solid var(--border); padding-top: 16px; }
.exp-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .exp-2col { grid-template-columns: 1fr; } }
.exp-img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--r); margin-bottom: 14px; display: block; }

/* ============================================
   FULL-CYCLE MONITORING DELIVERY
   ============================================ */
.monitor-section { background: var(--white); border-top: 1px solid var(--border); }
.monitor-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px;
}
.monitor-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px 20px;
}
.monitor-n { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--blue); opacity: 0.35; margin-bottom: 12px; line-height: 1; }
.monitor-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 9px; }
.monitor-card p { font-size: 12px; color: var(--grey); line-height: 1.65; }

/* ============================================
   SPECIALIST ENGINEERING SUPPORT
   ============================================ */
.specialist { background: var(--bg); border-top: 1px solid var(--border); }
.specialist h2 { margin-bottom: 8px; }
.specialist-note { font-size: 13px; color: var(--grey); margin-bottom: 36px; margin-top: 8px; }
.spec