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

/* Fonts loaded via <link rel=preconnect> + <link rel=stylesheet> in each page head */

: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 { margin-right: 44px; 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: 12px; line-height: 1.65; max-width: 265px; }
.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: block; }
.svc-main { max-width: 880px; }


/* 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; }
.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
/* ============================================
   GLOBAL / REGIONAL ADDITIONS
   ============================================ */

/* Header proposal CTA */
.nav-cta { padding: 9px 18px; font-size: 13px; margin-right: 6px; }

/* Footer: 4 columns (brand / Services / Company / Contact) */
.foot-top { grid-template-columns: 1.7fr 1fr 1fr 1fr; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }

/* Technical contour + GIS grid overlays (lightweight SVG/CSS) */
.regions, .loc-hero { position: relative; overflow: hidden; }
.regions::before, .loc-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='480' viewBox='0 0 720 480'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='0.055' stroke-width='1'%3E%3Cpath d='M-20 90 Q160 30 340 95 T740 70'/%3E%3Cpath d='M-20 150 Q180 85 360 150 T740 128'/%3E%3Cpath d='M-20 215 Q200 145 380 210 T740 190'/%3E%3Cpath d='M-20 285 Q170 220 350 280 T740 258'/%3E%3Cpath d='M-20 355 Q190 295 370 350 T740 330'/%3E%3Cpath d='M-20 425 Q160 370 340 420 T740 400'/%3E%3C/g%3E%3Cg fill='%23FFFFFF' fill-opacity='0.10'%3E%3Ccircle cx='130' cy='120' r='2.5'/%3E%3Ccircle cx='420' cy='85' r='2.5'/%3E%3Ccircle cx='620' cy='200' r='2.5'/%3E%3Ccircle cx='250' cy='300' r='2.5'/%3E%3Ccircle cx='540' cy='380' r='2.5'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 720px 480px, 44px 44px, 44px 44px;
}

