/* ==========================================================================
   Reams Energy — design system
   Tokens and component styling extracted from the approved landing-page
   design. Every page on the site is built from the classes below; page
   templates should not need inline styles.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink: #122744;
  --body: #4c586b;
  --muted: #7b8494;

  --blue: #1a4fa0;
  --blue-600: #153f83;
  --blue-050: #eef3fb;
  --navy: #0b2545;
  --green: #33a02c;
  --green-600: #2b8a25;
  --green-050: #e7f5e6;

  --bg: #ffffff;
  --surface: #eef1f6;
  --border: #e5eaf2;

  --shadow-sm: 0 1px 3px rgba(16, 39, 68, .06), 0 1px 2px rgba(16, 39, 68, .04);
  --shadow-md: 0 10px 30px rgba(16, 39, 68, .09);
  --shadow-lg: 0 22px 55px rgba(16, 39, 68, .14);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --gutter: clamp(18px, 4.5vw, 64px);
  --radius: 16px;
  --radius-sm: 11px;
  /* Fluid content width: fills large screens (up to 1560px) instead of
     locking at 1200px and leaving wide empty margins. Reading width is
     capped separately on .prose / .measure so text lines stay comfortable. */
  --shell: min(1560px, 92vw);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; }
img { height: auto; display: block; }
svg.lucide { width: 1em; height: 1em; display: block; flex: none; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-600); }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 18px;
  border-radius: 0 0 8px 8px; font-family: var(--font-head); font-weight: 700;
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --- Layout primitives -------------------------------------------------- */
.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }

/* Page body: every direct child is a full-bleed band. The band spans the
   viewport and supplies its own background; its children are what get
   constrained to the 1200px reading column. That keeps section backgrounds
   edge-to-edge without needing an extra wrapper element in each template. */
.page-body { display: block; }

.page-body > .card,
.page-body > .cta,
.page-body > section {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(46px, 6vw, 88px) var(--gutter);
  scroll-margin-top: 104px;
}

.page-body > .card > *,
.page-body > section > * { max-width: var(--shell); margin-inline: auto; }

/* Alternating bands give the sections separation now that they have no edges.
   .cta is excluded — it carries its own gradient. */
.page-body > .card:not(.cta),
.page-body > section:not(.cta) { background: var(--bg); }
.page-body > .card:not(.cta):nth-child(even),
.page-body > section:not(.cta):nth-child(even) { background: var(--surface); }

/* The gradient CTA keeps its colour but loses its rounded card shape. */
.page-body > .cta { padding: 0; }
.page-body > .cta > .cta__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(46px, 5.5vw, 80px) var(--gutter);
}

/* A band that should break the alternation — set it explicitly. */
.page-body > .band-light { background: var(--bg) !important; }
.page-body > .band-tint  { background: var(--surface) !important; }
.page-body > .band-navy  { background: var(--navy) !important; color: rgba(255, 255, 255, .8); }
.page-body > .band-navy .h2,
.page-body > .band-navy .h3,
.page-body > .band-navy .h4 { color: #fff; }

.stack { display: flex; flex-direction: column; }
.stack-12 { gap: 12px; } .stack-16 { gap: 16px; } .stack-20 { gap: 20px; }
.stack-24 { gap: 24px; } .stack-32 { gap: 32px; }

.row { display: flex; flex-wrap: wrap; align-items: center; }
.row-12 { gap: 12px; } .row-16 { gap: 16px; } .row-24 { gap: 24px; } .row-32 { gap: 32px; }

.grid { display: grid; gap: clamp(16px, 2vw, 22px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Auto-fit grid; override the track floor per instance with --min. */
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 260px)), 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); align-items: center; gap: clamp(22px, 3vw, 40px); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 2.6vw, 38px);
  scroll-margin-top: 104px;
}
.card--lg { padding: clamp(28px, 3vw, 44px); }
.card--flush { padding: 0; overflow: hidden; }

/* --- Typography ---------------------------------------------------------
   Poppins runs wider and taller than the previous pairing, so uppercase
   headings use tighter tracking (near-zero on large sizes) to stay elegant
   rather than shouty. Small labels keep positive tracking for legibility. */
.h1, .h2, .h3, .h4 {
  font-family: var(--font-head);
  color: var(--ink);
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.1;
}
.h1 { font-weight: 700; font-size: clamp(33px, 5vw, 58px); line-height: 1.04; letter-spacing: -.01em; }
.h2 { font-weight: 700; font-size: clamp(22px, 2.3vw, 30px); letter-spacing: 0; }
.h3 { font-weight: 600; font-size: clamp(17px, 1.6vw, 20px); letter-spacing: .02em; }
.h4 { font-weight: 600; font-size: 14px; letter-spacing: .03em; }

.h2 em, .h1 em { font-style: normal; color: var(--blue); }

