/* Dendron BD — Professional Healthcare UI */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --forest: #0a3d36;
  --forest-deep: #062925;
  --teal: #1a6b5c;
  --teal-mid: #2d8a78;
  --mint: #e8f3ef;
  --mist: #f4f9f7;
  --sand: #f7f4ef;
  --amber: #b8893d;
  --amber-hover: #9a712f;
  --ink: #14231f;
  --muted: #5a6e68;
  --line: rgba(10, 61, 54, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 41, 37, 0.12);
  --radius: 4px;
  --header-h: 78px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(6, 41, 37, 0.08);
}

.header-top {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  flex-wrap: wrap;
}

.header-top a:hover { color: #fff; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  width: min(100% - 2.5rem, 1400px);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-image {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  place-items: center;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  position: relative;
  transition: 0.25s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--forest);
  transition: 0.25s var(--ease);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.55rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-link.active {
  color: var(--teal);
  background: var(--mint);
}

.nav-link .chev {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.55;
  transition: transform 0.25s var(--ease);
}

.nav-item:hover > .nav-link .chev {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s var(--ease);
  z-index: 100;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.wide {
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.dropdown.mega {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
}

.dropdown-group-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  padding: 0.4rem 0.7rem 0.25rem;
  grid-column: 1 / -1;
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  transition: 0.18s;
  line-height: 1.35;
}

.dropdown a:hover {
  background: var(--mint);
  color: var(--teal);
}

.dropdown a.accent {
  color: var(--amber-hover);
  font-weight: 600;
}

.dropdown a.accent:hover {
  background: rgba(184, 137, 61, 0.1);
  color: var(--amber-hover);
}

.dropdown-note {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.15rem 0.7rem 0.5rem;
  line-height: 1.4;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: 0.25s var(--ease);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184, 137, 61, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline {
  border: 1.5px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}

.btn-dark {
  background: var(--forest);
  color: #fff;
}

.btn-dark:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - var(--header-h) - 34px), 760px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 41, 37, 0.88) 0%, rgba(10, 61, 54, 0.55) 48%, rgba(26, 107, 92, 0.35) 100%),
    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=2000&q=80') center 38%/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(184, 137, 61, 0.18), transparent 50%),
    linear-gradient(to top, rgba(6, 41, 37, 0.55), transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-brand em {
  font-style: italic;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 500;
  max-width: 28ch;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero p {
  max-width: 46ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    linear-gradient(115deg, rgba(6, 41, 37, 0.92), rgba(26, 107, 92, 0.75)),
    url('https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(184, 137, 61, 0.2), transparent 40%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: #fff;
}

.section-forest {
  background: var(--forest-deep);
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.section-forest .section-head h2 { color: #fff; }

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-forest .section-head p { color: rgba(255, 255, 255, 0.72); }

/* Mission / Vision ——— */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-block {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.mv-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
}

.mv-block.vision::before { background: var(--amber); }

.mv-block h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.85rem;
}

.mv-block p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.mv-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.mv-block.vision .mv-label { color: var(--amber); }

/* Feature grid ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.3s var(--ease);
  height: 100%;
}

.feature:hover {
  border-color: rgba(26, 107, 92, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.feature a.more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.feature a.more:hover { color: var(--amber-hover); }

/* Training list ——— */
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.25s var(--ease);
}

.list-item:hover {
  border-color: var(--teal-mid);
  background: var(--mint);
}

.list-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.list-item h3 {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.list-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Split ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(10, 61, 54, 0.25), rgba(6, 41, 37, 0.55)),
    url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&w=1200&q=80') center/cover;
  overflow: hidden;
}

.split-visual::after {
  content: 'Trusted knowledge for clinicians & industry';
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  line-height: 1.3;
}

.split-content .eyebrow { margin-bottom: 0.5rem; }

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.split-checks {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}

.split-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.split-checks li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--mint);
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a6b5c' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Clients ——— */
.client-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.client-tile {
  padding: 2rem 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.25s var(--ease);
}

.client-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 137, 61, 0.5);
}

.client-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.client-tile span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Products ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.product {
  padding: 1.75rem 1.15rem;
  text-align: center;
  background: var(--mist);
  border: 1px solid var(--line);
  transition: 0.25s var(--ease);
}

.product:hover {
  background: #fff;
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-glyph {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.product h3 {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--forest);
}

/* CTA band ——— */
.cta-band {
  padding: 4.5rem 0;
  background:
    linear-gradient(110deg, var(--forest-deep) 0%, var(--teal) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(184, 137, 61, 0.15);
  top: -120px;
  right: -80px;
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 46ch;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Content pages ——— */
.content-block {
  max-width: 760px;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--forest);
  margin: 2rem 0 0.75rem;
}

.content-block h3 {
  font-size: 1.15rem;
  color: var(--forest);
  margin: 1.5rem 0 0.5rem;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.content-block ul {
  margin: 0.5rem 0 1.25rem 1.1rem;
  list-style: disc;
  color: var(--muted);
}

.content-block ul li { margin-bottom: 0.4rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.panel {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
}

.panel h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.panel ul {
  display: grid;
  gap: 0.45rem;
}

.panel li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 500;
}

.panel li:last-child { border-bottom: none; }

.panel li a:hover { color: var(--teal); }

/* Contact form ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.info-tile {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
}

.info-tile h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.info-tile p, .info-tile a {
  font-weight: 500;
  color: var(--forest);
}

.contact-form {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--forest);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--mist);
  color: var(--ink);
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 107, 92, 0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Breadcrumb ——— */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.breadcrumb a:hover { color: #fff; }

/* Reveal animation ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-image {
  width: 220px;
  height: auto;
  padding: 0.35rem;
  background: #fff;
  border-radius: 4px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a:hover { color: #fff; }

/* ——— Mobile ——— */
@media (max-width: 1100px) {
  .nav-link { padding: 0.5rem 0.4rem; font-size: 0.72rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown.wide,
  .dropdown.mega { min-width: 320px; grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle { display: grid; }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 360px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 7.75rem 1.25rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 1000;
  }

  .primary-nav.open { transform: translateX(0); }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0.75rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--line);
  }

  .dropdown,
  .dropdown.wide,
  .dropdown.mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    display: none;
    padding: 0 0 0.5rem 0.75rem;
    grid-template-columns: 1fr;
  }

  .nav-item.open > .dropdown { display: block; }
  .nav-item.open > .dropdown.mega { display: grid; }

  .nav-item.open > .nav-link .chev {
    transform: rotate(225deg) translateY(-1px);
  }

  .mv-grid,
  .feature-grid,
  .list-grid,
  .split,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .client-strip { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .split-visual { min-height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; align-items: center; }
  .hero-inner { padding: 4rem 0 3.5rem; }
}

@media (max-width: 560px) {
  .client-strip,
  .product-grid { grid-template-columns: 1fr; }
  .header-top { display: none; }
  .header-main { min-height: 72px; }
  .logo-image { width: 170px; height: 52px; }
  .primary-nav {
    width: 100%;
    padding: 5rem 1rem 1.5rem;
  }
  .hero-inner { padding: 3.25rem 0; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.35rem); }
  .hero p { font-size: 0.98rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
