/* =========================================================
   Integrity Biomedical — shared stylesheet
   Brand: navy + amber (matches printed brochure collateral)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-brand: #0d1b3e;
  --steel: #1e3a5f;
  --accent: #e2793c;
  --accent-bright: #f0a868;
  --accent-deep: #c25f26;
  --silver: #a8b2c1;
  --light: #e8edf3;
  --white: #f4f7fb;
  --grid-line: rgba(226, 121, 60, 0.06);
  --line: rgba(226, 121, 60, 0.15);
  --line-soft: rgba(226, 121, 60, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background-color: var(--navy);
  color: var(--light);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* GRID BACKGROUND */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 76px;
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo img { height: 34px; width: auto; }

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo-text span { display: block; color: var(--accent); font-size: 0.95em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--accent);
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--accent-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.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); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 160px 5% 70px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.page-hero .hero-tag { margin-bottom: 1.25rem; }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  max-width: 640px;
}

/* ── GENERIC HERO (home) ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 5% 60px;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,121,60,0.1) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
}

.hero-cross::before, .hero-cross::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}

.hero-cross::before { width: 8px; height: 260px; left: 50%; top: 0; transform: translateX(-50%); }
.hero-cross::after { width: 260px; height: 8px; top: 50%; left: 0; transform: translateY(-50%); }

.hero-content { max-width: 680px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--accent); }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

h1 em { font-style: normal; color: var(--accent); display: block; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--accent);
  padding: 0.85rem 2rem;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(226,121,60,0.4);
  padding: 0.85rem 2rem;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover { border-color: var(--accent); background: rgba(226,121,60,0.08); }

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.25rem;
}

/* ── SECTIONS ── */
section { position: relative; z-index: 1; padding: 90px 5%; }
section.tight { padding: 60px 5%; }
.section-alt { background: var(--navy-mid); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent); }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

h2 span { color: var(--accent); }

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

.center-head { text-align: center; }
.center-head .section-label { justify-content: center; }
.center-head .section-label::before { display: none; }
.center-head .section-intro { margin-left: auto; margin-right: auto; }

/* ── SERVICE / CATEGORY CARD GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
}

.service-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 0 0 1px var(--line);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s;
}

.service-card:hover { background: rgba(226, 121, 60, 0.06); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
}

.service-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── FULL SERVICE DETAIL BLOCKS (services.html) ── */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 30px; height: 30px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-detail p { color: var(--silver); font-weight: 300; line-height: 1.8; margin-bottom: 0.75rem; max-width: 680px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.tag-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--line);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

/* ── WHY US ── */
#why, .why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--silver);
}

.why-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.why-visual { position: relative; height: 420px; }

.why-box {
  position: absolute;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  padding: 2rem;
}

.why-box-main {
  width: 75%; height: 75%; top: 0; left: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.why-box-accent {
  width: 55%; height: 45%; bottom: 0; right: 0;
  background: rgba(226,121,60,0.06);
  border-color: rgba(226,121,60,0.3);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}

.why-box-main-label { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.why-box-main-sub { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-top: 0.25rem; }
.why-box-accent-label { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 0.05em; }
.why-box-accent-sub { font-size: 0.78rem; color: var(--silver); margin-top: 0.4rem; font-weight: 300; }

/* ── ACCREDITATION / COMPLIANCE GRID ── */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.accred-card {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.accred-card .accred-icon {
  width: 38px; height: 38px;
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
}

.accred-card .accred-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.accred-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.accred-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.65; color: var(--silver); }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  border: 1px solid rgba(226,121,60,0.3);
  background: rgba(226,121,60,0.06);
  padding: 0.45rem 0.9rem;
}

/* ── WHO WE SERVE (category blocks) ── */
.category-block {
  border: 1px solid var(--line);
  background: var(--navy);
  margin-bottom: 2.5rem;
}

.category-head {
  padding: 2rem 2.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line-soft);
}

.category-head-text { max-width: 640px; }

.category-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.category-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.category-head h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.category-head p { color: var(--silver); font-weight: 300; line-height: 1.75; font-size: 0.95rem; }

.brochure-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brochure-cta .btn-primary, .brochure-cta .btn-secondary { text-align: center; }

.category-body {
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
}

.equip-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem 1.5rem;
}

.equip-list li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.4;
}

.equip-list li svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.2rem; }

.reg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.reg-list li {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--silver);
  padding-left: 1rem;
  border-left: 2px solid var(--line);
}

.reg-list li strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.15rem; }

.subhead {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── BROCHURE / RESOURCE CARDS ── */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.brochure-card {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brochure-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}

.brochure-card-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.brochure-card h3 { font-size: 1.15rem; }
.brochure-card p { font-size: 0.88rem; font-weight: 300; color: var(--silver); line-height: 1.6; flex-grow: 1; }

.brochure-card-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.25rem; }

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s;
}

.link-btn:hover { border-color: var(--accent); color: var(--accent-bright); }

.link-btn.primary { background: var(--accent); border-color: var(--accent); color: var(--navy); }
.link-btn.primary:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: var(--navy); }

.link-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── TIMELINE / VALUES (about) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.value-card { padding: 0; }
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.9rem; font-weight: 300; color: var(--silver); line-height: 1.7; }
.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 0.5rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-item-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.contact-item-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--silver); margin-bottom: 0.3rem; }
.contact-item-value { font-size: 1rem; font-weight: 400; color: var(--white); }
.contact-item-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--silver); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e2793c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.8rem; color: var(--silver); font-weight: 300; line-height: 1.6; }

.form-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--accent);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--accent-bright); transform: translateY(-2px); }

.form-success {
  display: none;
  background: rgba(226,121,60,0.1);
  border: 1px solid rgba(226,121,60,0.3);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--accent-bright);
  margin-top: 0.5rem;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  z-index: 1;
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 5%;
  text-align: center;
}

.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--silver); font-weight: 300; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-band .hero-buttons { justify-content: center; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 3.5rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 1.75rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.footer-brand img { height: 30px; width: auto; }
.footer-brand-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.footer-brand-text span { color: var(--accent); }

.footer-col p, .footer-col a { font-size: 0.85rem; color: var(--silver); font-weight: 300; line-height: 1.7; }
.footer-desc { max-width: 320px; }

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.78rem; color: rgba(168, 178, 193, 0.5); }

.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #why, .why-section { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .category-body { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 5%; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-right { gap: 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { gap: 2rem; }
  .category-head { flex-direction: column; }
  .brochure-cta { flex-direction: row; width: 100%; }
  .brochure-cta .btn-primary, .brochure-cta .btn-secondary { flex: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
}
