/* ==========================================================================
   Trenix — Clear Solutions
   Stylesheet
   ========================================================================== */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  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 { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.01em; line-height: 1.2; color: var(--navy); }

/* ---- Palette (from Trenix brand sheet) ---- */
:root {
  --navy: #0D1B2A;
  --navy-2: #16283D;
  --navy-3: #1F3752;
  --gold: #C98A1B;
  --gold-light: #E3A93B;
  --grey-light: #EEF0F2;
  --grey: #6B7280;
  --ink: #1B2430;
  --white: #FFFFFF;

  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 27, 42, 0.16);
}

/* ---- Layout helpers ---- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.bg-light { background: var(--grey-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--grey); font-size: 1.05rem; }
.bg-navy .section-head p { color: #B9C2CE; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,138,27,0.35); }

.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand img { height: 30px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  color: #CBD3DC;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: #CBD3DC; font-size: 0.9rem; font-weight: 500; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }
.nav-phone:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span { top: 11px; }
.nav-toggle span::before { top: -9px; }
.nav-toggle span::after { top: 9px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-9px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 70%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); color: var(--white); margin-bottom: 20px; }
.hero-copy p { font-size: 1.1rem; color: #C4CCD6; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold-light); }
.hero-stats div span { font-size: 0.85rem; color: #9CA7B4; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
}
.hero-visual .ring-1 { inset: 0; }
.hero-visual .ring-2 { inset: 15%; border-color: rgba(201,138,27,0.35); }
.hero-visual .ring-3 { inset: 32%; border-color: rgba(255,255,255,0.1); }
.hero-visual .drop-icon {
  position: relative;
  width: 46%;
  color: var(--gold);
  filter: drop-shadow(0 12px 30px rgba(201,138,27,0.4));
}
.hero-visual .badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-visual .badge span { display: block; font-family: var(--font-body); font-weight: 500; color: var(--grey); font-size: 0.7rem; }
.hero-visual .badge-1 { top: 6%; left: -6%; }
.hero-visual .badge-2 { bottom: 10%; right: -8%; }

/* ---- Value props / feature grid ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid #E7E9EC;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.icon-badge {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201,138,27,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { color: var(--grey); font-size: 0.94rem; }

/* ---- Two column feature / about preview ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/3.2;
  display: flex; align-items: center; justify-content: center;
}
.split-media svg { width: 55%; color: var(--gold); }
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,138,27,0.25), transparent 60%);
}
.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); }
.check-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

/* ---- Process steps ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 26px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -2px;
  width: calc(100% - 40px);
  border-top: 2px dashed rgba(201,138,27,0.4);
}
.process-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--grey-light);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--grey); font-size: 0.92rem; }

/* ---- Cards grid (services) ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #E7E9EC;
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .icon-badge { background: var(--navy); color: var(--gold); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: 0.94rem; margin-bottom: 16px; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-card .tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--grey-light);
  color: var(--grey);
  padding: 5px 10px;
  border-radius: 20px;
}

/* ---- Industries ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.industry-card {
  text-align: center;
  padding: 26px 12px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #E7E9EC;
}
.industry-card .icon-badge { margin: 0 auto 14px; }
.industry-card p { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

/* ---- Spec table ---- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid #ECEDEF;
  font-size: 0.94rem;
}
.spec-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--grey); font-weight: 600; width: 40%; }

/* ---- Stats band ---- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band strong { display: block; font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold-light); }
.stats-band span { font-size: 0.85rem; color: #B9C2CE; letter-spacing: 0.02em; }

/* ---- Timeline (About) ---- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 2px;
  background: #E1E4E8;
}
.timeline-item {
  position: relative;
  padding-left: 76px;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px #E1E4E8;
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { color: var(--grey); font-size: 0.94rem; }

/* ---- Values grid (about) ---- */
.value-simple-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-simple {
  display: flex; gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--grey-light);
}
.value-simple .icon-badge { flex-shrink: 0; margin-bottom: 0; }
.value-simple h3 { font-size: 1rem; margin-bottom: 6px; }
.value-simple p { color: var(--grey); font-size: 0.9rem; }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-avatar svg { width: 40%; }
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { color: var(--gold); font-size: 0.82rem; font-weight: 600; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  border-radius: 18px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(201,138,27,0.35), transparent 70%);
  top: -120px; right: -80px;
}
.cta-banner h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { color: #C4CCD6; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ---- Contact page ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.contact-info-card > p { color: #B9C2CE; margin-bottom: 30px; font-size: 0.94rem; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-detail .icon-badge { background: rgba(201,138,27,0.15); margin-bottom: 0; flex-shrink: 0; }
.contact-detail h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; color: var(--white); }
.contact-detail p, .contact-detail a { color: #B9C2CE; font-size: 0.92rem; }
.contact-detail a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--gold); color: var(--navy); }
.social-row svg { width: 18px; height: 18px; }

.contact-form-card {
  background: var(--white);
  border: 1px solid #E7E9EC;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #DADEE3;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,138,27,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--grey); margin-top: 14px; }
.form-success {
  display: none;
  background: #F0F7EE;
  border: 1px solid #BFE0B4;
  color: #2C6B1F;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.form-success.show { display: block; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E7E9EC;
  height: 340px;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.map-embed svg { width: 32px; height: 32px; color: var(--gold); }

.hours-list { display: grid; gap: 10px; margin-top: 16px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 10px 0; border-bottom: 1px dashed #E1E4E8; }
.hours-list li span:last-child { color: var(--grey); }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid #E7E9EC;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}
.faq-question svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 24px 20px; color: var(--grey); font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ---- Breadcrumb / page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 80% 20%, black, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { color: #C4CCD6; max-width: 560px; }
.breadcrumb { font-size: 0.85rem; color: #9CA7B4; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #B9C2CE; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 26px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 { font-family: var(--font-heading); color: var(--white); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: #8894A2;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- Misc ---- */
.divider-gold { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-step:nth-child(2)::after { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .contact-wrap { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 760px) {
  section { padding: 60px 0; }
  .site-header .container { justify-content: flex-start; gap: 14px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; flex-shrink: 0; }
  .nav { position: static; margin-left: auto; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: 0.85rem; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px 30px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .service-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .value-simple-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
