/*!
 * Metronet, LLC — Production Stylesheet
 * Refined Navy + Amber design system. One source of truth.
 */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #081C36;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1E4477;
  --amber-500: #F4B400;
  --amber-600: #D89A00;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --line: #E5EAF0;
  --bg: #ffffff;
  --bg-alt: #F6F8FB;
  --success: #0E9F6E;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, .12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1200px;
  --gutter: 24px;
  --font-sans: "Inter", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color .15s ease
}

a:hover {
  color: var(--amber-600)
}

button {
  font-family: inherit;
  cursor: pointer
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--slate-900);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em
}

h2 {
  font-size: clamp(26px, 3.2vw, 40px)
}

h3 {
  font-size: 20px;
  letter-spacing: -.01em
}

p {
  margin: 0 0 1em
}

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate-600);
  max-width: 62ch
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 14px;
}

.muted {
  color: var(--slate-500)
}

/* ---------- Layout ---------- */
.wrap {
  width: min(var(--container), 100% - 2*var(--gutter));
  margin-inline: auto
}

section {
  padding: 88px 0
}

.section-alt {
  background: var(--bg-alt)
}

.section-dark {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #E6EEF7
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff
}

.section-dark .eyebrow {
  color: var(--amber-500)
}

.section-dark .lead,
.section-dark p {
  color: #CBD5E1
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.align-start {
  align-items: start
}

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0
}

.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
  box-shadow: var(--shadow-md)
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0
}

.logo {
  display: inline-flex;
  align-items: center
}

.logo img {
  height: 48px;
  width: auto
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px
}

.menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  padding: 6px 0;
  position: relative;
}

.menu a:hover {
  color: var(--navy-800)
}

.menu a.active {
  color: var(--navy-800)
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  background: var(--amber-500);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--navy-800);
  font-weight: 600
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 8px 18px rgba(244, 180, 0, .25);
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  background: var(--amber-600);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 12px 22px rgba(216, 154, 0, .3)
}

.btn.primary-dark {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 8px 18px rgba(11, 37, 69, .25)
}

.btn.primary-dark:hover {
  background: var(--navy-700);
  color: #fff
}

.btn.ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--slate-200)
}

.btn.ghost:hover {
  background: var(--slate-50);
  border-color: var(--slate-400);
  transform: none
}

.btn.ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.btn.ghost-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: none
}

.btn.btn-anydesk {
  background: #ef443b;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 8px 18px rgba(239, 68, 59, .25);
}

.btn.btn-anydesk:hover {
  background: #e63930;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 12px 22px rgba(239, 68, 59, .35);
}

.btn.lg {
  padding: 16px 28px;
  font-size: 16px
}

.btn.sm {
  padding: 9px 14px;
  font-size: 14px
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(8, 28, 54, .92) 0%, rgba(11, 37, 69, .78) 55%, rgba(19, 49, 92, .55) 100%),
    url('../img/warehouse-hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(244, 180, 0, .15), transparent 60%);
  pointer-events: none;
}

.hero .wrap {
  position: relative
}

.hero-content {
  max-width: 780px
}

.hero .eyebrow {
  color: var(--amber-500)
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
  max-width: 18ch
}

.hero .lead {
  color: #E6EEF7;
  font-size: 20px;
  max-width: 62ch;
  margin-bottom: 32px
}

.hero .btn-row {
  margin-top: 8px
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
  max-width: 820px;
}

.hero-stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}

.hero-stat b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 4px
}

.hero-stat span {
  font-size: 13px;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600
}

.hero.compact {
  padding: 90px 0 70px
}

.hero.compact h1 {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 24ch
}

.hero.compact .lead {
  font-size: 18px
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #D5DCE5
}

.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy-800);
  color: var(--amber-500);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--slate-900)
}

.card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 15px
}

/* Feature list */
ul.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px
}

ul.checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--slate-700);
  font-size: 15.5px;
  line-height: 1.5;
}

ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber-500) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%230B2545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.3l2.2 2.2L9.5 3.6'/></svg>") center/12px no-repeat;
}

/* Image card */
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3
}

.img-card .img-caption {
  font-size: 13px;
  color: var(--slate-500);
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid var(--line)
}

/* Callout */
.callout {
  border-left: 4px solid var(--amber-500);
  background: #FFFBED;
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--slate-800, var(--slate-700));
  font-weight: 500;
}