.eyebrow {
  display: block;
  font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green);
}
.lead { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: var(--body); }
.prose { font-size: 15px; line-height: 1.7; color: var(--body); max-width: 68ch; }
.prose + .prose { margin-top: 14px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.tiny { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.center { text-align: center; }
.measure { max-width: 46ch; }

/* The short green underline that sits beneath every section heading. */
.rule { display: block; width: 46px; height: 3px; background: var(--green); border-radius: 2px; margin-top: 12px; }
.rule--center { margin-inline: auto; }

.section-head { margin-bottom: clamp(22px, 3vw, 30px); }
.section-head--center { text-align: center; }
.section-head--center .rule { margin-inline: auto; }
.section-head .lead { margin-top: 14px; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 6px;
  border: 2px solid var(--blue); background: var(--blue); color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--blue); }
.btn--ghost:hover { background: var(--blue-050); color: var(--blue-600); }

.btn--green { border-color: var(--green); background: var(--green); }
.btn--green:hover { background: var(--green-600); border-color: var(--green-600); }

.btn--light { border-color: #fff; background: #fff; color: var(--blue); }
.btn--light:hover { background: rgba(255, 255, 255, .88); border-color: rgba(255, 255, 255, .88); color: var(--blue-600); }

.btn--outline-light { border-color: rgba(255, 255, 255, .6); background: transparent; color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.btn--sm { padding: 11px 18px; font-size: 12.5px; }
.btn--block { width: 100%; }

.iconbtn {
  width: 40px; height: 40px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; color: var(--ink); cursor: pointer; font-size: 18px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.iconbtn:hover { border-color: var(--blue); color: var(--blue); }

/* A text link with a trailing arrow that nudges on hover. */
.arrowlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); text-decoration: none;
}
.arrowlink i, .arrowlink svg { transition: transform .2s var(--ease); }
.arrowlink:hover i, .arrowlink:hover svg { transform: translateX(4px); }

/* --- Utility bar -------------------------------------------------------- */
.topbar { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: 13px; }
.topbar__inner { display: flex; align-items: center; gap: 16px; padding-block: 9px; }
.topbar__item { display: inline-flex; align-items: center; gap: 9px; }
.topbar__spacer { margin-left: auto; }
.topbar__lang {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255, 255, 255, .24); border-radius: 5px;
  padding: 4px 10px; font-weight: 600; letter-spacing: .04em;
}
.topbar a { color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s var(--ease); }
.topbar a:hover { color: #fff; }
.topbar .ic-green { color: var(--green); display: inline-flex; font-size: 15px; }

/* --- Header / navigation ------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 70;
  background: #fff; border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.nav.is-stuck { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; gap: 22px; padding-block: 8px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; margin-right: auto; }
/* The logo already carries the full "Reams Energy Private Limited" lockup, so
   the header shows the image alone. mix-blend-mode drops the logo's white
   background into the white header cleanly, avoiding a visible box edge. */
.brand__logo {
  display: block; height: 80px; width: auto; max-width: 300px;
}

.nav__links { display: flex; gap: 22px; align-items: center; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding-block: 6px;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav__link:hover { color: var(--blue); }
.nav__link.is-active { color: var(--blue); }
/* Underline grows from the left on hover and stays for the current page. */
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__item:hover .nav__link::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link i { font-size: 14px; }

.nav__dropmenu {
  position: absolute; top: 100%; left: 50%; translate: -50% 0;
  min-width: 248px; padding: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item:hover .nav__dropmenu,
.nav__item:focus-within .nav__dropmenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropmenu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink); text-decoration: none;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__dropmenu a:hover, .nav__dropmenu a.is-active { background: var(--blue-050); color: var(--blue); }

.nav__toggle { display: none; }

.mobilenav { display: none; background: #fff; border-top: 1px solid var(--border); }
.mobilenav.is-open { display: block; }
.mobilenav__inner { display: flex; flex-direction: column; padding: 6px var(--gutter) 16px; max-width: var(--shell); margin-inline: auto; }
.mobilenav__link {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; font-size: 13px; color: var(--ink); text-decoration: none;
}
.mobilenav__link.is-active { color: var(--blue); }
.mobilenav__sub { padding: 9px 0 9px 16px; font-size: 12.5px; font-weight: 600;
  text-transform: none; letter-spacing: 0; color: var(--body); border-bottom: 1px solid var(--border); text-decoration: none; }
.mobilenav__sub.is-active { color: var(--blue); }

/* --- Home hero (photo background) --------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(90vh, 780px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy); overflow: hidden;
}
/* The montage photo fills the section; a slow zoom keeps it alive. */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 60% center;
  animation: heroZoom 18s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* Light veil: strong on the left for dark-text legibility, clearing to the
   right so the photography stays visible. Plus a soft base fade into the bar. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 32%, rgba(255,255,255,.55) 52%, rgba(255,255,255,.16) 72%, rgba(255,255,255,0) 100%),
    linear-gradient(0deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 24%);
}

.hero__inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(48px, 7vw, 96px); }
.hero__content { max-width: 640px; display: flex; flex-direction: column; align-items: flex-start; }

/* Status pill above the headline. */
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 12px; margin-bottom: 24px; border-radius: 999px;
  background: rgba(26, 79, 160, .08); border: 1px solid rgba(26, 79, 160, .2);
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: .09em; text-transform: uppercase; color: var(--blue-600);
}
.hero__badge-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: reamsDot 2.4s ease-out infinite; }
@keyframes reamsDot {
  0%   { box-shadow: 0 0 0 0 rgba(51, 160, 44, .45); }
  70%  { box-shadow: 0 0 0 8px rgba(51, 160, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 160, 44, 0); }
}

