/* =====================================================================
   Amin Moqeem — plain static build
   Merged from globals.css + all *.module.css. CSS-module class names are
   namespaced by component prefix (nav-, ft-, hero-, svc-, ab-, pr-, fq-,
   ct-, tw-, sb-, ph-) so the flattened global sheet has no collisions.
   ===================================================================== */

:root {
  --navy: #0c1b2a;
  --navy-deep: #081320;
  --navy-mid: #16324f;
  --navy-soft: #41506b;
  --red: #c8102e;
  --red-dark: #9e0c24;
  --red-light: #e8495b;
  --red-tint: #fbedef;
  --sand: #f5f3ee;
  --sand-dark: #e9e4d8;
  --sand-line: #e5e1d6;
  --sand-border: #dfdacc;
  --line: #e8eaee;
  --steel: #dce4ec;
  --whatsapp: #25d366;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--navy);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body { overflow-x: hidden; }

a { text-decoration: none; color: var(--red); transition: color 0.4s ease; }
a:hover { color: var(--red-dark); }

button, input, select, textarea { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #a3a8bd; }

img { max-width: 100%; }

@keyframes amm-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes amm-pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ---------- shared layout ---------- */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* fill-image helper: emulates next/image fill (absolute-positioned cover img
   inside a position:relative parent). */
.fill-photo { position: relative; overflow: hidden; }
.fill-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- eyebrow / section heading ---------- */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.eyebrow-rule { width: 34px; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-text {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
}
.section-title { font-size: 33px; font-weight: 600; color: var(--navy); margin: 0 0 12px; line-height: 1.2; }
.section-lead { font-size: 15px; color: rgba(12, 27, 42, 0.62); line-height: 1.7; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 13px; font-weight: 600; border-radius: 4px; text-transform: uppercase;
  letter-spacing: 0.06em; border: none; cursor: pointer; transition: all 0.4s ease;
}
.btn-red { background: var(--red); color: #fff; padding: 15px 30px; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; padding: 15px 30px; }
.btn-navy:hover { background: var(--red); color: #fff; }
.btn-outline-navy { color: var(--navy); border: 1px solid var(--navy); padding: 13px 26px; background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--red); padding: 16px 32px; font-size: 14px; letter-spacing: 0.02em; }
.btn-white:hover { transform: translateY(-4px); color: var(--red); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(900px 500px at 80% -20%, #16324f 0%, #0c1b2a 60%, #081320 100%);
  color: #fff; overflow: hidden;
}
.page-hero-photo { position: absolute; inset: 0; z-index: 0; }
.page-hero-photo img { object-fit: cover; object-position: center; }
.page-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(12,27,42,0.95) 0%, rgba(12,27,42,0.86) 45%, rgba(22,50,79,0.72) 100%);
}
.page-hero-dots {
  position: absolute; inset: 0; z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.6;
}
.page-hero-inner { position: relative; z-index: 3; max-width: 1140px; margin: 0 auto; padding: 68px 24px 74px; }
.page-hero-badge {
  display: inline-block; background: rgba(232,73,91,0.14); color: var(--red-light);
  border: 1px solid rgba(232,73,91,0.3); border-radius: 3px; padding: 7px 18px;
  font-size: 13px; font-weight: 500; margin-bottom: 18px;
}
.page-hero-title { font-size: 44px; font-weight: 600; color: #fff; margin: 0 0 12px; line-height: 1.15; }
.page-hero-lead { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 640px; margin: 0 0 12px; }
.crumbs { font-size: 14px; color: rgba(255,255,255,0.6); }
.crumbs a { color: rgba(255,255,255,0.6); }
.crumbs a:hover { color: #fff; }

/* ---------- pill badge ---------- */
.pill {
  display: inline-block; color: var(--red-dark); background: var(--red-tint);
  border-radius: 3px; padding: 6px 18px; font-size: 13px; font-weight: 500; margin-bottom: 16px;
}

/* ---------- form controls ---------- */
.field {
  width: 100%; padding: 13px 15px; border: 1.5px solid #ddd9ce; border-radius: 4px;
  font-size: 14px; color: var(--navy); outline: none; background: #fff; transition: border-color 0.3s ease;
}
.field:focus { border-color: var(--red); }
.field-label { display: block; font-size: 12.5px; font-weight: 600; color: #3a3f57; margin-bottom: 7px; }

/* =====================================================================
   NAVBAR  (prefix: nav-)
   ===================================================================== */
.nav-root { position: sticky; top: 0; z-index: 1000; }
.nav-utility { background: var(--navy); color: rgba(255,255,255,0.8); font-size: 13px; }
.nav-utilityInner {
  max-width: 1200px; margin: 0 auto; padding: 9px 24px; display: flex;
  align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.nav-utilityLeft { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-utilityLink { color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 7px; }
.nav-utilityLink:hover { color: #fff; }
.nav-utilityRight { display: flex; align-items: center; gap: 18px; }
.nav-utilityNote { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.6); }
.nav-utilitySocial { color: rgba(255,255,255,0.8); display: inline-flex; }
.nav-utilitySocial:hover { color: #fff; }
.nav-nav { background: #fff; box-shadow: 0 2px 28px 0 rgba(0,0,0,0.06); }
.nav-navInner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex;
  align-items: center; justify-content: space-between; gap: 20px; min-height: 82px;
}
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-brandLogo { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--navy); white-space: nowrap; transition: color 0.3s ease; }
.nav-link:hover { color: var(--red); }
.nav-linkActive { color: var(--red); font-weight: 600; }
.nav-ctas { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-trackBtn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--navy); border: 1px solid var(--navy); padding: 11px 20px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.35s ease;
}
.nav-trackBtn:hover { background: var(--navy); color: #fff; }
.nav-quoteBtn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff;
  font-size: 13px; font-weight: 600; padding: 12px 24px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.4s ease;
}
.nav-quoteBtn:hover { background: var(--red-dark); color: #fff; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--navy); }
.nav-mobileMenu { border-top: 1px solid #eee; padding: 14px 24px 22px; background: #fff; }
.nav-mobileLinks { display: flex; flex-direction: column; gap: 4px; }
.nav-mobileLink { font-size: 16px; font-weight: 500; color: var(--navy); padding: 11px 4px; border-bottom: 1px solid #f2f2f4; }
.nav-mobileLinkActive { color: var(--red); font-weight: 600; }
.nav-mobileCtas { display: flex; gap: 12px; margin-top: 16px; }
.nav-mobileTrack {
  flex: 1; text-align: center; font-size: 13px; font-weight: 600; color: var(--navy);
  border: 1px solid var(--navy); padding: 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.nav-mobileQuote {
  flex: 1; text-align: center; background: var(--red); color: #fff; font-size: 13px; font-weight: 600;
  padding: 13px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.nav-mobileQuote:hover { color: #fff; }

/* =====================================================================
   HOME HERO + sections  (prefix: hero-)
   ===================================================================== */
.hero-hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; border-top: 3px solid var(--red); }
.hero-heroPhoto { position: absolute; inset: 0; z-index: 0; }
.hero-heroPhoto img { object-fit: cover; object-position: center; }
.hero-heroScrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(12,27,42,0.75) 0%, rgba(12,27,42,0.75) 59%, rgba(12,27,42,0.3) 63%, rgba(12,27,42,0) 68%, rgba(12,27,42,0) 100%);
}
.hero-heroLines {
  position: absolute; inset: 0; z-index: 2; max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); pointer-events: none;
}
.hero-heroLines > div { border-left: 1px solid rgba(255,255,255,0.05); }
.hero-heroLines > div:last-child { border-right: 1px solid rgba(255,255,255,0.05); }
.hero-heroInner { position: relative; z-index: 3; max-width: 1140px; margin: 0 auto; padding: 72px 24px 84px; }
.hero-heroTop { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.hero-heroCopy { max-width: 700px; }
.hero-heroEyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero-heroRule { width: 34px; height: 2px; background: var(--red); flex-shrink: 0; }
.hero-heroEyebrowText { font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-heroTitle { font-size: 50px; line-height: 1.14; font-weight: 600; margin: 0 0 250px; color: #fff; letter-spacing: -0.5px; }
.hero-heroTitleAccent { color: var(--red-light); }
.hero-heroCtas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-heroPrimary, .hero-heroSecondary {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; transition: all 0.4s ease;
}
.hero-heroPrimary { background: var(--red); color: #fff; padding: 16px 34px; }
.hero-heroPrimary:hover { background: var(--red-dark); color: #fff; }
.hero-heroSecondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); padding: 16px 30px; }
.hero-heroSecondary:hover { border-color: #fff; background: rgba(255,255,255,0.06); color: #fff; }
.hero-credRail {
  min-width: 240px; border-left: 1px solid rgba(255,255,255,0.14); padding-left: 28px;
  display: flex; flex-direction: column; gap: 22px; margin-top: 8px;
}
.hero-credLabel { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.hero-credValue { font-size: 15.5px; font-weight: 600; color: #fff; }
.hero-sectionHead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-sectionHeadCopy { max-width: 640px; }
.hero-services { background: var(--sand); padding: 84px 0; }
.hero-servicesGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand-border); border: 1px solid var(--sand-border); }
.hero-serviceCard { display: flex; flex-direction: column; background: #fff; min-height: 100%; transition: background 0.4s ease; position: relative; overflow: hidden; }
.hero-serviceCard:hover { background: #fcfbf8; }
.hero-servicePhoto { position: relative; width: 100%; height: 168px; flex-shrink: 0; background: var(--sand-dark); overflow: hidden; }
.hero-servicePhoto > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.hero-serviceCard:hover .hero-servicePhoto > img { transform: scale(1.05); }
.hero-serviceCardTop { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; padding: 28px 28px 0; }
.hero-serviceIcon { color: var(--navy); display: inline-flex; }
.hero-serviceNum { font-size: 13px; font-weight: 600; color: rgba(12,27,42,0.28); letter-spacing: 0.06em; }
.hero-serviceTitle { font-size: 17.5px; font-weight: 600; color: var(--navy); margin: 0 0 9px; padding: 0 28px; }
.hero-serviceDesc { font-size: 13.5px; color: rgba(12,27,42,0.6); line-height: 1.75; margin: 0 0 18px; padding: 0 28px; flex: 1; }
.hero-serviceLink { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 0 28px 32px; }
.hero-why { background: #fff; padding: 84px 0; }
.hero-whyGrid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
.hero-whyTitle { font-size: 33px; font-weight: 600; color: var(--navy); margin: 0 0 16px; line-height: 1.22; }
.hero-whyText { font-size: 15px; color: rgba(12,27,42,0.62); line-height: 1.75; margin: 0 0 28px; }
.hero-creds { border: 1px solid var(--line); border-radius: 4px; margin-bottom: 28px; }
.hero-credRow, .hero-credRowLast { display: flex; align-items: center; gap: 14px; padding: 15px 20px; }
.hero-credRow { border-bottom: 1px solid var(--line); }
.hero-credRowTitle { font-size: 14px; font-weight: 600; color: var(--navy); }
.hero-credRowSub { font-size: 12.5px; color: rgba(12,27,42,0.55); }
.hero-reasonsGrid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 36px; align-content: start; }
.hero-reason { border-top: 1px solid var(--line); padding: 22px 0 24px; }
.hero-reasonNum { font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.08em; margin-bottom: 9px; }
.hero-reasonTitle { font-size: 15.5px; font-weight: 600; color: var(--navy); margin: 0 0 7px; }
.hero-reasonDesc { font-size: 13px; color: rgba(12,27,42,0.6); line-height: 1.7; margin: 0; }
.hero-trusted { background: #fff; padding: 56px 0; border-bottom: 1px solid var(--line); }
.hero-trustedInner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hero-trustedLabel { font-size: 12px; font-weight: 600; color: rgba(12,27,42,0.5); text-transform: uppercase; letter-spacing: 0.14em; margin: 0; max-width: 200px; line-height: 1.7; }
.hero-trustedList { display: flex; align-items: center; flex-wrap: wrap; flex: 1; }
.hero-trustedItem { font-size: 14px; font-weight: 600; color: rgba(12,27,42,0.65); padding: 6px 26px; border-left: 1px solid var(--line); }
.hero-projects { background: #fff; padding: 84px 0 96px; }
.hero-projectList { display: flex; flex-direction: column; }
.hero-projectRow { display: grid; grid-template-columns: 70px 1.2fr 1.6fr auto; gap: 28px; align-items: center; padding: 26px 8px; border-top: 1px solid var(--line); transition: background 0.35s ease; }
.hero-projectRow:hover { background: #faf9f5; }
.hero-projectNum { font-size: 15px; font-weight: 600; color: rgba(12,27,42,0.3); letter-spacing: 0.04em; }
.hero-projectName { font-size: 17px; font-weight: 600; color: var(--navy); margin: 0 0 5px; line-height: 1.35; }
.hero-projectType { font-size: 12px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-projectDesc { font-size: 13.5px; color: rgba(12,27,42,0.62); line-height: 1.7; margin: 0; }
.hero-projectLoc { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(12,27,42,0.5); white-space: nowrap; }
.hero-projectEnd { border-top: 1px solid var(--line); }

/* =====================================================================
   STATS BAND  (prefix: sb-)
   ===================================================================== */
.sb-band { background: var(--navy); padding: 64px 0; color: #fff; border-top: 3px solid var(--red); }
.sb-grid { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.sb-stat { border-left: 1px solid rgba(255,255,255,0.12); padding: 6px 30px; }
.sb-value { font-size: 44px; font-weight: 700; color: #fff; line-height: 1; }
.sb-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.08em; }

/* =====================================================================
   TRACKING WIDGET  (prefix: tw-)
   ===================================================================== */
.tw-card { margin-top: 56px; background: #fff; border-radius: 6px; padding: 26px 28px; box-shadow: 0 30px 60px rgba(2,8,15,0.5); color: var(--navy); scroll-margin-top: 140px; }
.tw-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.tw-headLeft { display: flex; align-items: center; gap: 13px; }
.tw-headIcon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 4px; background: var(--navy); color: #fff; flex-shrink: 0; }
.tw-headTitle { font-size: 16.5px; font-weight: 600; color: var(--navy); }
.tw-headSub { font-size: 13px; color: rgba(12,27,42,0.55); }
.tw-samples { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tw-samplesLabel { font-size: 12px; color: rgba(12,27,42,0.4); }
.tw-sampleBtn { background: var(--sand); color: var(--navy); border: 1px solid var(--sand-line); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 3px; cursor: pointer; transition: all 0.3s ease; }
.tw-sampleBtn:hover { border-color: var(--red); color: var(--red); }
.tw-inputRow { display: flex; gap: 10px; flex-wrap: wrap; }
.tw-inputWrap { position: relative; flex: 1; min-width: 240px; }
.tw-inputIcon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
.tw-input { width: 100%; padding: 15px 18px 15px 46px; border: 1px solid #d8dbe2; border-radius: 4px; font-size: 15px; color: var(--navy); outline: none; transition: border-color 0.3s ease; }
.tw-input:focus { border-color: var(--navy); }
.tw-trackBtn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--red); color: #fff; border: none; font-size: 13.5px; font-weight: 600; padding: 0 36px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; transition: all 0.4s ease; min-height: 52px; }
.tw-trackBtn:hover { background: var(--red-dark); }
.tw-loading { margin-top: 20px; display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: 14px; font-weight: 500; }
.tw-spinner { width: 18px; height: 18px; border: 2.5px solid #e0d9db; border-top-color: var(--red); border-radius: 50%; display: inline-block; animation: amm-spin 0.7s linear infinite; }
.tw-error { margin-top: 18px; background: var(--red-tint); border: 1px solid #efc4cb; color: var(--red-dark); border-radius: 4px; padding: 14px 18px; font-size: 13.5px; }
.tw-result { margin-top: 22px; border-top: 1px solid #e9e6de; padding-top: 22px; }
.tw-resultHead { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.tw-resultLabel { font-size: 11.5px; color: rgba(12,27,42,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.tw-resultId { font-size: 19px; font-weight: 600; color: var(--navy); }
.tw-statusPill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 3px; }
.tw-statusDot { width: 8px; height: 8px; border-radius: 50%; animation: amm-pulse 1.6s ease-in-out infinite; }
.tw-factGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); border: 1px solid #e9e6de; border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.tw-fact, .tw-factLast { background: #faf9f5; padding: 16px 18px; }
.tw-fact { border-right: 1px solid #e9e6de; }
.tw-factLabel { font-size: 11px; color: rgba(12,27,42,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.tw-factValue { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.tw-factValueRoute { font-size: 14.5px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tw-factSub { font-size: 12.5px; color: rgba(12,27,42,0.55); margin-top: 2px; }
.tw-timelineLabel { font-size: 11.5px; color: rgba(12,27,42,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.tw-timeline { display: flex; flex-direction: column; }
.tw-milestone { display: flex; gap: 16px; }
.tw-milestoneRail { display: flex; flex-direction: column; align-items: center; }
.tw-dot { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border: 2px solid transparent; }
.tw-line { width: 2px; flex: 1; min-height: 22px; }
.tw-milestoneBody { padding-bottom: 20px; }
.tw-milestoneLabel { font-size: 14.5px; font-weight: 600; }
.tw-milestoneMeta { font-size: 12.5px; color: rgba(12,27,42,0.5); }

/* ---------- tracking result MODAL ---------- */
@keyframes tw-modalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes tw-fadeIn { from { opacity: 0; } to { opacity: 1; } }
body.tw-modalOpen { overflow: hidden; }
.tw-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.tw-modal[hidden] { display: none; }
.tw-modalBackdrop { position: absolute; inset: 0; background: rgba(8, 19, 32, 0.62); backdrop-filter: blur(2px); animation: tw-fadeIn 0.2s ease; }
.tw-modalDialog {
  position: relative; z-index: 1; width: 100%; max-width: 640px; max-height: calc(100vh - 48px);
  overflow-y: auto; background: #fff; border-radius: 8px; padding: 30px 30px 34px;
  box-shadow: 0 40px 90px rgba(2, 8, 15, 0.55); animation: tw-modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.tw-modalClose {
  position: absolute; top: 16px; right: 16px; z-index: 2; display: inline-flex; align-items: center;
  justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--sand); color: var(--navy); cursor: pointer; transition: all 0.25s ease;
}
.tw-modalClose:hover { background: var(--red); color: #fff; }
/* Inside the modal the result is the whole content, so drop the inline
   top-border / top-margin the .tw-result carries for the widget layout. */
.tw-modalBody .tw-result { margin-top: 0; border-top: none; padding-top: 0; }
@media (max-width: 640px) {
  .tw-modal { padding: 14px; }
  .tw-modalDialog { padding: 24px 20px 26px; max-height: calc(100vh - 28px); }
}

/* =====================================================================
   ABOUT  (prefix: ab-)
   ===================================================================== */
.ab-about { background: #fff; padding: 88px 0; }
.ab-aboutGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ab-title { font-size: 32px; font-weight: 600; color: var(--navy); margin: 0 0 18px; line-height: 1.22; }
.ab-text, .ab-textLast { font-size: 15px; color: rgba(0,0,0,0.65); line-height: 1.85; margin: 0 0 16px; }
.ab-textLast { margin-bottom: 26px; }
.ab-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.ab-btnRed, .ab-btnGhost { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; padding: 15px 30px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.02em; transition: all 0.4s ease; }
.ab-btnRed { background: var(--red); color: #fff; box-shadow: 0 13px 27px rgba(200,16,46,0.22); }
.ab-btnRed:hover { background: var(--navy); color: #fff; transform: translateY(-4px); }
.ab-btnGhost { color: var(--red); border: 1px solid var(--sand-dark); }
.ab-btnGhost:hover { border-color: var(--red); background: var(--red); color: #fff; }
.ab-aboutRight { display: flex; flex-direction: column; gap: 18px; }
.ab-aboutPhoto { position: relative; width: 100%; height: 260px; border-radius: 6px; overflow: hidden; background: var(--sand-dark); box-shadow: 0 2px 40px rgba(12,27,42,0.1); }
.ab-aboutPhoto > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ab-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ab-fact { background: var(--sand); border-radius: 6px; padding: 28px 22px; }
.ab-factValue { font-size: 38px; font-weight: 700; color: var(--red); line-height: 1; }
.ab-factLabel { font-size: 13.5px; color: rgba(0,0,0,0.6); margin-top: 8px; }
.ab-ceo { background: var(--sand); padding: 88px 0; scroll-margin-top: 140px; }
.ab-ceoInner { max-width: 1000px; margin: 0 auto; padding: 0 24px; text-align: center; }
.ab-quoteMark { margin-bottom: 8px; }
.ab-quote { font-size: 22px; font-weight: 500; color: var(--navy); line-height: 1.6; margin: 0 0 26px; }
.ab-ceoName { font-size: 16px; font-weight: 600; color: var(--red); }
.ab-ceoOrg { font-size: 13.5px; color: rgba(0,0,0,0.55); margin-top: 2px; }
.ab-mission { background: #fff; padding: 88px 0; scroll-margin-top: 140px; }
.ab-missionHead { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.ab-missionTitle { font-size: 32px; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.2; }
.ab-missionGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ab-missionCard { background: #fff; border: 1px solid var(--sand-dark); border-radius: 6px; padding: 38px 32px; box-shadow: 0 0 10px rgba(12,27,42,0.06); }
.ab-missionIconRed, .ab-missionIconBlue { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; margin-bottom: 22px; }
.ab-missionIconRed { background: var(--sand-dark); color: var(--red); }
.ab-missionIconBlue { background: var(--steel); color: var(--navy-mid); }
.ab-missionCardTitle { font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.ab-missionCardText { font-size: 14.5px; color: rgba(0,0,0,0.65); line-height: 1.85; margin: 0; }

/* =====================================================================
   SERVICES  (prefix: svc-)
   ===================================================================== */
.svc-jump { background: #fff; border-bottom: 1px solid #eef0f6; }
.svc-jumpInner { max-width: 1140px; margin: 0 auto; padding: 18px 24px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.svc-jumpLink { font-size: 13px; font-weight: 500; color: #3a3f57; background: var(--sand); border: 1px solid var(--sand-line); padding: 9px 16px; border-radius: 3px; transition: all 0.3s ease; }
.svc-jumpLink:hover { background: var(--red); color: #fff; border-color: var(--red); }
.svc-svc { padding: 80px 0; scroll-margin-top: 140px; }
.svc-svcWhite { background: #fff; }
.svc-svcSand { background: var(--sand); }
.svc-rowIconFirst { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
.svc-rowCopyFirst { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 52px; align-items: center; }
.svc-photoPanel { position: relative; border-radius: 6px; overflow: hidden; min-height: 340px; background: var(--sand-dark); box-shadow: 0 2px 40px rgba(12,27,42,0.1); }
.svc-photoPanel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; }
.svc-photoPanel:hover > img { transform: scale(1.04); }
.svc-iconBadge { position: absolute; left: 20px; bottom: 20px; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 16px; box-shadow: 0 10px 24px rgba(8,19,32,0.28); }
.svc-iconSand { background: #fff; color: var(--red); }
.svc-iconRedTint { background: var(--red); color: #fff; }
.svc-iconSteel { background: #fff; color: var(--navy-mid); }
.svc-iconNavyTint { background: var(--navy); color: #fff; }
.svc-title { font-size: 30px; font-weight: 600; color: var(--navy); margin: 0 0 14px; }
.svc-body { font-size: 15px; color: rgba(0,0,0,0.65); line-height: 1.85; margin: 0 0 20px; }
.svc-pointsGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-pointsList { display: flex; flex-direction: column; gap: 12px; }
.svc-point { display: flex; gap: 10px; font-size: 13.5px; color: #3a3f57; }
.svc-check { flex-shrink: 0; margin-top: 2px; }
.svc-consult { background: #fff; padding: 20px 0 90px; }
.svc-consultCard { background: radial-gradient(700px 300px at 15% 0%, #16324f 0%, #0c1b2a 70%); border-radius: 22px; padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.svc-consultCopy { max-width: 640px; }
.svc-consultTitle { font-size: 28px; font-weight: 600; color: #fff; margin: 0 0 10px; line-height: 1.25; }
.svc-consultText { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.7; margin: 0; }

/* =====================================================================
   PROJECTS  (prefix: pr-)
   ===================================================================== */
.pr-list { background: #fff; padding: 88px 0; }
.pr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pr-card { background: #fff; border: 1px solid var(--sand-dark); border-radius: 6px; overflow: hidden; box-shadow: 0 0 10px rgba(12,27,42,0.06); transition: all 0.5s ease; }
.pr-card:hover { transform: translateY(-8px); box-shadow: 0 2px 48px rgba(0,0,0,0.08); }
.pr-band { padding: 30px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pr-bandType { display: inline-block; font-size: 12px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.18); padding: 6px 14px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.pr-bandMetric { color: rgba(255,255,255,0.9); font-weight: 600; }
.pr-cardBody { padding: 30px 32px; }
.pr-cardTitle { font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 10px; line-height: 1.3; }
.pr-cardDesc { font-size: 14px; color: rgba(0,0,0,0.62); line-height: 1.75; margin: 0 0 22px; }
.pr-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid #f0f1f6; padding-top: 20px; }
.pr-metaWide { grid-column: 1 / -1; }
.pr-metaLabel { font-size: 11.5px; color: rgba(0,0,0,0.45); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.pr-metaValue { font-size: 14px; font-weight: 600; color: var(--navy); }
.pr-cta { background: var(--sand); padding: 0 0 90px; }
.pr-ctaCard { background: var(--red); border-radius: 22px; padding: 52px; text-align: center; }
.pr-ctaTitle { font-size: 28px; font-weight: 600; color: #fff; margin: 0 0 10px; }
.pr-ctaText { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0 auto 26px; max-width: 560px; }

/* =====================================================================
   FAQ  (prefix: fq-)
   ===================================================================== */
.fq-list { background: #fff; padding: 80px 0; }
.fq-listInner { max-width: 840px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 14px; }
.fq-item { border: 1px solid var(--sand-line); border-radius: 6px; overflow: hidden; background: #fff; transition: all 0.4s ease; }
.fq-itemOpen { background: var(--sand); }
.fq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; }
.fq-questionText { font-size: 16px; font-weight: 600; color: var(--navy); }
.fq-chevron { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--red-tint); color: var(--red-dark); transition: all 0.3s ease; transform: rotate(0deg); }
.fq-chevronOpen { background: var(--red); color: #fff; transform: rotate(180deg); }
.fq-answerWrap { padding: 0 26px 24px; }
.fq-answer { font-size: 14.5px; color: rgba(0,0,0,0.65); line-height: 1.85; margin: 0; }
.fq-cta { background: var(--sand); padding: 0 0 90px; }
.fq-ctaWrap { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.fq-ctaCard { background: radial-gradient(700px 300px at 20% 0%, #16324f 0%, #0c1b2a 70%); border-radius: 22px; padding: 48px; text-align: center; }
.fq-ctaTitle { font-size: 26px; font-weight: 600; color: #fff; margin: 0 0 10px; }
.fq-ctaText { font-size: 15px; color: rgba(255,255,255,0.78); margin: 0 auto 24px; max-width: 480px; line-height: 1.7; }
.fq-ctaButtons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fq-ctaGhost { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); font-size: 14px; font-weight: 600; padding: 15px 30px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.02em; transition: all 0.4s ease; }
.fq-ctaGhost:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* =====================================================================
   CONTACT  (prefix: ct-)
   ===================================================================== */
.ct-main { background: #fff; padding: 80px 0; }
.ct-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 44px; align-items: start; }
.ct-formCard { background: var(--sand); border-radius: 6px; padding: 40px; }
.ct-formTitle { font-size: 24px; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.ct-formSub { font-size: 14px; color: rgba(0,0,0,0.6); margin: 0 0 26px; }
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-textarea { resize: vertical; }
.ct-submit { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; background: var(--red); color: #fff; border: none; font-size: 14px; font-weight: 600; padding: 15px 36px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.02em; cursor: pointer; box-shadow: 0 13px 27px rgba(200,16,46,0.22); transition: all 0.4s ease; }
.ct-submit:hover { background: var(--navy); transform: translateY(-4px); }
.ct-success { display: flex; align-items: center; gap: 14px; background: #e6f8ee; border: 1px solid #b8ecc9; border-radius: 4px; padding: 20px 22px; }
.ct-successIcon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #1a9e5c; color: #fff; }
.ct-successTitle { font-size: 16px; font-weight: 600; color: var(--navy); }
.ct-successText { font-size: 13.5px; color: rgba(0,0,0,0.6); }
.ct-details { display: flex; flex-direction: column; gap: 16px; }
.ct-detailCard { background: #fff; border: 1px solid var(--sand-dark); border-radius: 6px; padding: 24px; display: flex; gap: 16px; }
.ct-iconSand, .ct-iconRed, .ct-iconSteel, .ct-iconWhatsapp { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 4px; }
.ct-iconSand { background: var(--sand-dark); color: var(--red); }
.ct-iconRed { background: rgba(200,16,46,0.1); color: var(--red); }
.ct-iconSteel { background: var(--steel); color: var(--navy-mid); }
.ct-iconWhatsapp { background: var(--whatsapp); color: #fff; }
.ct-detailTitle { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.ct-detailText { font-size: 13.5px; color: rgba(0,0,0,0.62); line-height: 1.7; }
.ct-whatsappCard { background: var(--navy); border-radius: 6px; padding: 24px; display: flex; align-items: center; gap: 16px; transition: transform 0.4s ease; }
.ct-whatsappCard:hover { transform: translateY(-4px); }
.ct-whatsappTitle { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.ct-whatsappNum { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.ct-mapSection { background: var(--sand); padding: 0 0 88px; }
.ct-mapFrame { border-radius: 6px; overflow: hidden; box-shadow: 0 2px 48px rgba(0,0,0,0.08); line-height: 0; }
.ct-map { width: 100%; height: 420px; border: 0; }

/* =====================================================================
   FOOTER  (prefix: ft-)
   ===================================================================== */
.ft-ctaBand { background: var(--red); }
.ft-ctaInner { max-width: 1140px; margin: 0 auto; padding: 52px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ft-ctaCopy { max-width: 640px; }
.ft-ctaTitle { color: #fff; font-size: 29px; font-weight: 600; line-height: 1.25; margin: 0 0 10px; }
.ft-ctaText { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; margin: 0; }
.ft-ctaButtons { display: flex; gap: 14px; flex-wrap: wrap; }
.ft-ctaCall, .ft-ctaMeet { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; padding: 15px 28px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.4s ease; }
.ft-ctaCall { background: #fff; color: var(--red); }
.ft-ctaCall:hover { background: var(--navy); color: #fff; }
.ft-ctaMeet { background: var(--navy); color: #fff; }
.ft-ctaMeet:hover { background: var(--navy-deep); color: #fff; }
.ft-footer { background: var(--navy); color: rgba(255,255,255,0.72); }
.ft-grid { max-width: 1140px; margin: 0 auto; padding: 66px 24px 34px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 44px; }
.ft-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ft-brandMark { width: 52px; height: 52px; flex-shrink: 0; object-fit: contain; }
.ft-brandText { display: flex; flex-direction: column; line-height: 1.25; }
.ft-brandName { font-size: 15px; font-weight: 700; letter-spacing: 0.01em; color: #fff; }
.ft-brandTag { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.ft-blurb { color: rgba(255,255,255,0.64); font-size: 14px; line-height: 1.85; margin: 0 0 20px; }
.ft-socials { display: flex; gap: 12px; }
.ft-socialLinkedin, .ft-socialWhatsapp { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 4px; background: rgba(255,255,255,0.08); color: #fff; transition: all 0.4s ease; }
.ft-socialLinkedin:hover { background: var(--red); color: #fff; }
.ft-socialWhatsapp:hover { background: var(--whatsapp); color: #fff; }
.ft-colTitle { color: #fff; font-size: 15px; font-weight: 600; margin: 0 0 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.ft-colLinks { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.ft-colLink { color: rgba(255,255,255,0.72); }
.ft-colLink:hover { color: var(--red-light); }
.ft-contactList { display: flex; flex-direction: column; gap: 14px; font-size: 14px; line-height: 1.6; }
.ft-contactRow, .ft-contactLink { display: flex; gap: 11px; color: rgba(255,255,255,0.72); }
.ft-contactLink:hover { color: var(--red-light); }
.ft-contactIcon { flex-shrink: 0; margin-top: 2px; }
.ft-contactText { color: rgba(255,255,255,0.72); }
.ft-branchRow { display: flex; gap: 20px; margin-top: 2px; color: rgba(255,255,255,0.55); font-size: 13px; }
.ft-membershipWrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.ft-memberships { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ft-membership { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.78); border: 1px solid rgba(255,255,255,0.14); padding: 7px 15px; border-radius: 3px; }
.ft-bottomBar { border-top: 1px solid rgba(255,255,255,0.1); }
.ft-bottomInner { max-width: 1140px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); }
.ft-floatWhatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,0.45); transition: transform 0.35s ease; }
.ft-floatWhatsapp:hover { transform: scale(1.08); color: #fff; }

/* =====================================================================
   RESPONSIVE  (merged from all module breakpoints)
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-heroCopy { max-width: 560px; }
  .hero-heroTitle { font-size: 38px; margin-bottom: 120px; }
  .hero-credRail { min-width: 200px; }
}
@media (max-width: 992px) {
  .hero-whyGrid,
  .ab-aboutGrid,
  .ab-missionGrid,
  .pr-grid,
  .svc-rowIconFirst,
  .svc-rowCopyFirst,
  .ct-grid,
  .ft-grid { grid-template-columns: 1fr !important; }
  .svc-rowCopyFirst > *:first-child { order: 2; }
  .hero-servicesGrid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: inline-flex; }
}
@media (max-width: 768px) {
  .hero-servicesGrid, .hero-reasonsGrid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .hero-projectRow { grid-template-columns: 1fr !important; gap: 10px !important; }
  .hero-heroTitle { font-size: 34px; margin-bottom: 40px; }
  .hero-credRail { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; }
  .ab-title, .ab-missionTitle { font-size: 26px; }
  .ab-quote { font-size: 18px; }
  .svc-title { font-size: 24px; }
  .svc-pointsGrid { grid-template-columns: 1fr; }
  .svc-photoPanel { min-height: 220px; }
  .svc-consultCard { padding: 34px; }
  .svc-consultTitle { font-size: 23px; }
  .pr-ctaCard, .fq-ctaCard { padding: 34px; }
  .pr-ctaTitle { font-size: 23px; }
  .fq-ctaCard { padding: 32px 24px; }
  .fq-ctaTitle { font-size: 22px; }
  .ct-formCard { padding: 26px; }
  .ct-formRow { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ft-grid { grid-template-columns: 1fr; gap: 34px; }
}