/* ---------- Trusted-by logo strip ---------- */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.trust-strip h4 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 700;
  margin: 0 0 22px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.trust-logos img {
  height: 42px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(.95);
  opacity: .78;
  transition: filter .2s ease, opacity .2s ease;
}

.trust-logos img:hover {
  filter: none;
  opacity: 1
}

/* ---------- Vendor / partner grid ---------- */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.vendor-grid .v {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  height: 88px;
  padding: 14px 16px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.vendor-grid .v:hover {
  transform: translateY(-2px);
  border-color: #D5DCE5;
  box-shadow: var(--shadow-md)
}

.vendor-grid .v svg {
  width: auto;
  height: 30px;
  max-width: 120px;
  fill: currentColor
}

.vendor-grid .v img {
  display: block;
  max-width: 128px;
  max-height: 38px;
  width: auto;
  height: auto
}

.vendor-grid .v .wm {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  color: currentColor
}

.vendor-grid .v .cap {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--slate-500);
  letter-spacing: .08em;
  text-transform: uppercase
}

.vendor-grid .v.microsoft {
  color: #5E5E5E
}

.vendor-grid .v.cisco {
  color: #049FD9
}

.vendor-grid .v.intel {
  color: #0068B5
}

.vendor-grid .v.lenovo {
  color: #E2231A
}

.vendor-grid .v.hp {
  color: #0096D6
}

.vendor-grid .v.samsung {
  color: #1428A0
}

.vendor-grid .v.dell {
  color: #007DB8
}

.vendor-grid .v.fortinet {
  color: #EE3124
}

.vendor-grid .v.barracuda {
  color: #0054A6
}

.vendor-grid .v.zebra {
  color: #111111
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: var(--slate-900)
}

.form-card .form-intro {
  color: var(--slate-600);
  margin-bottom: 18px;
  font-size: 15px
}

.form-card form {
  display: grid;
  gap: 14px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-700)
}

.field .required {
  color: #C0392B;
  margin-left: 2px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--slate-900);
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(11, 37, 69, .12);
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.field .hint {
  font-size: 12.5px;
  color: var(--slate-500)
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0
}

