/* ==========================================================================
   WMS Global — Stylesheet
   Design language: "working drawing" — blueprint annotation motifs applied
   to a premium construction/architecture brand. Corner brackets, dimension
   rules, coordinate labels borrowed from technical drawings.
   ========================================================================== */

:root {
  /* Color tokens — drawn from the WMS Global mark */
  --navy: #0B1424;
  --navy-2: #101D33;
  --blue: #1C63A8;
  --blue-bright: #2B7FD1;
  --steel: #59677B;
  --steel-light: #8B96A6;
  --line: #D7DCE3;
  --paper: #F4F6F9;
  --white: #FFFFFF;
  --ink: #101826;
  --gold: #B4894B;

  --display-font: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono-font: 'IBM Plex Mono', 'Courier New', monospace;

  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  color: var(--navy);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}
.section-head p {
  color: var(--steel);
  font-size: 17px;
  margin: 0;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { position: relative; }
.pad { padding: 100px 0; }
@media (max-width: 768px) { .pad { padding: 64px 0; } }

/* Blueprint corner-bracket motif — the page's signature element */
.blueprint-frame {
  position: relative;
}
.blueprint-frame::before,
.blueprint-frame::after,
.blueprint-frame .bp-tr,
.blueprint-frame .bp-br {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--blue-bright);
  opacity: .8;
}
.blueprint-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.blueprint-frame::after { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.blueprint-frame .bp-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.blueprint-frame .bp-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.dim-label {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--steel-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--line); color: var(--navy); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #C79A5B; transform: translateY(-2px); }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(11,20,36,0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .3s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(11,20,36,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 40px; width: auto;
  background: var(--white);
  padding: 7px 16px;
  border-radius: 3px;
}

.main-nav ul { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.86);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--blue-bright);
  transition: width .25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn { padding: 11px 20px; font-size: 13.5px; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 30px; height: 22px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,84vw);
    background: var(--navy); padding: 100px 32px 32px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.35); }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .header-actions .btn-outline { display: none; }
  .nav-toggle { display: block; }
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 180px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,20,36,.55) 0%, rgba(11,20,36,.86) 62%, var(--navy) 100%),
    url('../assets/images/commercial-construction.jpg') center 30%/cover no-repeat;
  z-index: -2;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: -1;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}
.hero-content { max-width: 760px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.2vw, 64px);
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
}
.hero-tags span {
  font-family: var(--mono-font);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.hero-tags span:last-child { border-right: none; }

/* ===================== About ===================== */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.about-figure { position: relative; padding: 4px; }
.about-figure img { width: 100%; height: 460px; object-fit: cover; }
.about-figure .dim-label { position: absolute; bottom: -26px; left: 4px; }
.about-copy p { color: var(--steel); font-size: 16.5px; margin-bottom: 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 36px;
  border: 1px solid var(--line);
}
.about-stats div { background: var(--white); padding: 22px 20px; }
.about-stats strong { display: block; font-family: var(--display-font); font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.about-stats span { font-size: 13.5px; color: var(--steel); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure img { height: 320px; }
}

/* ===================== Services ===================== */
.services-section { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--white);
  padding: 34px 30px;
  position: relative;
  transition: background .25s var(--ease);
}
.service-card:hover { background: #FBFCFE; }
.service-card .num {
  font-family: var(--mono-font);
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 18px;
  display: block;
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--steel); margin: 0; }
.services-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--steel-light);
  font-family: var(--mono-font);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

/* ===================== Sectors ===================== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sector-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
}
.sector-card h3 {
  font-size: 19px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.sector-card ul li {
  font-size: 14.5px;
  color: var(--steel);
  padding: 6px 0;
  position: relative;
  padding-left: 16px;
}
.sector-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 1px;
  background: var(--blue);
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: 1fr; } }

/* ===================== Projects Gallery ===================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--mono-font);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.project-card {
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.project-card:hover { box-shadow: 0 20px 40px -20px rgba(16,24,38,.25); transform: translateY(-4px); }
.project-media { position: relative; height: 240px; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-status {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono-font);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(11,20,36,.82);
  color: var(--white);
  padding: 5px 10px;
}
.project-body { padding: 22px 24px 26px; }
.project-body .cat { font-family: var(--mono-font); font-size: 11px; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; }
.project-body h3 { font-size: 19px; margin: 8px 0 6px; }
.project-loc { font-size: 13px; color: var(--steel-light); margin-bottom: 12px; }
.project-body p { font-size: 14px; color: var(--steel); margin: 0 0 14px; }
.project-scope { font-size: 12.5px; color: var(--steel-light); border-top: 1px solid var(--line); padding-top: 12px; }
.project-scope strong { color: var(--navy); font-weight: 600; }

/* ===================== Charity ===================== */
.charity-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.charity-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
}
.charity-section .section-head h2 { color: var(--white); }
.charity-section .section-head p { color: rgba(255,255,255,.7); }
.charity-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.charity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.charity-list div { background: var(--navy-2); padding: 20px 20px; font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 10px; }
.charity-list div::before { content: ''; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; }
.charity-note { margin-top: 26px; font-size: 13.5px; color: rgba(255,255,255,.55); font-family: var(--mono-font); }
.charity-figure { position: relative; }
.charity-figure img { width: 100%; height: 480px; object-fit: cover; }
@media (max-width: 900px) {
  .charity-grid { grid-template-columns: 1fr; gap: 36px; }
  .charity-list { grid-template-columns: 1fr; }
  .charity-figure img { height: 320px; }
}

