/* ================================================================ */
/*  LIGHT AUTOMATIONS — SHARED STYLESHEET                            */
/*  Edit this one file to change design across ALL pages.            */
/* ================================================================ */

/* ============================================================== */
/* THEME VARIABLES — change colors, fonts, spacing in one place    */
/* ============================================================== */
:root {
  --green-primary: #1B5E20;
  --green-accent: #2E7D32;
  --green-deep: #0A2E0C;
  --green-darker: #071F08;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --ink: #0F1F0F;
  --ink-soft: #3D4A3D;
  --ink-muted: #6B7570;
  --line: #E5E7E2;
  --cream: #FAFAF7;
  --white: #FFFFFF;

  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1280px;
  --radius: 4px;
  --radius-lg: 8px;
}

/* ============================================================== */
/* RESET & BASE                                                    */
/* ============================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }
a:hover { opacity: 0.85; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.chapter-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--green-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.chapter-num::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--green-accent);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 56px;
}

/* ============================================================== */
/* BUTTONS                                                         */
/* ============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--green-darker);
}
.btn-primary:hover {
  background: var(--amber-dark);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  opacity: 1;
}
.btn-dark {
  background: var(--green-primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-darker);
  opacity: 1;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 1.5px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  opacity: 1;
}

/* ============================================================== */
/* NAVBAR                                                          */
/* ============================================================== */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
  text-decoration: none;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  font-style: italic;
  white-space: nowrap;
}
.footer-brand .logo img { height: 48px; }
.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin-top: 4px;
}
@media (max-width: 520px) {
  .logo img { height: 34px; }
  .logo-tagline { font-size: 8px; }
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { color: var(--green-primary); opacity: 1; }
.nav-links a.active { font-weight: 600; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ============================================================== */
/* HERO (homepage only)                                            */
/* ============================================================== */
/* ============================================================== */
/* HERO — Premium industrial design                                */
/* ============================================================== */
.hero {
  background: #061F08;
  background: radial-gradient(ellipse at 30% 0%, #0D3210 0%, #061F08 55%, #030F05 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  isolation: isolate;
}

/* Background decorative layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Fine engineered grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}

/* Ambient glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.hero-glow-1 {
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.7) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

/* Scanning line effect */
.hero-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.6), transparent);
  animation: hero-scan 8s linear infinite;
  opacity: 0.5;
}
@keyframes hero-scan {
  0% { top: -2px; }
  100% { top: 100%; }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* Top row: tag + credential pills */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
.hero-tag .dot {
  opacity: 0.5;
  font-size: 14px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Credential pills */
.hero-credentials {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cred-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.cred-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}

/* Main headline */
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  max-width: 900px;
  margin-bottom: 32px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--amber);
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
}

/* Rotating word animation — slides up between values */
.rotate-wrap {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.15em;
  line-height: 1.05;
}
.rotate-stage {
  display: inline-flex;
  flex-direction: column;
  animation: rotate-words 14s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.rotate-word {
  display: block;
  color: var(--amber);
  font-style: italic;
  font-weight: 600;
  height: 1.15em;
  line-height: 1.05;
  position: relative;
  padding-right: 0.1em;
  padding-bottom: 0.1em;
}
.rotate-word::after {
  content: '';
  position: absolute;
  left: 0; right: 0.1em;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
  opacity: 0.9;
}

/* 5 steps (4 unique words + looped repeat of first) × 3.5s each. Returns seamlessly via duplicate */
@keyframes rotate-words {
  0%, 20%   { transform: translateY(0);       }  /* uptime */
  25%, 45%  { transform: translateY(-1.15em); }  /* control */
  50%, 70%  { transform: translateY(-2.3em);  }  /* intelligence */
  75%, 95%  { transform: translateY(-3.45em); }  /* performance */
  100%      { transform: translateY(-4.6em);  }  /* "uptime" duplicate — seamless loop */
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .rotate-stage {
    animation: none;
    transform: translateY(0);
  }
  .rotate-word:not(:first-child) {
    display: none;
  }
}

.hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-hero {
  padding: 16px 28px;
  font-size: 15px;
}

/* Partner trust strip */
.hero-partners {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-partners-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-partners-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-partner-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.hero-partner-name:hover {
  color: var(--white);
}
.hero-partners-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================== */
/* HERO STATS BAND (separate band below hero)                      */
/* ============================================================== */
.hero-stats-band {
  background: #030F05;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.hero-stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  transform: translateX(-50%);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  position: relative;
  padding-left: 24px;
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, var(--amber), transparent);
  border-radius: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num span {
  color: var(--amber);
  font-weight: 600;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================== */
/* PAGE HERO (for sub-pages)                                       */
/* ============================================================== */
.page-hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--amber); }
.breadcrumb span { margin: 0 10px; opacity: 0.4; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  max-width: 860px;
  margin-bottom: 20px;
}
.page-hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  line-height: 1.65;
}