.hero__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.02; letter-spacing: -.01em; text-transform: uppercase; color: var(--ink); }
.hero__title span { display: block; }
.hero__title .t-blue { color: var(--blue); }
.hero__title .t-green { color: var(--green); }
.hero__lead { margin-top: 20px; max-width: 42ch; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: var(--body); font-weight: 500; }

/* Service chips — quick links to each service. */
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px 9px 11px; border-radius: 999px; text-decoration: none;
  background: rgba(255, 255, 255, .78); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .02em; color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.hero__chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue-050); color: var(--blue); }
.hero__chip-ic { flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: var(--green-050); color: var(--green-600); font-size: 15px; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Full-width trust bar along the base of the hero. */
.hero__trustbar { position: relative; z-index: 1; background: rgba(11, 37, 69, .9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero__trustbar-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px;
  padding-block: 15px;
}
.hero__trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: .03em; color: rgba(255, 255, 255, .9);
}
.hero__trust-item i { color: var(--green); font-size: 17px; display: inline-flex; }

/* --- Inner page hero ---------------------------------------------------- */
.pagehero {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue-600) 62%, var(--blue) 100%);
  color: #fff;
}
.pagehero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .1;
  background-image: repeating-linear-gradient(60deg, #fff 0 1px, transparent 1px 22px);
}
.pagehero__inner { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 76px); }
.pagehero__title { font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.06; letter-spacing: -.005em; text-transform: uppercase; }
.pagehero__lead { margin-top: 16px; max-width: 60ch; color: rgba(255, 255, 255, .84); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; }
.pagehero .eyebrow { color: #7fd47a; }
.pagehero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; margin-bottom: 18px; }
.crumbs a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: #fff; font-weight: 600; }
.crumbs__sep { color: rgba(255, 255, 255, .4); }

/* --- Tiles, features, stats -------------------------------------------- */
.tile {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px;
  background: #fff;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue-050); }
.tile--center { text-align: center; padding: 22px 12px; }
.tile--flat:hover { transform: none; }
.tile__ic { display: inline-flex; font-size: 34px; color: var(--green); }
.tile--center .tile__ic { font-size: 30px; }
.tile__title { font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: .03em; text-transform: uppercase; color: var(--ink); margin: 16px 0 8px; }
.tile--center .tile__title { font-size: 12px; letter-spacing: .04em; margin: 12px 0 0; }
.tile__text { font-size: 13.5px; line-height: 1.5; color: var(--body); margin-bottom: 12px; }

/* An icon beside a title and paragraph — used across "why us" style lists. */
.feature { display: flex; gap: 13px; align-items: flex-start; }
.feature__ic { flex: none; display: inline-flex; font-size: 24px; color: var(--green); margin-top: 2px; }
.feature__title { font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.feature__text { font-size: 12.5px; line-height: 1.45; color: var(--body); }
.feature--lg .feature__ic { font-size: 28px; }
.feature--lg .feature__title { font-size: 15px; }
.feature--lg .feature__text { font-size: 13.5px; line-height: 1.55; }

.feature--boxed {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; align-items: center; background: #fff;
}
.feature__badge {
  flex: none; width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--blue-050); color: var(--blue); font-size: 19px;
}

/* Solid blue metric card. */
.statcard { background: var(--blue); color: #fff; border-radius: 10px; padding: 16px 18px; text-align: center; }
.statcard__num { font-family: var(--font-head); font-weight: 800; font-size: 26px; line-height: 1; }
.statcard__label { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; color: rgba(255, 255, 255, .82); }

/* Large numeral on a light background. */
.stat { text-align: center; padding: 10px 8px; }
.stat__ic { display: inline-flex; font-size: 34px; color: var(--green); }
.stat__ic--blue { color: var(--blue); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 2.8vw, 34px); color: var(--ink); margin-top: 10px; }
.stat__label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat + .stat { border-left: 1px solid var(--border); }

.factrow { display: flex; gap: 32px; flex-wrap: wrap; }
.fact__num { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--blue); }
.fact__label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* --- Media frames ------------------------------------------------------- */
.frame { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--4x3 { aspect-ratio: 4 / 3; }
.frame--16x9 { aspect-ratio: 16 / 9; }
.frame--16x10 { aspect-ratio: 16 / 10; }
.frame--16x11 { aspect-ratio: 16 / 11; }
.frame--square { aspect-ratio: 1 / 1; }
/* India coverage map: show the whole map on a white field rather than cropping
   it to fill, and let the pulsing marker sit over the map by percentage. */
.mapframe { aspect-ratio: 1265 / 1244; background: #fff; }
.mapframe img { object-fit: contain; }

.avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--surface); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar--lg { width: 72px; height: 72px; }

/* --- Chips and pills ---------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: var(--blue-050); color: var(--blue);
}
.chip--green { background: var(--green-050); color: var(--green-600); }
.chip--muted { background: var(--surface); color: var(--muted); }
.chip--amber { background: #fdf1dc; color: #8a5a10; }

/* Marks content that is a structural sample awaiting real client data. */
.sample-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: #fdf1dc; color: #8a5a10; border: 1px dashed #e0b463;
}
.is-sample { position: relative; }