/* ===================== Process ===================== */
.process-list { border-top: 1px solid var(--line); }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.process-item .step-no { font-family: var(--mono-font); color: var(--blue); font-size: 14px; }
.process-item h3 { font-size: 19px; margin: 0 0 4px; }
.process-item p { margin: 0; color: var(--steel); font-size: 14.5px; }
@media (max-width: 700px) { .process-item { grid-template-columns: 50px 1fr; } }

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-grid div { border-top: 2px solid var(--blue); padding-top: 14px; }
.why-grid p { font-size: 14px; color: var(--steel); margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }

/* ===================== Clients — auto-scrolling marquee ===================== */
.clients-section { background: var(--paper); }
.client-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.client-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: client-scroll 34s linear infinite;
}
.client-marquee:hover .client-track { animation-play-state: paused; }
.client-tile {
  background: var(--white);
  flex: 0 0 auto;
  width: 230px;
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
  filter: grayscale(1) contrast(1.02);
  opacity: .8;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.client-tile:hover { filter: grayscale(0); opacity: 1; }
.client-tile img { max-height: 60px; max-width: 100%; width: auto; object-fit: contain; }
.clients-note { margin-top: 24px; font-size: 12.5px; color: var(--steel-light); max-width: 640px; }

@keyframes client-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-track { animation: none; overflow-x: auto; }
}

/* ===================== Regions ===================== */
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.region-card { background: var(--white); padding: 36px 30px; }
.region-card .dim-label { display: block; margin-bottom: 16px; }
.region-card h3 { font-size: 20px; }
.region-card p { color: var(--steel); font-size: 14.5px; margin: 0; }
@media (max-width: 900px) { .region-grid { grid-template-columns: 1fr; } }

/* ===================== Leadership ===================== */
.leader-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.leader-photo {
  aspect-ratio: 4/5;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light);
  font-family: var(--mono-font);
  font-size: 12.5px;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-copy .field-value.quote { font-style: italic; color: var(--navy); }
.leader-copy .name { font-family: var(--display-font); font-size: 26px; color: var(--navy); margin-bottom: 2px; }
.leader-copy .role { font-family: var(--mono-font); font-size: 13px; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.leader-copy .field { margin-bottom: 16px; }
.leader-copy .field-label { font-family: var(--mono-font); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--steel-light); margin-bottom: 4px; }
.leader-copy .field-value { color: var(--steel); font-size: 15px; }
@media (max-width: 850px) { .leader-grid { grid-template-columns: 1fr; } .leader-photo { max-width: 260px; } }

/* ===================== FAQ ===================== */
.faq-list { border-top: 1px solid var(--line); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none; border: none;
  text-align: left;
  font-family: var(--display-font);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--navy);
}
.faq-q .plus { font-family: var(--mono-font); font-size: 18px; color: var(--blue); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { color: var(--steel); font-size: 15px; padding: 0 0 22px; margin: 0; max-width: 700px; }

/* ===================== Contact ===================== */
.contact-section { background: var(--navy); color: var(--white); }
.contact-section .section-head h2 { color: var(--white); }
.contact-section .section-head p { color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info-block { margin-bottom: 30px; }
.contact-info-block .dim-label { color: rgba(255,255,255,.5); display: block; margin-bottom: 8px; }
.contact-info-block div, .contact-info-block a { color: rgba(255,255,255,.85); font-size: 15px; }
.contact-info-block address { font-style: normal; color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12.5px; font-family: var(--mono-font); text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--body-font);
  font-size: 14.5px;
  border-radius: var(--radius);
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-bright); }
.field select option { color: #000; }
.field textarea { resize: vertical; min-height: 110px; }
.field-file { border: 1px dashed rgba(255,255,255,.28); padding: 16px; font-size: 13px; color: rgba(255,255,255,.6); }
.field-file input { background: none; border: none; padding: 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.68); }
.consent input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.form-msg { margin-top: 18px; font-size: 14px; padding: 12px 16px; display: none; border-radius: var(--radius); }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(43,127,209,.15); border: 1px solid rgba(43,127,209,.4); color: #BFDCF6; }
.form-msg.error { background: rgba(200,60,60,.15); border: 1px solid rgba(200,60,60,.4); color: #F3C6C6; }
.submit-row { margin-top: 24px; display: flex; align-items: center; gap: 18px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ===================== Footer ===================== */
footer.site-footer { background: var(--navy-2); color: rgba(255,255,255,.65); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img {
  height: 34px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; max-width: 280px; color: rgba(255,255,255,.55); }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--mono-font); margin-bottom: 18px; font-weight: 500; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== WhatsApp Float ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  z-index: 400;
  transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ===================== Mobile trims ===================== */
/* On small screens the full 10-step process list makes the page very long;
   show a condensed summary instead and keep the detailed list for desktop/tablet. */
@media (max-width: 640px) {
  .process-list { display: none; }
  .process-mobile-note { display: block; }
}
.process-mobile-note {
  display: none;
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--steel);
  margin-bottom: 8px;
}
.process-mobile-note strong { color: var(--navy); }

@media (max-width: 640px) {
  .hero { padding: 150px 0 70px; }
  .hero-tags span { margin-right: 12px; padding-right: 12px; font-size: 11.5px; }
  .about-stats { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .client-tile { width: 170px; height: 100px; padding: 18px 20px; }
}
