/* ============================================================
   FINAL PHASE COMMERCIAL SOLUTIONS
   style.css — Complete Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --red:        #C0392B;
  --red-dark:   #9B2622;
  --red-deep:   #7B1C1C;
  --black:      #1A1A1A;
  --gray-dark:  #2E2E2E;
  --gray-mid:   #555555;
  --gray-light: #F5F5F5;
  --gray-line:  #E0E0E0;
  --white:      #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w:  1200px;
  --radius: 3px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

  --nav-h: 122px;
  --section-pad: 96px;
  --section-pad-sm: 64px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.text-red    { color: var(--red); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,57,43,0.30);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.60);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--black);
  z-index: 1000;
  border-bottom: 2px solid var(--red);
  display: flex;
  flex-direction: column;
}
.nav__topbar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px;
  gap: 16px;
  flex-shrink: 0;
}
.nav__topbar-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav__topbar-link:hover { color: var(--white); }
.nav__topbar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
  padding: 0 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 78px;
  width: auto;
  max-width: 100%;
  display: block;
}
.nav__logo-img--footer {
  height: 64px;
}
.nav__contact {
  display: none;
}
.nav__contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nav__contact-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}
.nav__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.nav__mobile-contact-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 600;
}
.nav__mobile-contact-link:hover { color: var(--white); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
}
.nav__link.active {
  color: var(--red);
}
.nav__cta {
  margin-left: 12px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.nav__toggle:focus-visible { outline: 3px solid var(--red); }
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  padding: 16px 24px 24px;
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}
.nav__mobile-link:hover { color: var(--white); }
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ── Section Base ──────────────────────────────────────────── */
section { padding: var(--section-pad) 0; }
.section--gray  { background: var(--gray-light); }
.section--dark  { background: var(--black); }
.section--red   { background: var(--red); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--white { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--black);
}
.section-title--white { color: var(--white); }
.section-title--lg { font-size: clamp(2.4rem, 5vw, 3.4rem); }

.section-body {
  font-size: 1.0625rem;
  color: var(--gray-mid);
  max-width: 640px;
  margin-top: 16px;
  line-height: 1.7;
}
.section-body--white { color: rgba(255,255,255,0.72); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-body { margin-left: auto; margin-right: auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-top: 20px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--white  { background: rgba(255,255,255,0.4); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(192,57,43,0.10) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(26,26,26,0.50) 0%, rgba(26,26,26,0.92) 100%);
  z-index: 1;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('img-hero-warehouse.avif');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
}
.hero__body {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero__badge-item::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}
.hero__badge-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
  margin: 0 8px;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--red);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.25);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item svg { flex-shrink: 0; opacity: 0.85; }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-top: 3px solid var(--red);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 10px;
}
.service-card__body {
  font-size: 0.9375rem;
  color: var(--gray-mid);
  line-height: 1.65;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.15s;
}
.service-card__link:hover { gap: 10px; }
.service-card__link:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ── Split Section ─────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.split__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.split__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.split__accent {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 16px;
}
.split__points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split__point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.split__point-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-top: 2px;
}
.split__point-text {
  font-size: 0.9375rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── Clients / Who We Serve ────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.client-item {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.15s;
}
.client-item:hover { background: rgba(192,57,43,0.04); }
.client-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
}
.client-item__body {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.client-item__icon {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--red);
}

/* ── Process ───────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--gray-line);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.process-step:hover .process-step__num {
  background: var(--red);
  color: var(--white);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
}
.process-step__body {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.cta-band__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.65;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band__trust {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #111111;
  padding: 64px 0 0;
  border-top: 3px solid var(--red);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer__link:hover { color: var(--white); }
.footer__link:focus-visible { outline: 1px solid var(--red); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer__contact-text a { color: rgba(255,255,255,0.75); }
.footer__contact-text a:hover { color: var(--white); }
.footer__service-area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
  line-height: 1.7;
  margin-top: 10px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.15s;
}
.footer__bottom-link:hover { color: rgba(255,255,255,0.55); }

/* ── Page Hero (interior pages) ────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.05;
  max-width: 760px;
}
.page-hero__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── Services Detail Page ──────────────────────────────────── */
.service-detail {
  padding: var(--section-pad) 0;
}
.service-detail + .service-detail {
  padding-top: 0;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-line);
}
.service-block:last-child { border-bottom: none; }
.service-block--flip { direction: rtl; }
.service-block--flip > * { direction: ltr; }
.service-block__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.service-block__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.service-block__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.service-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.1;
}
.service-block__body {
  font-size: 0.9375rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-block__includes {
  margin-top: 24px;
}
.service-block__includes-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.service-block__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.5;
}
.service-block__list-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
}
.service-block__who {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--gray-light);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.service-block__who-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.service-block__who-text {
  font-size: 0.875rem;
  color: var(--gray-mid);
}