/* ============================================================== */
/* SECTIONS (shared)                                               */
/* ============================================================== */
section {
  padding: 100px 0;
}
.section-alt { background: var(--cream); }
.section-dark { background: var(--green-deep); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .chapter-num { color: var(--amber); }
.section-dark .chapter-num::before { background: var(--amber); }
.section-dark .section-lead { color: rgba(255,255,255,0.75); }

/* ============================================================== */
/* ABOUT                                                           */
/* ============================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}
.about-pillars {
  display: grid;
  gap: 24px;
}
.pillar {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.pillar:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 46, 12, 0.06);
}
.pillar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================== */
/* SERVICES                                                        */
/* ============================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-wide {
  grid-column: span 2;
}
@media (max-width: 960px) {
  .service-wide { grid-column: auto; }
}
.service {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 46, 12, 0.08);
}
.service:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(46, 125, 50, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-primary);
}
.service h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.service-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-soft);
}
.service-detail {
  list-style: none;
  margin-top: 16px;
}
.service-detail li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-detail li:first-child { border-top: none; }
.service-detail li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* ============================================================== */
/* INDUSTRIES                                                      */
/* ============================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.industry {
  padding: 32px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  transition: all 0.25s ease;
}
.industry:hover {
  background: rgba(46, 125, 50, 0.15);
  border-color: var(--green-accent);
  transform: translateY(-2px);
}
.industry-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--amber);
}
.industry-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================== */
/* PARTNERS / OEMs                                                 */
/* ============================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.partner {
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.partner:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(10, 46, 12, 0.06);
}
.partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.partner-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.partner-big {
  padding: 36px 28px;
  text-align: left;
}
.partner-big .partner-name {
  font-size: 22px;
  margin-bottom: 10px;
}
.partner-big p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 14px;
}

/* Authorised partner variant — highlighted with badge */
.partner-authorised {
  position: relative;
  border: 2px solid var(--green-primary);
  background: linear-gradient(180deg, var(--white) 0%, #F3F9F4 100%);
}
.partner-authorised:hover {
  border-color: var(--green-deep);
  box-shadow: 0 12px 24px rgba(27, 94, 32, 0.15);
}
.partner-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-primary);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ============================================================== */
/* PROJECTS                                                        */
/* ============================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 46, 12, 0.1);
}
.project-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}
.project-1 .project-visual { background-image: url('images/projects/project-1.jpg'); }
.project-2 .project-visual { background-image: url('images/projects/project-2.jpg'); }
.project-3 .project-visual { background-image: url('images/projects/project-3.jpg'); }
.project-4 .project-visual { background-image: url('images/projects/project-4.jpg'); }
.project-5 .project-visual { background-image: url('images/projects/project-5.jpg'); }
.project-6 .project-visual { background-image: url('images/projects/project-6.jpg'); }
.project-featured .project-visual { background-image: url('images/projects/commissioning-engineer.jpg'); }
.project-bms-preview .project-visual {
  background:
    radial-gradient(circle at 20% 30%, rgba(245,158,11,0.25) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(46,125,50,0.3) 0%, transparent 40%),
    linear-gradient(135deg, #0A2E0C 0%, #1B5E20 40%, #2E7D32 70%, #F59E0B 110%);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(245,158,11,0.25) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(46,125,50,0.3) 0%, transparent 40%),
    linear-gradient(135deg, #0A2E0C 0%, #1B5E20 40%, #2E7D32 70%, #F59E0B 110%);
  background-size: 24px 24px, 24px 24px, auto, auto, auto;
  position: relative;
}
.project-bms-preview .project-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1' stroke-opacity='0.45'%3E%3Cpath d='M3 21V9l9-6 9 6v12'/%3E%3Cpath d='M9 21v-8h6v8'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.project-visual {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.project-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 46, 12, 0.1) 0%, rgba(10, 46, 12, 0.2) 40%, rgba(7, 31, 8, 0.9) 100%);
  background-size: auto;
}
.project-sector {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.project-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.project-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-specs span {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  background: var(--cream);
  border-radius: 3px;
  color: var(--ink-soft);
}

/* ============================================================== */
/* WHY US                                                          */
/* ============================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  padding: 32px 24px;
  border-left: 3px solid var(--green-primary);
}
.why-card h4 {
  font-size: 19px;
  margin-bottom: 12px;
}
.why-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================== */
/* LEADERSHIP                                                      */
/* ============================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 440px));
  gap: 24px;
}
.leader {
  text-align: left;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.leader-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.leader h4 {
  font-size: 20px;
  margin-bottom: 4px;
}
.leader-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.leader p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================== */
/* TESTIMONIALS                                                    */
/* ============================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--green-accent);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ============================================================== */
/* ACADEMY CALLOUT                                                 */
/* ============================================================== */
.academy-callout {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-accent) 100%);
  color: var(--white);
  padding: 64px 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.academy-callout::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.academy-callout h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}