/* --- Cards for projects, quotes, jobs ----------------------------------- */
.projectcard {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; background: #fff;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.projectcard:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.projectcard__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.projectcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.projectcard:hover .projectcard__media img { transform: scale(1.05); }
.projectcard__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.projectcard__title { font-family: var(--font-head); font-weight: 700; font-size: 18px;
  letter-spacing: .01em; text-transform: uppercase; color: var(--ink); }
.projectcard__foot {
  margin-top: auto; display: flex; justify-content: space-between; gap: 8px;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 12px;
}

.quotecard {
  border: 1px solid var(--border); border-radius: 12px; padding: 26px;
  display: flex; flex-direction: column; gap: 16px; background: #fff;
}
.quotecard__ic { display: inline-flex; font-size: 30px; color: var(--green); }
.quotecard blockquote { font-size: 15px; line-height: 1.55; color: var(--ink); }
.quotecard figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quotecard__name { display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 14px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink); }
.quotecard__role { display: block; font-size: 12px; color: var(--muted); }

.jobcard {
  border: 1px solid var(--border); border-radius: 12px; padding: 24px; background: #fff;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.jobcard:hover { box-shadow: var(--shadow-md); border-color: var(--blue-050); }
.jobcard__meta { display: flex; flex-wrap: wrap; gap: 8px; }

/* --- Client logo grid --------------------------------------------------- */
.logogrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); gap: 12px; }
.logocell {
  border: 1px solid var(--border); border-radius: 9px; background: #fff;
  min-height: 92px; padding: 14px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.logocell:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-050); }
.logocell__name { font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .02em; color: var(--ink); line-height: 1.25; }
.logocell__sector { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* --- Numbered process steps -------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  counter-increment: step; position: relative;
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px 22px 22px 66px;
  background: #fff;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.step:hover { box-shadow: var(--shadow-md); border-color: var(--blue-050); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 22px; top: 22px;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  color: var(--blue); opacity: .55;
}
.step__title { font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .03em; text-transform: uppercase; color: var(--ink); margin-bottom: 5px; }
.step__text { font-size: 13.5px; line-height: 1.55; color: var(--body); }

/* --- Timeline ----------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 26px; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--blue), var(--green));
}
.timeline__item { position: relative; }
.timeline__item::before {
  content: ''; position: absolute; left: -32px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
}
.timeline__year { font-family: var(--font-head); font-weight: 800; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.timeline__title { font-family: var(--font-head); font-weight: 700; font-size: 16px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink); margin: 4px 0 5px; }
.timeline__text { font-size: 13.5px; line-height: 1.55; color: var(--body); }

/* --- Checklists --------------------------------------------------------- */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--body); }
.checklist li::before {
  content: ''; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: var(--green-050) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b8a25' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.checklist--tight li { font-size: 13px; }

.bullets { display: grid; gap: 10px; }
.bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.55; color: var(--body); }
.bullets li::before { content: ''; flex: none; width: 6px; height: 6px; margin-top: 8px; border-radius: 50%; background: var(--green); }