.form-note {
  font-size: 13px;
  color: var(--slate-500);
  margin: 0
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.testimonial-card .testimonial-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.testimonial-card .testimonial-logo img {
  max-height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(20%);
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.testimonial-card blockquote::before {
  content: "“";
  color: var(--amber-500);
  font-size: 36px;
  font-weight: 800;
  line-height: 0;
  vertical-align: -12px;
  margin-right: 2px
}

.testimonial-card blockquote::after {
  content: "”";
  color: var(--amber-500);
  font-size: 36px;
  font-weight: 800;
  line-height: 0;
  vertical-align: -12px;
  margin-left: 2px
}

.testimonial-attr {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto
}

.testimonial-attr strong {
  display: block;
  color: var(--slate-900);
  font-size: 15px;
  font-weight: 700
}

.testimonial-attr span {
  display: block;
  color: var(--slate-500);
  font-size: 13.5px;
  margin-top: 2px
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.team-card .role-pill {
  display: inline-block;
  background: var(--slate-100);
  color: var(--navy-800);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.team-card h3 {
  margin: 6px 0 4px;
  font-size: 18px
}

.team-card .team-title {
  color: var(--navy-800);
  font-weight: 600;
  font-size: 14.5px;
  margin: 0 0 10px
}

.team-card p {
  font-size: 14.5px;
  color: var(--slate-600);
  margin: 0 0 14px
}

.team-card .team-email {
  margin: 0
}

.team-card .team-email a {
  font-weight: 700;
  color: var(--navy-800);
  font-size: 14px;
  border-bottom: 2px solid var(--amber-500);
  padding-bottom: 1px;
}

.team-card .team-email a:hover {
  color: var(--amber-600)
}

/* ---------- Leadership block ---------- */
.leadership {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.portrait-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 380px;
  margin-left: auto;
}

.portrait-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5
}

.portrait-card figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--slate-500);
  background: #fff
}

/* ---------- Big CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 180, 0, .22), transparent 70%);
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 12px
}

.cta-band p {
  color: #CBD5E1;
  margin: 0 0 20px;
  font-size: 17px
}

.cta-band .btn-row {
  position: relative
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: #CBD5E1;
  padding: 64px 0 28px;
  border-top: 1px solid var(--line)
}

.footer a {
  color: #E2E8F0
}

.footer a:hover {
  color: var(--amber-500)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 16px;
  font-weight: 700
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14.5px
}

.footer .footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 14px
}

.footer .footer-brand p {
  color: #94A3B8;
  font-size: 14.5px;
  max-width: 36ch;
  margin: 0
}

.footer-meta {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #94A3B8;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 16px 18px;
  display: none;
  max-width: 920px;
  margin: auto;
}

.cookie-banner.show {
  display: block
}

.cookie-banner .cookie-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap
}

.cookie-banner p {
  margin: 0;
  color: var(--slate-700);
  font-size: 14px
}

.cookie-actions {
  display: flex;
  gap: 10px
}

/* ---------- Legal pages ---------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--slate-700);
  line-height: 1.7
}

.prose h2 {
  margin-top: 36px;
  font-size: 22px;
  color: var(--slate-900)
}

.prose h3 {
  margin-top: 22px;
  font-size: 18px
}

.prose ul {
  padding-left: 20px
}

.prose ul li {
  margin-bottom: 6px
}

/* ---------- Responsive ---------- */

/* === FullHD+ (1440px and above) === */
@media(min-width:1440px) {
  :root {
    --container: 1320px;
    --gutter: 40px
  }

  body {
    font-size: 17px
  }

  .lead {
    font-size: 19px
  }

  section {
    padding: 100px 0
  }

  .hero {
    padding: 140px 0 120px
  }

  .hero .lead {
    font-size: 21px
  }

  .hero-content {
    max-width: 860px
  }

  .card {
    padding: 32px
  }

  .testimonial-card {
    padding: 32px
  }

  .cta-band {
    padding: 56px
  }

  .footer {
    padding: 72px 0 32px
  }

  .footer .footer-brand img {
    height: 52px
  }
}

/* === Tablet (769px – 1024px) === */
@media(max-width:1024px) {
  :root {
    --gutter: 20px
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px
  }

  .footer-grid .footer-brand {
    grid-column: 1/-1
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-2 {
    gap: 36px
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 36px
  }

  .cta-band::before {
    width: 220px;
    height: 220px
  }

  .leadership {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .portrait-card {
    max-width: 320px;
    margin: 0 auto
  }
}

/* === Phone / small tablet (≤760px) === */
@media(max-width:760px) {
  :root {
    --gutter: 16px
  }

  body {
    font-size: 15.5px;
    line-height: 1.65
  }

  section {
    padding: 56px 0
  }

  .lead {
    font-size: 16.5px;
    line-height: 1.6
  }

  h1 {
    font-size: clamp(28px, 6vw, 40px)
  }

  h2 {
    font-size: clamp(22px, 5vw, 32px)
  }

  h3 {
    font-size: 18px
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .1em;
    margin-bottom: 10px
  }

  /* Nav → hamburger menu */
  .nav {
    padding: 10px 0
  }

  .logo img {
    height: 40px
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px var(--gutter) 16px;
    z-index: 100;
  }

  .menu.open {
    display: flex
  }

  .menu a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--slate-100);
    font-size: 16px
  }

  .menu a.active::after {
    display: none
  }

  .menu .btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px
  }

  /* Grids → single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .leadership,
  .cta-band {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .testimonials-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  /* Hero */
  .hero {
    padding: 72px 0 56px
  }

  .hero .lead {
    font-size: 16.5px;
    margin-bottom: 24px
  }

  .hero .btn-row {
    flex-direction: column;
    gap: 10px
  }

  .hero .btn-row .btn {
    width: 100%;
    justify-content: center
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    gap: 10px
  }

  .hero-stat {
    padding: 14px 16px;
    border-radius: 12px
  }

  .hero-stat b {
    font-size: 20px
  }

  .hero-stat span {
    font-size: 11px
  }

  .hero.compact {
    padding: 64px 0 48px
  }

  .hero.compact h1 {
    font-size: clamp(24px, 5.5vw, 36px)
  }

  /* Cards */
  .card {
    padding: 22px
  }

  .card .num {
    width: 32px;
    height: 32px;
    font-size: 13px;
    margin-bottom: 10px
  }

  .testimonial-card {
    padding: 22px;
    min-height: auto
  }

  /* CTA */
  .cta-band {
    padding: 28px 20px;
    border-radius: var(--radius-lg)
  }

  .cta-band h2 {
    font-size: clamp(20px, 5vw, 28px)
  }

  .cta-band p {
    font-size: 15px
  }

  .cta-band .btn-row {
    flex-direction: column;
    gap: 10px
  }

  .cta-band .btn-row .btn {
    width: 100%;
    justify-content: center
  }

  /* Forms */
  .form-card {
    padding: 22px;
    border-radius: var(--radius-lg)
  }

  .field input,
  .field select,
  .field textarea {
    padding: 10px 12px;
    font-size: 16px
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px
  }

  .footer-grid {
    gap: 28px
  }

  .footer .footer-brand img {
    height: 38px;
    margin-bottom: 10px
  }

  .footer .footer-brand p {
    font-size: 13.5px
  }

  .footer h4 {
    font-size: 13px;
    margin-bottom: 12px
  }

  .footer ul {
    font-size: 13.5px;
    gap: 6px
  }

  .footer-meta {
    font-size: 12px;
    margin-top: 28px;
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px
  }

  /* Trust strip */
  .trust-strip {
    padding: 32px 0
  }

  .trust-strip h4 {
    font-size: 11px;
    margin-bottom: 16px
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    row-gap: 20px
  }

  .trust-logos img {
    height: 36px
  }

  /* Checklist */
  ul.checklist {
    gap: 8px
  }

  ul.checklist li {
    font-size: 14.5px;
    padding-left: 26px
  }

  ul.checklist li::before {
    width: 16px;
    height: 16px;
    top: 4px
  }

  /* Image cards */
  .img-card img {
    aspect-ratio: 16/10
  }

  /* Buttons */
  .btn {
    padding: 12px 18px;
    font-size: 14px
  }

  .btn.lg {
    padding: 14px 22px;
    font-size: 15px
  }

  .btn.sm {
    padding: 8px 12px;
    font-size: 13px
  }

  .btn-row {
    gap: 10px
  }

  /* Portrait */
  .portrait-card {
    margin: 0 auto;
    max-width: 280px
  }
}