/* ── Industries ────────────────────────────────────────────── */
.industry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.industry-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-line);
}
.industry-item:first-child { border-top: 1px solid var(--gray-line); }
.industry-item__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(192,57,43,0.15);
  line-height: 1;
  padding-top: 4px;
}
.industry-item__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 10px;
}
.industry-item__body {
  font-size: 0.9375rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 680px;
}

/* ── About Page ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.about-stat {
  background: var(--white);
  padding: 24px 20px;
}
.about-stat__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.about-stat__label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 4px;
  line-height: 1.4;
}
.differentiator-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.differentiator-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.differentiator-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}
.differentiator-item__title {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.differentiator-item__body {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── Quote Form ────────────────────────────────────────────── */
.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-label span { color: var(--red); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #AAAAAA; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; margin-top: 28px; justify-content: center; }
.form-note {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.form-required-note {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.form-required-note span { color: var(--red); }
.quote-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.quote-aside__card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 24px;
}
.quote-aside__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.quote-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.quote-aside__item strong { color: var(--white); display: block; }
.quote-aside__icon { color: var(--red); flex-shrink: 0; margin-top: 1px; }
.quote-aside__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
}
.quote-aside__phone a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  animation: fadeUp 0.6s ease both;
}
.anim-delay-1 { animation-delay: 0.10s; }
.anim-delay-2 { animation-delay: 0.20s; }
.anim-delay-3 { animation-delay: 0.30s; }
.anim-delay-4 { animation-delay: 0.40s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav__contact { display: none; }
  .nav__links { display: none; }
  .nav__topbar { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-steps::before { display: none; }
  .split { gap: 48px; }
  .service-block { gap: 48px; }
  .about-grid { gap: 48px; }
  .quote-layout { gap: 48px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-h: 80px;
  }
  .container { padding: 0 18px; }
  .nav__inner { gap: 12px; padding: 0 16px; }
  .nav__logo { max-width: calc(100% - 56px); }
  .nav__logo-img { height: 52px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 52px; }
  .hero { min-height: auto; padding-bottom: 56px; }
  .split,
  .service-block,
  .about-grid,
  .quote-layout { grid-template-columns: 1fr; }
  .split--reverse,
  .service-block--flip { direction: ltr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-bar__inner { flex-direction: column; gap: 0; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; justify-content: center; }
  .trust-bar__item:last-child { border-bottom: none; }
  .hero__badge { flex-wrap: wrap; gap: 12px; }
  .hero__badge-sep { display: none; }
  .form-card { padding: 28px 20px; }
  .about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav__logo-img { height: 42px; }
  .nav__mobile { padding: 14px 16px 20px; }
  .page-hero__body, .hero__body { font-size: 0.96rem; }
  .clients-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { flex-direction: column; }
}

/* ── Photo Gallery Grid ─────────────────────────────────────── */
.photo-gallery-section { padding: 80px 0; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.photo-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
}
.photo-grid__item--tall {
  grid-row: span 2;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.88;
}
.photo-grid__item:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.photo-grid__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 24px 16px 14px;
}
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-grid__item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* ── Hero red subtitle line ─────────────────────────────────── */
.hero__title-red {
  color: var(--red);
  font-style: italic;
}

/* ── Industry item photo ─────────────────────────────────────── */
.industry-item__content {
  display: flex;
  flex-direction: column;
}
.industry-item__img {
  margin: 0 0 24px;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}
.industry-item__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.industry-item:hover .industry-item__img img {
  transform: scale(1.02);
}

/* ── About page: Meet the Team ──────────────────────────────── */
.meet-team-section {
  padding: 72px 0;
  background: var(--white);
}
.team-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.team-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__photo-placeholder {
  color: var(--gray-mid);
  font-size: 0.8rem;
  text-align: center;
  padding: 12px;
  line-height: 1.5;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
}
.team-card__role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Team full-width photo ───────────────────────────────────── */
.team-photo-full {
  margin-top: 40px;
  border-radius: 4px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border: 3px solid var(--red);
}
.team-photo-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  margin-bottom: 8px;
  background: var(--white);
  overflow: hidden;
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}
.faq-btn:hover { background: rgba(0,0,0,0.02); }
.faq-btn__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}
.faq-btn__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.faq-btn__icon svg { stroke: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-btn { background: rgba(192,57,43,0.04); }
.faq-item.open .faq-btn__icon { transform: rotate(45deg); }
.faq-answer__inner {
  padding: 4px 24px 22px;
  font-size: 0.9375rem;
  color: var(--gray-mid);
  line-height: 1.75;
  border-top: 1px solid var(--gray-line);
}