/* --- Definition / data rows -------------------------------------------- */
.datarow {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.datarow:last-child { border-bottom: 0; }
.datarow__key { flex: none; min-width: 190px; font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.datarow__val { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.datarow__val code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; letter-spacing: .02em; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__q:hover { color: var(--blue); }
.faq__q i { flex: none; font-size: 18px; color: var(--blue); transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q i { transform: rotate(180deg); }
.faq__a { overflow: hidden; height: 0; }
.faq__a-inner { padding: 0 20px 18px; font-size: 14px; line-height: 1.65; color: var(--body); }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 14px; align-content: start; }
.form--2col { grid-template-columns: 1fr 1fr; }
.form__full { grid-column: 1 / -1; }

.label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.input, .textarea, .select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 7px;
  font-size: 14.5px; color: var(--ink); background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050);
}
.textarea { min-height: 110px; resize: vertical; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: #c0392b; box-shadow: 0 0 0 3px #fbe9e7; }
.field__error { display: block; margin-top: 5px; font-size: 12px; color: #c0392b; }

.form__status { grid-column: 1 / -1; border-radius: 8px; padding: 13px 16px; font-size: 14px; display: none; }
.form__status.is-ok { display: block; background: var(--green-050); color: var(--green-600); border: 1px solid #bfe3bc; }
.form__status.is-err { display: block; background: #fbe9e7; color: #c0392b; border: 1px solid #f3c4be; }

/* Inline email capture that sits on the dark CTA panel. */
.form--inline { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.form--inline .input {
  flex: 1; min-width: 220px; padding: 15px 18px; font-size: 15px;
  border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .12); color: #fff;
}
.form--inline .input::placeholder { color: rgba(255, 255, 255, .7); }
.form--inline .input:focus { border-color: #fff; background: rgba(255, 255, 255, .2); box-shadow: none; }
.form--inline .form__status { flex: 1 0 100%; }

/* --- CTA panel ---------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-600) 60%, var(--navy) 100%);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  scroll-margin-top: 104px;
}
.cta::before {
  content: ''; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: repeating-linear-gradient(60deg, #fff 0 1px, transparent 1px 22px);
}
.cta__inner {
  position: relative; padding: clamp(30px, 4vw, 52px) clamp(24px, 3vw, 48px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; align-items: center;
}
.cta__title { font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(24px, 3vw, 38px); letter-spacing: -.005em; line-height: 1.06; text-transform: uppercase; }
.cta__text { font-size: 15px; line-height: 1.55; margin-top: 14px; max-width: 46ch; color: rgba(255, 255, 255, .85); }

/* --- Core services band (dark feature section) -------------------------- */
.corecards { position: relative; overflow: hidden; }
/* Faded photo blended into the top-right corner, echoing the mockup. */
.corecards::before {
  content: ''; position: absolute; top: 0; right: 0; z-index: 0;
  width: 58%; height: 72%; pointer-events: none; opacity: .28;
  background: url("../img/services-team.webp") center / cover no-repeat;
  -webkit-mask-image: linear-gradient(245deg, #000 24%, transparent 74%);
  mask-image: linear-gradient(245deg, #000 24%, transparent 74%);
}
.corecards__inner { position: relative; z-index: 1; }
.corecards__head { max-width: 640px; margin-bottom: clamp(30px, 4vw, 48px); }
.corecards__head .eyebrow { color: #6cd166; }
.corecards__title { font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(30px, 3.8vw, 50px); line-height: 1.05; letter-spacing: -.01em; margin-top: 14px; }
.corecards__title em { font-style: normal; color: var(--green); }
.corecards__lead { margin-top: 16px; font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; color: rgba(255, 255, 255, .78); max-width: 60ch; }

.corecards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 22px); }

/* White service card. */
.scard {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 14px; padding: clamp(20px, 1.8vw, 26px);
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.scard__ic {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 25px;
}
.scard__ic--green { background: var(--green); }
.scard__ic--blue { background: var(--blue); }
.scard__title { font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink); line-height: 1.2; }
.scard__desc { font-size: 13.5px; line-height: 1.55; color: var(--body); margin-bottom: 16px; }
.scard__list { margin-bottom: 20px; }
.scard__list li { font-size: 12.5px; }
.scard__link { margin-top: auto; }

/* Stat bar along the base of the section. */
.corebar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 24px;
  margin-top: clamp(28px, 3.5vw, 44px); padding: clamp(22px, 2.6vw, 32px) clamp(20px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}
.corebar__item { display: flex; align-items: center; gap: 14px; }
.corebar__item + .corebar__item { position: relative; }
.corebar__ic { flex: none; display: inline-flex; font-size: 34px; color: var(--green); }
.corebar__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 2.4vw, 32px); line-height: 1; color: #fff; }
.corebar__label { font-size: 12px; letter-spacing: .04em; color: rgba(255, 255, 255, .72); margin-top: 5px; }

/* --- Why-us strength cards ---------------------------------------------- */
.whycard {
  text-align: center; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  padding: clamp(24px, 2.5vw, 34px) 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.whycard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-050); }
.whycard__ic {
  width: 64px; height: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-050); color: var(--green-600); font-size: 27px;
  transition: transform .25s var(--ease);
}
.whycard:hover .whycard__ic { transform: scale(1.06); }
.whycard__rule { display: block; width: 26px; height: 3px; background: var(--green); border-radius: 2px; margin: 16px 0 14px; }
.whycard__title { font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 9px; }
.whycard__text { font-size: 13px; line-height: 1.55; color: var(--body); }
a.whycard { text-decoration: none; color: inherit; }

/* --- Reach & compliance ------------------------------------------------- */
.reach { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.reach__eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.reach__eyebrow i { color: var(--blue); font-size: 15px; }
.reach__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; color: var(--ink); margin-top: 14px; }
.reach__title em { font-style: normal; color: var(--green); }
.reach__sub { margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--body); max-width: 44ch; }
.reach__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.reachcard { border: 1px solid var(--border); border-radius: 12px; background: #fff; padding: 18px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.reachcard:hover { box-shadow: var(--shadow-md); border-color: var(--blue-050); }
.reachcard__ic { width: 44px; height: 44px; border-radius: 50%; background: var(--green-050); color: var(--green-600);
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.reachcard__title { font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .03em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.reachcard__text { font-size: 12.5px; line-height: 1.5; color: var(--body); }

.reach__panel {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(18px, 2vw, 28px); align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius); background: #fff;
  box-shadow: var(--shadow-sm); padding: clamp(18px, 2vw, 26px);
}
.reach__commit-title { font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }

/* Coverage markers over the map. */
.mapmark { position: absolute; width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 1px 3px rgba(16, 39, 68, .3);
  transform: translate(-50%, -50%); pointer-events: none; }
.mapmark--blue { background: var(--blue); }
.mapmark--green { background: var(--green); }

/* Bottom compliance / certificates bar. */
.compliancebar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  margin-top: clamp(28px, 3.5vw, 44px); padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
}
.compliancebar__lead { display: flex; align-items: center; gap: 16px; flex: 1 1 360px; }
.compliancebar__badge { flex: none; width: 56px; height: 56px; border-radius: 12px;
  background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; }
.compliancebar__title { font-family: var(--font-head); font-weight: 800; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.compliancebar__text { font-size: 13px; line-height: 1.55; color: var(--body); margin-top: 4px; max-width: 52ch; }
.compliancebar__cta { display: flex; align-items: center; gap: 16px; flex: 1 1 360px;
  border-left: 1px solid var(--border); padding-left: 22px; }
.compliancebar__ic { flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--green); color: var(--green); font-size: 22px; }
.compliancebar__ctatext { flex: 1; }
.compliancebar__q { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--ink); line-height: 1.3; }
.compliancebar__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.compliancebar__cta .btn { flex: none; }

/* --- Clients rail ------------------------------------------------------- */
.clients { display: grid; grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); gap: clamp(22px, 3vw, 40px); align-items: center; }
.clients__head .prose { max-width: 34ch; }
.clients__rail { min-width: 0; }

/* --- Representative deployment cards ------------------------------------ */
.depcard {
  display: grid; grid-template-columns: 1.02fr .98fr; overflow: hidden;
  border: 1px solid var(--border); border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-050) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.depcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.depcard__body { padding: clamp(20px, 2vw, 26px); display: flex; flex-direction: column; }
.depcard__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.depcard__ic { flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; }
.depcard__ic--green { background: var(--green); }
.depcard__ic--blue { background: var(--blue); }
.depcard__title { font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink); line-height: 1.2; }
.depcard__foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.depcard__media { position: relative; min-height: 100%; overflow: hidden; background: var(--surface); }
.depcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* --- Commitment row ----------------------------------------------------- */
.commitrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.commitrow__item { display: flex; gap: 15px; align-items: flex-start; padding: 6px clamp(14px, 1.6vw, 26px); }
.commitrow__item + .commitrow__item { border-left: 1px solid var(--border); }
.commitrow__ic { flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 24px; }
.commitrow__ic--green { background: var(--green-050); color: var(--green-600); }
.commitrow__ic--blue { background: var(--blue-050); color: var(--blue); }
.commitrow__title { font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .02em; color: var(--ink); margin-bottom: 5px; }
.commitrow__text { font-size: 13px; line-height: 1.5; color: var(--body); }

/* --- Careers + contact -------------------------------------------------- */
.joincontact { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); gap: clamp(24px, 3vw, 40px); align-items: stretch; }