/* === Small phones (≤400px) === */
@media(max-width:400px) {
  :root {
    --gutter: 14px
  }

  h1 {
    font-size: clamp(24px, 7vw, 34px)
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .hero-stat {
    padding: 12px 14px
  }

  .hero-stat b {
    font-size: 18px
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-meta {
    font-size: 11.5px
  }

  .testimonials-grid {
    gap: 16px
  }

  .testimonial-card blockquote {
    font-size: 14.5px
  }

  .cta-band {
    padding: 24px 16px
  }
}

/* === R2C: MANUFACTURER/VENDOR LOGO STRIP LAYOUT ONLY ===
   Scope: .vendor-grid only. No testimonials, menu, content, or image files changed. */
.vendor-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(130px, 1fr)) !important;
  gap: 16px 22px !important;
  max-width: 900px !important;
  margin: 24px auto 0 !important;
  align-items: center !important;
}

.vendor-grid .v {
  height: 78px !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: row !important;
  overflow: hidden !important;
}

.vendor-grid .v img,
.vendor-grid .v svg {
  display: block !important;
  width: 108px !important;
  height: 38px !important;
  max-width: 124px !important;
  max-height: 38px !important;
  object-fit: contain !important;
}

.vendor-grid .v .wm {
  display: block !important;
  font-size: 18px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.vendor-grid .v .cap {
  display: none !important;
}

@media (max-width: 900px) {
  .vendor-grid {
    grid-template-columns: repeat(3, minmax(110px, 1fr)) !important;
    max-width: 640px !important;
  }
}

@media (max-width: 560px) {
  .vendor-grid {
    grid-template-columns: repeat(2, minmax(110px, 1fr)) !important;
    max-width: 360px !important;
  }

  .vendor-grid .v {
    height: 70px !important;
    padding: 10px 12px !important;
  }

  .vendor-grid .v img,
  .vendor-grid .v svg {
    width: 110px !important;
    height: 34px !important;
    max-width: 110px !important;
    max-height: 34px !important;
  }
}

/* ---------- Scroll Animations ---------- */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}