.academy-callout p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
.academy-cta {
  text-align: right;
  position: relative;
  z-index: 2;
}

/* ============================================================== */
/* CTA BANNER (end of sub-pages)                                   */
/* ============================================================== */
.cta-banner {
  background: var(--green-deep);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-banner .btn-row {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================== */
/* CONTACT                                                         */
/* ============================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-info > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.65;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
}
.contact-value a:hover { color: var(--amber); opacity: 1; }

.contact-form {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select option {
  background: var(--green-deep);
  color: var(--white);
}

/* ============================================================== */
/* SECTION SEE-ALL LINK (for homepage previews)                    */
/* ============================================================== */
.section-see-all {
  margin-top: 48px;
  text-align: center;
}
.section-see-all a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.section-see-all a:hover {
  border-bottom-color: var(--green-primary);
  opacity: 1;
}

/* ============================================================== */
/* FOOTER                                                          */
/* ============================================================== */
footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col a:hover { color: var(--amber); opacity: 1; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  border-color: var(--amber);
  color: var(--amber);
  opacity: 1;
}

/* ============================================================== */
/* RESPONSIVE                                                      */
/* ============================================================== */
@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .projects-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .hero-credentials { padding: 10px 16px; gap: 14px; }
  .cred-name { font-size: 13px; }
  .hero-partners-row { gap: 12px; }
  .hero-partner-name { font-size: 17px; }
  .academy-callout { grid-template-columns: 1fr; padding: 40px 28px; }
  .academy-cta { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero { padding: 70px 0 60px; }
  .page-hero { padding: 60px 0 50px; }
}
@media (max-width: 520px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-credentials { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px; }
  .cred-sep { display: none; }
  .hero-partner-name { font-size: 15px; }
  .hero-partners-dot { display: none; }
  .hero-partners-row { gap: 16px; }
  .contact-form { padding: 24px; }
}

/* ============================================================== */
/* FEATURED PROJECT (projects.html headline project)               */
/* ============================================================== */
.featured-project-wrapper { padding-bottom: 40px; }
.featured-project {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(10, 46, 12, 0.06);
}
.featured-image {
  background-image: url('images/projects/commissioning-engineer.jpg');
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.featured-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.featured-tag.featured-client {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  font-weight: 600;
}
.featured-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.featured-content > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.featured-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured-highlights li {
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.featured-highlights li:first-child { border-top: none; padding-top: 0; }
.featured-highlights li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .featured-project { grid-template-columns: 1fr; }
  .featured-image { aspect-ratio: 16 / 10; min-height: 0; }
  .featured-content { padding: 32px 24px; }
  .featured-content h3 { font-size: 22px; }
}

/* Featured BMS variant — reversed layout + gradient placeholder */
.featured-project-bms .featured-image-bms {
  background: linear-gradient(135deg, #0A2E0C 0%, #1B5E20 40%, #2E7D32 70%, #F59E0B 110%);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0A2E0C 0%, #1B5E20 40%, #2E7D32 70%, #F59E0B 110%);
  background-size: 30px 30px, 30px 30px, auto;
  position: relative;
}
.featured-project-bms .featured-image-bms::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245,158,11,0.25) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(46,125,50,0.3) 0%, transparent 40%);
  pointer-events: none;
}
.featured-project-bms .featured-image-bms::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1' stroke-opacity='0.35'%3E%3Cpath d='M3 21V9l9-6 9 6v12'/%3E%3Cpath d='M9 21v-8h6v8'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 960px) {
  .featured-project-bms { grid-template-columns: 1fr; }
  .featured-project-bms .featured-image-bms { order: -1; aspect-ratio: 16 / 10; min-height: 0; }
}