.careercard {
  position: relative; overflow: hidden; border-radius: var(--radius); color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
/* Real team photo sits behind a strong blue veil so the copy stays legible. */
.careercard__photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.careercard__pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(140deg, rgba(26, 79, 160, .90) 0%, rgba(21, 63, 131, .92) 52%, rgba(11, 37, 69, .95) 100%),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 22px);
}
.careercard__body { position: relative; z-index: 2; padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; height: 100%; }
.careercard__title { font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -.005em; line-height: 1.1; text-transform: uppercase; }
.careercard__title em { font-style: normal; color: #7fd47a; }
.careercard__text { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, .82); margin-top: 18px; max-width: 44ch; }
.careercard__stats { display: flex; gap: 40px; flex-wrap: wrap; margin: 26px 0; }
.careercard__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3vw, 40px); line-height: 1; color: #fff; }
.careercard__lbl { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .72); margin-top: 6px; }
.careercard .btn { margin-top: auto; align-self: flex-start; }

.getintouch__grid { display: grid; grid-template-columns: minmax(180px, 220px) minmax(0, 1fr); gap: clamp(20px, 2.4vw, 34px); align-items: start; margin-top: 4px; }
.getintouch__details { display: flex; flex-direction: column; gap: 18px; }

/* Headline figures — a single bordered bar with dividers. */
.statbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  padding: clamp(20px, 2.4vw, 30px) clamp(14px, 1.6vw, 26px);
  margin-top: clamp(30px, 4vw, 46px);
}
.statbar__item { display: flex; align-items: center; gap: 15px; padding-inline: clamp(12px, 1.6vw, 26px); }
.statbar__item + .statbar__item { border-left: 1px solid var(--border); }
.statbar__ic {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; font-size: 25px;
}
.statbar__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); line-height: 1; color: var(--blue); }
.statbar__label { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 6px; }

/* Caption flanked by short rules. */
.capline { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 18px; }
.capline span { flex: none; width: 38px; height: 2px; background: var(--green); opacity: .5; border-radius: 2px; }
.capline p { font-size: 13px; color: var(--muted); text-align: center; max-width: 60ch; }