/* Regional presence (homepage, navy) */
.regions { background: var(--navy); }
.regions .eyebrow { color: rgba(147,197,253,0.9); }
.regions h2 { color: #fff; }
.regions .lead { color: rgba(255,255,255,0.5); }
.region-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 44px; position: relative; z-index: 1; }
.region-card {
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-lg); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.25s;
}
.region-card:hover { border-color: rgba(147,197,253,0.55); background: rgba(255,255,255,0.08); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.28); }
.region-name { font-family: var(--display); font-size: 16px; font-weight: 600; color: #fff; }
.region-desc { font-size: 12px; color: rgba(255,255,255,0.52); line-height: 1.6; flex: 1; }
.region-link { font-size: 12px; font-weight: 600; color: #93C5FD; }
.region-card--all { border-style: dashed; }

/* Light variant (locations index) */
.region-grid--light { margin-top: 0; }
.region-grid--light .region-card { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.region-grid--light .region-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.region-grid--light .region-name { color: var(--navy); }
.region-grid--light .region-desc { color: var(--grey); }
.region-grid--light .region-link { color: var(--blue); }

/* Location pages */
.loc-hero { background: linear-gradient(135deg, var(--navy) 0%, #10254a 100%); padding: 150px 0 64px; }
.loc-hero .container { position: relative; z-index: 1; }
.loc-hero h1 { color: #fff; margin-top: 6px; }
.loc-lead { color: rgba(255,255,255,0.6); max-width: 620px; font-size: 16px; line-height: 1.8; margin-top: 14px; }
.loc-body { padding: 64px 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 310px; gap: 56px; align-items: start; }
.loc-svcs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.loc-svc {
  display: flex; flex-direction: column; gap: 4px; padding: 15px 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.loc-svc:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.loc-svc-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.loc-svc-note { font-size: 12px; color: var(--grey); line-height: 1.55; }

@media (max-width: 900px) {
  .region-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; gap: 36px; }
  .loc-svcs { grid-template-columns: 1fr; }
  .loc-hero { padding: 120px 0 52px; }
}
@media (max-width: 560px) { .region-grid { grid-template-columns: 1fr; } }


/* ============================================
   BILINGUAL ADDITIONS
   ============================================ */
/* Chinese font stack + spacing */
html[lang="zh-CN"] body, html[lang="zh-CN"] button, html[lang="zh-CN"] input,
html[lang="zh-CN"] select, html[lang="zh-CN"] textarea {
  font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Source Han Sans SC', sans-serif;
}
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3, html[lang="zh-CN"] h4,
html[lang="zh-CN"] .logo, html[lang="zh-CN"] .hstat-n, html[lang="zh-CN"] .astat-n,
html[lang="zh-CN"] .region-name, html[lang="zh-CN"] .wf-title {
  font-family: 'Space Grotesk', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Source Han Sans SC', sans-serif;
  letter-spacing: 0;
}
html[lang="zh-CN"] .eyebrow, html[lang="zh-CN"] .svc-htag, html[lang="zh-CN"] .tag { letter-spacing: 0.02em; }
html[lang="zh-CN"] p, html[lang="zh-CN"] .del-text, html[lang="zh-CN"] .faq-a { line-height: 1.9; }

/* ============================================
   REGION-FIRST + RTL ADDITIONS
   ============================================ */
.region-grid--3 { grid-template-columns: repeat(3,1fr); }
.region-card--lg { padding: 28px 26px; gap: 10px; }
.region-card--lg .region-name { font-size: 20px; }
.region-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 6px; }
.rtag { padding: 3px 10px; border: 1px solid rgba(255,255,255,0.16); border-radius: 100px; font-size: 10.5px; color: rgba(255,255,255,0.55); }
.region-grid--light .rtag { border-color: var(--border); color: var(--grey); }
.country-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.country-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 15px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.country-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.country-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.country-card .region-link { color: var(--blue); font-size: 11.5px; }
@media (max-width: 900px) { .region-grid--3 { grid-template-columns: 1fr; } .country-grid { grid-template-columns: 1fr; } }

/* RTL (Arabic) */
html[dir="rtl"] body, html[dir="rtl"] button, html[dir="rtl"] input, html[dir="rtl"] select, html[dir="rtl"] textarea {
  font-family: 'Segoe UI', Tahoma, 'Noto Sans Arabic', Arial, sans-serif;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4,
html[dir="rtl"] .region-name, html[dir="rtl"] .hstat-n, html[dir="rtl"] .astat-n {
  font-family: 'Segoe UI', Tahoma, 'Noto Sans Arabic', Arial, sans-serif; letter-spacing: 0;
}
html[dir="rtl"] .eyebrow, html[dir="rtl"] .svc-htag, html[dir="rtl"] .tag, html[dir="rtl"] .rtag,
html[dir="rtl"] .cap-theme, html[dir="rtl"] .logo-sub { letter-spacing: 0; }
html[dir="rtl"] p, html[dir="rtl"] .del-text, html[dir="rtl"] .faq-a, html[dir="rtl"] .loc-svc-note { line-height: 1.95; }
html[dir="rtl"] .logo { margin-right: 0; margin-left: 44px; }
html[dir="rtl"] .nav-right { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .lang-switch { margin-right: 0; margin-left: 10px; }
html[dir="rtl"] .nav-cta { margin-right: 0; margin-left: 6px; }
html[dir="rtl"] .drop { left: auto; right: -8px; }
html[dir="rtl"] .mob-menu { right: auto; left: -100%; transition: left 0.3s ease; box-shadow: 8px 0 48px rgba(0,0,0,0.1); }
html[dir="rtl"] .mob-menu.open { left: 0; right: auto; }
html[dir="rtl"] .mob-nav > li > a, html[dir="rtl"] .mob-nav > li > button { text-align: right; }
html[dir="rtl"] .hero-img-panel { right: auto; left: 0; }
html[dir="rtl"] .hero-img-panel::before { background: linear-gradient(to left, var(--white) 0%, transparent 60%); }
html[dir="rtl"] .svc-hero-bg::after { background: linear-gradient(to left, rgba(11,25,48,0.95) 35%, rgba(11,25,48,0.5) 100%); }
html[dir="rtl"] .fselect { background-position: left 12px center; padding-right: 13px; padding-left: 34px; }
html[dir="rtl"] .foot-bottom { direction: rtl; }

/* ============================================
   CENPACE CENTRAL ASIA
   ============================================ */
.nav-links { gap: 20px; }
.nav-links > li > a, .nav-btn { font-size: 13px; }
.nav-cta { padding: 9px 16px; font-size: 12.5px; }

/* Region + pillar tweaks */
.region-grid--3 { grid-template-columns: repeat(3,1fr); }
.region-card--lg { padding: 26px 24px; gap: 10px; }
.region-card--lg .region-name { font-size: 17px; }
@media (max-width:900px){ .region-grid--3 { grid-template-columns: 1fr; } }

/* Content-to-confirm block */
.needs-data .nd-box { border: 1px dashed var(--border-dark); background: var(--bg2);
  border-radius: var(--r-lg); padding: 22px 24px; }
.nd-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); background: var(--gold-soft); padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.needs-data .nd-box p { font-size: 13px; color: var(--grey); line-height: 1.65; margin: 0 0 10px; }
.nd-list { margin: 0; padding-left: 18px; }
.nd-list li { font-size: 12.5px; color: var(--navy); line-height: 1.9; }

/* Projects filter bar */
.pf-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-btn { padding: 9px 16px; border: 1px solid var(--border); background: var(--white);
  border-radius: 100px; font-size: 12.5px; font-weight: 600; color: var(--grey); cursor: pointer;
  font-family: inherit; transition: all .2s; }
.pf-btn:hover { border-color: var(--blue); color: var(--blue); }
.pf-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 22px; }
@media (max-width:900px){ .proj-grid { grid-template-columns: 1fr; } }

/* Service page long-form headings */
.svc-main h2 { font-size: 21px; color: var(--navy); margin-bottom: 6px; }
.svc-main .blk-title { font-size: 14px; }

/* Perf */
img { content-visibility: auto; }

/* Project cards */
.proj-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 22px 20px; transition: border-color .2s, box-shadow .25s, transform .2s; }
.proj-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pc-country { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue); }
/* DELETE THIS RULE once project data is verified — removes the DRAFT chip site-wide */
.pc-draft { font-size: 9px; font-weight: 700; letter-spacing: .09em; color: var(--gold);
  background: var(--gold-soft); padding: 3px 8px; border-radius: 100px; }
.pc-title { font-size: 15.5px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 6px; }
.pc-meta { font-size: 11.5px; color: var(--grey-light); margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); }
.pc-row { display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; }
.pc-k { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.pc-v { font-size: 12.5px; color: var(--grey); line-height: 1.55; }

/* Lifecycle phase grid */
.ph-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.ph-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 20px 18px; }
.ph-n { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--blue);
  letter-spacing: .06em; }
.ph-t { font-size: 14.5px; font-weight: 600; color: var(--navy); margin: 6px 0 10px; }
.ph-list { margin: 0; padding-left: 15px; }
.ph-list li { font-size: 12.3px; color: var(--grey); line-height: 1.65; margin-bottom: 5px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 14px; }
@media (max-width: 900px) { .ph-grid { grid-template-columns: 1fr; } .two-col { grid-template-columns: 1fr; } }
.xlink { color: var(--blue); font-weight: 500; border-bottom: 1px solid rgba(24,73,214,.3); }
.xlink:hover { border-bottom-color: var(--blue); }
.sub-lead { font-size: 12.5px; color: var(--grey-light); margin: 2px 0 16px; }
.svc-main h2 { margin-top: 30px; }
.svc-main h2:first-child { margin-top: 0; }

/* ============================================
   CENPACE CENTRAL ASIA — EN
   ============================================ */
.nav-links { gap: 19px; }
.nav-links > li > a { font-size: 12.8px; }
.nav-links > li > a.is-active { color: var(--navy); font-weight: 600; }
.nav-cta { padding: 9px 16px; font-size: 12.5px; }

.sec-head { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.sub-lead { font-size: 12.5px; color: var(--grey-light); margin: 2px 0 14px; }
.svc-main h2 { font-size: 21px; color: var(--navy); margin: 30px 0 6px; }
.svc-main h2:first-child { margin-top: 0; }
.ph-list { margin: 6px 0 0; padding-left: 16px; }
.ph-list li { font-size: 13px; color: var(--grey); line-height: 1.75; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.two-col-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-cols h2 { font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.about-cols p { font-size: 13.5px; color: var(--grey); line-height: 1.75; }
@media (max-width:860px){ .two-col,.two-col-wide,.about-cols { grid-template-columns: 1fr; gap: 26px; } }

.lifecycle { display:inline-block; background: var(--navy); color: #fff; font-family: var(--display);
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em; padding: 11px 20px;
  border-radius: 100px; margin: 4px 0 16px; }
.equip-line { font-size: 12.5px; color: var(--grey); line-height: 1.8; margin-top: 14px;
  padding-top: 12px; border-top: 1px solid var(--border); }
.equip-line strong { color: var(--navy); }

/* Project cards */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.proj-grid--3 { grid-template-columns: repeat(3,1fr); margin-top: 14px; }
.proj-grid--2 { grid-template-columns: repeat(2,1fr); margin-top: 14px; }
@media (max-width:980px){ .proj-grid,.proj-grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .proj-grid,.proj-grid--3,.proj-grid--2 { grid-template-columns: 1fr; } }
.proj-card { display:block; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s, box-shadow .25s, transform .2s; }
.proj-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.pc-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg2); }
.pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-body { padding: 18px 18px 20px; }
.pc-country { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.pc-title { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; margin: 6px 0 4px; }
.pc-svc { font-size: 11.5px; color: var(--grey-light); margin-bottom: 10px; }
.pc-scope { font-size: 12.5px; color: var(--grey); line-height: 1.6; margin: 0; }

.pf-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-btn { padding: 9px 17px; border: 1px solid var(--border); background: var(--white);
  border-radius: 100px; font-size: 12.5px; font-weight: 600; color: var(--grey); cursor: pointer;
  font-family: inherit; transition: all .2s; }
.pf-btn:hover { border-color: var(--blue); color: var(--blue); }
.pf-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Regional presence map */
.presence { background: var(--navy); padding: 76px 0; position: relative; }
.presence h2 { color: #fff; font-size: clamp(20px,2.4vw,27px); max-width: 660px; margin-bottom: 26px; }
.presence-map { width: 100%; height: auto; display: block; }
.presence-map .mg { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.presence-map .ml { stroke: rgba(147,197,253,.22); stroke-width: 1; stroke-dasharray: 4 5; }
.presence-map .mn-halo { fill: rgba(147,197,253,.10); }
.presence-map .mn-dot { fill: #93C5FD; }
.presence-map .mn-key .mn-dot { fill: #fff; }
.presence-map .mn-key .mn-halo { fill: rgba(255,255,255,.16); }
.presence-map .mn-name { fill: #fff; font-family: var(--display); font-size: 15px; font-weight: 600; }
.presence-map .mn-lbl { fill: rgba(184,199,222,.75); font-size: 11px; }
.presence-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; }
.presence-legend span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #B8C7DE; }
.lg-dot { width: 9px; height: 9px; border-radius: 50%; background: #93C5FD; display: inline-block; }
.lg-dot.lg-key { background: #fff; }
@media (max-width:700px){ .presence-map .mn-name { font-size: 22px; } .presence-map .mn-lbl { font-size: 16px; } }

.hidden-field { position: absolute; left: -9999px; }
img { content-visibility: auto; }

/* ============ POWER SYSTEMS ============ */
.ps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 8px; }
.ps-card { display: block; background: var(--navy); border-radius: var(--r-lg); padding: 20px 20px 18px;
  transition: transform .2s, box-shadow .25s; }
.ps-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(11,25,48,.22); }
.ps-card h3 { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.ps-card p { font-size: 11.8px; color: #93C5FD; line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .ps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ps-grid { grid-template-columns: 1fr; } }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 8px; }
@media (max-width: 900px) { .three-col { grid-template-columns: 1fr; gap: 20px; } }

/* ============ CONTACT ICONS ============ */
.ci { display:inline-block; width:15px; height:15px; margin-right:9px; vertical-align:-2px;
  background-repeat:no-repeat; background-position:center; background-size:contain; opacity:.85; }
.foot-contact li { margin-bottom: 7px; }
.foot-contact a, .foot-contact span { display: inline-flex; align-items: center;
  font-size: 13px; color: var(--grey); }
.cinfo-icon .ci { margin-right: 0; width: 16px; height: 16px; opacity: 1; }
.ci-mail { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231849D6' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M2 7l10 6 10-6'/%3E%3C/svg%3E"); }
.ci-phone { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231849D6' stroke-width='2'%3E%3Crect x='6' y='2' width='12' height='20' rx='2'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E"); }
.ci-wa { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2325D366' stroke-width='2'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-12.6 7.4L3 21l2.2-5.3A8.5 8.5 0 1 1 21 11.5z'/%3E%3C/svg%3E"); }
.ci-tg { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2329A9EB' stroke-width='2'%3E%3Cpath d='M21 4L3 11l6 2 2 6 3-4 5 4z'/%3E%3C/svg%3E"); }
.ci-wc { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2307C160' stroke-width='2'%3E%3Cellipse cx='9' cy='9' rx='7' ry='5.5'/%3E%3Cpath d='M5 15l-1.5 2.5L6.5 16'/%3E%3Cellipse cx='16' cy='15' rx='6' ry='4.5'/%3E%3Cpath d='M19.5 19.5l1 1.8-2.2-1'/%3E%3C/svg%3E"); }
.ci-globe { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231849D6' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cellipse cx='12' cy='12' rx='4' ry='9'/%3E%3Cpath d='M3 12h18'/%3E%3C/svg%3E"); }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 8px; }
@media (max-width: 1000px) { .four-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .four-col { grid-template-columns: 1fr; } }

/* ---- SEO UPDATE ---- */
.logo img { display:block; height:40px; width:auto; }
.mob-top .logo img { height:38px; }
footer .logo img { height:40px; }
.logo { display:flex; flex-direction:row; align-items:center; justify-content:flex-start; gap:10px; }
.logo-sub { font-size:9.5px; letter-spacing:.14em; color:var(--grey-light); font-weight:600; }
.hero-pillars { font-size:13px; color:var(--grey); margin-top:6px; letter-spacing:.01em; }
.std-strip { display:inline-block; background:var(--blue-soft); color:var(--blue); font-size:11.5px;
  font-weight:600; padding:7px 14px; border-radius:100px; margin:2px 0 14px; }
.std-row { display:flex; flex-wrap:wrap; gap:8px; margin:4px 0 18px; }
.std-row .std-strip { margin:0; }
.presence-countries { font-size:13px; color:#B8C7DE; margin-top:18px; line-height:1.8; }
.form-alt { font-size:12.5px; color:var(--grey); margin-top:14px; }
.form-alt a { color:var(--blue); font-weight:600; }

/* ---- MASTER REVISION ---- */
.card-tags { font-size:11px; color:var(--blue); font-weight:600; letter-spacing:.02em; margin:2px 0 8px; }
.equip-block { margin-top:16px; padding-top:14px; border-top:1px solid var(--border); }
.equip-lbl { display:block; font-size:10.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--grey-light); margin-bottom:8px; }
.flow-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }
.flow-item { background:var(--bg); border:1px solid var(--border); border-radius:var(--r);
  padding:14px 16px; font-size:12.5px; color:var(--navy); font-weight:500; }
.flow-lbl { display:block; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue); margin-bottom:5px; }
@media (max-width:760px){ .flow-row { grid-template-columns:1fr; } }
.sub-h { font-size:14px; color:var(--navy); font-weight:600; margin:22px 0 4px; }
/* nav breathing room now that the CTA button is gone */
.nav-links { gap:22px; }
.nav-right { display:flex; align-items:center; }
.ps-title { font-size:14.5px; font-weight:600; color:#fff; margin-bottom:5px; }
.presence-lead { font-size:14px; color:#B8C7DE; max-width:640px; margin:6px 0 22px; }
.contact-form h2 { font-size:20px; color:var(--navy); margin-bottom:6px; }
.cinfo-h { font-size:15px; color:var(--navy); margin-bottom:14px; }
.proj-h2 { font-size:18px; color:var(--navy); margin:26px 0 4px; }
html { scroll-behavior: smooth; }
#capabilities { scroll-margin-top: 90px; }

/* ---- REGIONAL MAP (real geography) ---- */
.ca-map { width:100%; height:auto; display:block; border-radius:var(--r-lg); }
.lg-sw { width:12px; height:12px; border-radius:3px; display:inline-block; border:1px solid rgba(147,197,253,.5); }
.market-line { display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  font-size:13px; color:var(--grey); line-height:1.7; margin-top:16px; }
.market-line .lg-sw { flex-shrink:0; }
.presence .market-line { color:#B8C7DE; }
.lg-ops { background:#5B9BFF; }
 }

/* ---- language switcher (EN | RU | 中文) ---- */
.lang-switch { display:inline-flex; align-items:center; gap:2px; margin-right:12px;
  border:1px solid var(--border); border-radius:var(--r); padding:3px; white-space:nowrap; }
.lang-switch .lang-opt { font-size:12px; font-weight:600; color:var(--grey); line-height:1;
  padding:5px 8px; border-radius:4px; transition:color .2s, background .2s; }
.lang-switch .lang-opt:hover { color:var(--blue); }
.lang-switch .lang-opt.is-cur { color:#fff; background:var(--navy); }
.mob-lang { display:flex !important; margin:0 0 18px; }
.mob-lang .lang-opt { font-size:13px; padding:7px 12px; }

html[lang="zh-CN"] .nav-links > li > a { letter-spacing:0; }
html[lang="zh-CN"] .btn { letter-spacing:0; }
html[lang="zh-CN"] .lifecycle { letter-spacing:.04em; }
html[lang="zh-CN"] .del-text { line-height:1.6; }
/* Russian words run long: stop nav and buttons breaking the layout */
html[lang="ru"] .nav-links { gap:16px; }
html[lang="ru"] .nav-links > li > a { font-size:12.5px; letter-spacing:0; }
html[lang="ru"] .lifecycle { letter-spacing:.05em; font-size:11.5px; }
html[lang="ru"] .btn { letter-spacing:0; }
html[lang="ru"] .std-strip { letter-spacing:0; }


/* ============================================================
   HEADER / NAV — single source of truth
   Nine nav items + a 3-way language switcher need real width.
   The switch to the hamburger is per-language, because the
   labels differ hugely in length (RU ≫ EN ≫ ZH).
   ============================================================ */

/* tighter horizontal rhythm: padding AND gap were both large */
.nav-links { gap: 4px; }
.nav-links > li > a, .nav-links a, .nav-btn { padding: 0 11px; font-size: 13.5px; white-space: nowrap; }
.nav-links > li { flex-shrink: 0; }
.logo { margin-right: 28px; flex-shrink: 0; }
.logo img { flex-shrink: 0; }
.nav-right { flex-shrink: 0; gap: 10px; }
.nav { min-width: 0; }

/* language switcher must never wrap — 中文 is two glyphs, not two lines */
.lang-switch { display: inline-flex; flex-wrap: nowrap; flex-shrink: 0; white-space: nowrap; }
.lang-switch .lang-opt { white-space: nowrap; flex-shrink: 0; display: inline-flex;
  align-items: center; justify-content: center; min-width: 30px; }

/* hamburger is hidden only while the full nav is actually shown */
.hamburger { display: flex; }
.nav-links { display: none; }
@media (min-width: 1260px) { .nav-links { display: flex; } .hamburger { display: none; } }
@media (min-width: 1140px) { html[lang="zh-CN"] .nav-links { display: flex; }
                             html[lang="zh-CN"] .hamburger { display: none; } }
@media (max-width: 1400px) { html[lang="ru"] .nav-links { display: none; }
                             html[lang="ru"] .hamburger { display: flex; } }

/* language switcher rides along with the desktop nav */
.lang-switch:not(.mob-lang) { display: none; }
@media (min-width: 1260px) { .lang-switch:not(.mob-lang) { display: inline-flex; } }
@media (min-width: 1140px) { html[lang="zh-CN"] .lang-switch:not(.mob-lang) { display: inline-flex; } }
@media (max-width: 1400px) { html[lang="ru"] .lang-switch:not(.mob-lang) { display: none; } }

/* medium desktop: trim spacing before dropping to the hamburger */
@media (max-width: 1360px) {
  .container { padding: 0 32px; }
  .logo { margin-right: 20px; }
  .nav-links > li > a, .nav-links a, .nav-btn { padding: 0 9px; font-size: 13px; }
}

/* mobile menu language switcher: one horizontal row, comfortable tap targets */
.mob-lang { display: flex !important; flex-wrap: nowrap; justify-content: flex-start;
  gap: 6px; margin: 4px 0 18px; }
.mob-lang .lang-opt { min-width: 52px; min-height: 40px; font-size: 14px; padding: 8px 14px; }

/* Russian labels are ~25% longer than English: keep the compact rhythm
   for longer before the nav is given its full spacing */
@media (max-width: 1560px) {
  html[lang="ru"] .nav-links { gap: 2px; }
  html[lang="ru"] .nav-links > li > a { padding: 0 8px; font-size: 12.5px; }
  html[lang="ru"] .logo { margin-right: 16px; }
  html[lang="ru"] .container { padding: 0 28px; }
  html[lang="ru"] .lang-switch .lang-opt { padding: 5px 6px; min-width: 26px; }
}

/* ============================================================
   RESPONSIVE SAFETY — long Russian strings, dense Chinese
   ============================================================ */

/* long single-line pills become blocks on small screens instead of
   wrapping into a 4-line lozenge (RU lifecycle bands are ~2x English) */
@media (max-width: 760px) {
  .lifecycle, .std-strip {
    display: block; width: 100%; border-radius: var(--r);
    line-height: 1.65; text-align: left;
  }
  .lifecycle { padding: 10px 14px; letter-spacing: .04em; }
  .std-row { flex-direction: column; align-items: stretch; gap: 6px; }
}

/* never let a long compound word push the page sideways */
h1, h2, h3, h4, p, li,
.pc-title, .pc-scope, .del-text, .tag, .blk-title, .sinfo-v,
.market-line, .sub-lead, .foot-contact a, .cinfo-val {
  overflow-wrap: break-word;
}

/* Chinese: denser glyphs need a little more room in chips and ticks */
@media (max-width: 760px) {
  html[lang="zh-CN"] .tag { line-height: 1.8; }
  html[lang="zh-CN"] .del-text { line-height: 1.7; }
}

/* very small phones: keep hero and section rhythm sane */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .tag { font-size: 10.5px; padding: 3px 8px; }
  .del-item { padding: 10px 11px; }
  .lang-switch .lang-opt { min-width: 44px; }
}

/* contact form status / error message */
.form-status { margin: 14px 0 0; padding: 11px 14px; border-radius: var(--r);
  font-size: 13px; line-height: 1.55; background: var(--blue-soft); color: var(--navy); }
.form-status.is-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.fsubmit[disabled] { opacity: .6; cursor: progress; }
form.is-sending .finput, form.is-sending .fselect, form.is-sending .ftextarea { opacity: .75; }