/* ============================================================== */
/* OUR TEAM / PEOPLE SECTION (homepage)                            */
/* ============================================================== */
.people-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.people-image {
  aspect-ratio: 4 / 3;
  background-image: url('images/team/engineer-pms.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(10, 46, 12, 0.12);
}
.people-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}
.people-content > p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.people-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  letter-spacing: 0.03em;
}
@media (max-width: 960px) {
  .people-feature { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================== */
/* WHATSAPP FLOATING BUTTON                                        */
/* ============================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: all 0.25s ease;
  color: white;
}
.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.35;
  z-index: -1;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.25); opacity: 0; }
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 520px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
}

/* ============================================================== */
/* INDUSTRY CARDS — make clickable on homepage                     */
/* ============================================================== */
a.industry {
  text-decoration: none;
  cursor: pointer;
  display: block;
}
a.industry:hover { opacity: 1; }

/* ============================================================== */
/* INDUSTRY PAGE                                                   */
/* ============================================================== */
.sector-intro {
  max-width: 820px;
  margin: 0 auto 48px;
}
.sector-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.sector-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin: 40px 0;
}
.sector-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.sector-stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.sector-challenges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sector-challenge {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green-primary);
  border-radius: var(--radius);
}
.sector-challenge h4 {
  font-size: 17px;
  margin-bottom: 10px;
}
.sector-challenge p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.sector-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sector-service {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.sector-service:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 46, 12, 0.06);
}
.sector-service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sector-service h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.sector-service p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.sector-oems {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.sector-oem {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
}
.sector-other {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sector-other-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sector-other-card:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 46, 12, 0.06);
  opacity: 1;
}
.sector-other-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sector-other-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.sector-other-card p {
  font-size: 13px;
  color: var(--ink-muted);
}
@media (max-width: 960px) {
  .sector-stats { grid-template-columns: 1fr; }
  .sector-challenges, .sector-services { grid-template-columns: 1fr; }
  .sector-other { grid-template-columns: 1fr; }
}

/* ============================================================== */
/* FORM STATUS MESSAGES (success/error)                            */
/* ============================================================== */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.55;
  display: none;
}
.form-message.visible { display: block; }
.form-message.success {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.5);
  color: #B5EBB8;
}
.form-message.error {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.5);
  color: #FCA5A5;
}

/* ============================================================== */
/* SCROLL FADE-IN (kept)                                           */
/* ============================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================== */
/* LEGAL CONTENT (privacy, terms)                                  */
/* ============================================================== */
.legal-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.legal-content .legal-meta {
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 12px 18px;
  border-radius: var(--radius);
  border-left: 3px solid var(--green-accent);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 18px;
  padding-left: 22px;
}
.legal-content ul li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--green-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--green-deep);
}
.legal-content strong {
  color: var(--ink);
  font-weight: 700;
}