/* --- Notice banner ------------------------------------------------------ */
.notice {
  border: 1px dashed #e0b463; background: #fffaf0; color: #7a5310;
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: 13.5px; line-height: 1.6;
}
.notice__title { font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.notice code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; background: #f6ecd8; padding: 1px 5px; border-radius: 3px; }

/* --- Footer ------------------------------------------------------------- */
.footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0d2a52 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, .78);
}
/* Brand accent line along the very top edge. */
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 60%, var(--green) 100%); }
/* Renewable-energy line-art scene across the base, faded into the navy. */
.footer::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; z-index: 0;
  height: clamp(230px, 30vw, 460px); pointer-events: none; opacity: .7;
  background: url("../img/footer-scene.webp") center bottom / 100% auto no-repeat;
  -webkit-mask-image: linear-gradient(to top, #000 52%, transparent 100%);
  mask-image: linear-gradient(to top, #000 52%, transparent 100%);
}
.footer__inner { position: relative; z-index: 1; max-width: var(--shell); margin-inline: auto; padding: clamp(40px, 4.5vw, 60px) var(--gutter) 0; }

/* Newsletter / CTA band. */
.footer__top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding-bottom: clamp(28px, 3.5vw, 42px); margin-bottom: clamp(28px, 3.5vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer__top-lead { display: flex; flex-direction: column; gap: 16px; flex: 1 1 380px; align-items: flex-start; }
.footer__brand-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.footer__tagline { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, .74); max-width: 46ch; }
.newsletter { flex: 1 1 340px; max-width: 440px; }
.newsletter__label { display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.newsletter__row { display: flex; gap: 10px; }
.newsletter__input {
  flex: 1; min-width: 0; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .08);
  color: #fff; font-size: 14px; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.newsletter__input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter__input:focus { outline: none; border-color: var(--green); background: rgba(255, 255, 255, .14); }
.newsletter .btn { flex: none; }
.newsletter .form__status { margin-top: 10px; }
.newsletter .form__status.is-ok { background: rgba(51, 160, 44, .16); color: #a9e3a4; border-color: rgba(51, 160, 44, .4); }

.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 38px; }
.footer__brandcol { max-width: 320px; }
.footer__title { font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; }
.footer__links a { display: inline-flex; align-items: center; gap: 7px; width: fit-content; }
/* Chevron that nudges on hover. */
.footer__links a::before { content: '\203A'; color: var(--green); font-size: 15px; line-height: 1; transition: transform .2s var(--ease); }
.footer__links a:hover::before { transform: translateX(3px); }
.footer a { color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer__brand-name { display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 18px; letter-spacing: .02em; color: #fff; }
.footer__brand-sub { display: block; font-size: 9px; letter-spacing: .3em; color: rgba(255, 255, 255, .55); }
.footer__blurb { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, .66); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; font-size: 13.5px; color: rgba(255, 255, 255, .7); }
.footer__contact span { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact i { flex: none; display: inline-flex; font-size: 16px; color: var(--green); margin-top: 3px; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14); margin-top: clamp(32px, 4vw, 48px); padding: 20px 0;
  font-size: 12.5px; color: rgba(255, 255, 255, .55);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__reg { font-size: 12px; color: rgba(255, 255, 255, .5); margin-top: 20px; line-height: 1.7;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .02em; }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social__link {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--blue); color: #fff; font-size: 16px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.social__link:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.social__link svg { width: 1em; height: 1em; }

/* --- Floating actions --------------------------------------------------- */
.float {
  position: fixed; right: clamp(14px, 2vw, 24px); bottom: clamp(14px, 2vw, 24px);
  display: flex; flex-direction: column; gap: 12px; z-index: 80;
}
.float__btn {
  width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; box-shadow: var(--shadow-md); font-size: 24px;
  border: 0; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.float__btn:hover { transform: translateY(-3px); color: #fff; }
.float__btn--wa { background: var(--green); }
.float__btn--call { background: var(--blue); }
.float__btn--top { background: var(--ink); opacity: 0; visibility: hidden; }
.float__btn--top.is-on { opacity: 1; visibility: visible; }

/* --- Modals ------------------------------------------------------------- */
.modal {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 37, 69, .55); padding: 20px; overflow: auto;
}
.modal.is-open { display: grid; place-items: center; }
.modal--search.is-open { display: block; }
.modal__panel {
  background: #fff; width: 100%; max-width: 560px; margin: auto;
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: clamp(24px, 3vw, 36px);
}
.modal__panel--sm { max-width: 420px; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal__title { font-family: var(--font-head); font-weight: 800; font-size: 23px;
  text-transform: uppercase; color: var(--ink); margin-top: 6px; }
.modal__close {
  flex: none; width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
  color: var(--ink); cursor: pointer; font-size: 18px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { border-color: var(--blue); color: var(--blue); }
.modal__body { margin-top: 20px; }

.searchbar { max-width: 720px; margin: 12vh auto 0; padding-inline: 24px; }
.searchbar__box {
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
}
.searchbar__box i { display: inline-flex; font-size: 22px; color: var(--blue); }
.searchbar__box input { flex: 1; border: 0; outline: none; font-size: 17px; color: var(--ink); background: none; }
.searchbar__hint { color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-top: 14px; opacity: .75; }
.searchresults { margin-top: 12px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; max-height: 52vh; overflow-y: auto; }
.searchresults:empty { display: none; }
.searchresults a { display: block; padding: 14px 20px; text-decoration: none; border-bottom: 1px solid var(--border); }
.searchresults a:last-child { border-bottom: 0; }
.searchresults a:hover, .searchresults a.is-cursor { background: var(--blue-050); }
.searchresults__title { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ink); }
.searchresults__meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.searchresults__empty { padding: 18px 20px; font-size: 14px; color: var(--muted); }

/* --- Client marquee ----------------------------------------------------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.marquee__item {
  flex: none; min-width: 210px; padding: 16px 22px;
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--ink);
  display: flex; flex-direction: column; gap: 3px;
}
.marquee__item span { font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* --- Gallery ------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 16px; }
.gallery__item {
  position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid var(--border); background: var(--surface); cursor: zoom-in;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 12px; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .04em; text-transform: uppercase;
  background: linear-gradient(transparent, rgba(11, 37, 69, .85));
}
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 120;
  background: rgba(11, 37, 69, .9); padding: 24px;
  place-items: center;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(94vw, 1100px); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 20px; right: 22px; }

/* --- Filter bar --------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filters__btn {
  border: 1px solid var(--border); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 9px 18px; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.filters__btn:hover { border-color: var(--blue); color: var(--blue); }
.filters__btn.is-on { background: var(--blue); border-color: var(--blue); color: #fff; }

/* --- Chart -------------------------------------------------------------- */
.chart { color: var(--green); }
.chart svg { width: 100%; height: auto; margin-top: 14px; font-family: var(--font-body); }
.chart__area { opacity: 0; }
.chart__dot { opacity: 0; transform: scale(.3); transform-box: fill-box; transform-origin: center; }

/* --- Pulse marker on the coverage map ----------------------------------- */
@keyframes reamsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 79, 160, .5); }
  70%  { box-shadow: 0 0 0 14px rgba(26, 79, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 79, 160, 0); }
}
.mapdot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue); border: 2px solid #fff; pointer-events: none;
  animation: reamsPulse 2.4s ease-out infinite;
}

/* --- Animation hooks ---------------------------------------------------- */
/* Elements start hidden only when JS is running, so the no-JS render is
   complete and readable. GSAP clears these once ScrollTrigger fires. */
.js [data-reveal] { opacity: 0; }
.js [data-reveal-group] > * { opacity: 0; }
[data-parallax] { will-change: transform; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1160px) {
  .nav__links { gap: 16px; }
  .nav__link { font-size: 12px; letter-spacing: .04em; }
}

@media (max-width: 1040px) {
  .nav__links, .nav__cta { display: none !important; }
  .nav__toggle { display: inline-flex !important; }
  .corecards__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .form--2col { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; }
  .corebar { grid-template-columns: repeat(2, 1fr); }
  .corecards::before { display: none; }
  /* Stat bar folds to a 2Ã—2 grid; swap side dividers for top dividers. */
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .statbar__item { border-left: 0 !important; }
  .statbar__item:nth-child(even) { border-left: 1px solid var(--border) !important; }
  .statbar__item:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 20px; }
}

@media (max-width: 560px) {
  .corecards__grid { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: 1fr; }
  .statbar__item { border-left: 0 !important; padding-inline: 6px; }
  .statbar__item + .statbar__item { border-top: 1px solid var(--border); padding-top: 18px; }
  .capline span { width: 20px; }
}

@media (max-width: 760px) {
  /* On phones the photo focal point shifts left (solar site) and the veil
     covers the whole width so the dark text stays readable. */
  .hero { min-height: 0; }
  .hero__bg { object-position: 30% center; }
  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.9) 55%, rgba(255,255,255,.72) 100%),
      linear-gradient(0deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 30%);
  }
  .hero__content { max-width: none; }
  .hero__trust-item { font-size: 11.5px; }
}

@media (max-width: 980px) {
  /* Reach section stacks: intro over the map/commitment panel. */
  .reach { grid-template-columns: 1fr; }
  .reach__sub { max-width: none; }
}

@media (max-width: 980px) {
  /* Careers + contact stack; the commitment row folds to 2 columns. */
  .joincontact { grid-template-columns: 1fr; }
  .commitrow { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .commitrow__item:nth-child(odd) { border-left: 0; }
  .commitrow__item:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 22px; }
}

@media (max-width: 860px) {
  /* Clients: heading over the rail. */
  .clients { grid-template-columns: 1fr; }
  .clients__head .prose { max-width: none; }
}

@media (max-width: 680px) {
  .reach__panel { grid-template-columns: 1fr; }
  .reach__cards { grid-template-columns: 1fr; }
  .compliancebar__cta { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; flex-wrap: wrap; }
  /* Deployment cards stack content over image; commitment becomes single column. */
  .depcard { grid-template-columns: 1fr; }
  .depcard__media { min-height: 190px; }
  .commitrow { grid-template-columns: 1fr; }
  .commitrow__item { border-left: 0 !important; }
  .commitrow__item + .commitrow__item { border-top: 1px solid var(--border); padding-top: 20px; }
  .getintouch__grid { grid-template-columns: 1fr; }
}

@media (max-width: 1040px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brandcol { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  body { font-size: 14.5px; }
  .brand__logo { height: 52px; }
  .topbar__hide { display: none !important; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .datarow__key { min-width: 100%; }
  .form--inline { justify-content: stretch; }
  .timeline { padding-left: 28px; }
  .step { padding: 20px 18px 20px 58px; }
  .float__btn { width: 46px; height: 46px; font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal], .js [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
}

@media print {
  .topbar, .nav, .mobilenav, .float, .modal, .cta, .footer__legal { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border-color: #ccc; break-inside: avoid; }
}
