/* ═══════════════════════════════════════════════════════════
   Inlead — Shared stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue:       #0e3a60;
  --blue-hover: #0a2d4d;
  --blue-dim:   rgba(14, 58, 96, 0.1);
  --text:       #111111;
  --muted:      #4a4a4a;
  --subtle:     #6a6a6a;
  --bg:         #F5F3EF;
  --bg-dark:    #0a1826;
  --white:      #ffffff;
  --border:     rgba(0,0,0,0.08);
  --header-h:   68px;
  --subnav-h:   52px;
  --font:       'Inter', -apple-system, sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:      1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--blue); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0 0 6px 6px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Focus ── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Accessibility helper ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 36px;
  width: auto;
}

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

nav.main-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 0.45rem 0.75rem;
  border-radius: 5px; transition: color 0.2s, background 0.2s;
  white-space: nowrap; touch-action: manipulation;
}
nav.main-nav a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
nav.main-nav a.active { color: var(--blue); background: var(--blue-dim); font-weight: 600; }

/* ── Hamburger button ── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0; border-radius: 6px;
  transition: background 0.2s;
  touch-action: manipulation;
}
.nav-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.5rem 2rem 3rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
#mobile-menu.open { opacity: 1; transform: translateY(0); }
#mobile-menu nav {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
#mobile-menu nav a {
  font-size: 18px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s; display: block;
  touch-action: manipulation;
}
#mobile-menu nav a:hover { color: var(--blue); }
#mobile-menu nav a.active { color: var(--blue); font-weight: 600; }

/* ── Full-image sections ── */
.section-img {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  background-attachment: scroll; overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .section-img { background-attachment: fixed; }
}

.section-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.72) 75%,
    rgba(0,0,0,0.84) 100%
  );
  pointer-events: none;
}

.img-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: calc(var(--header-h) + 4rem) 2.5rem 5.5rem;
  margin-left: max(2.5rem, calc((100% - var(--max-w)) / 2 + 2.5rem));
}

/* ── Page hero (sub-page banner) ── */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  background-attachment: scroll; overflow: hidden;
  padding-top: var(--header-h);
}
@media (hover: hover) and (pointer: fine) {
  .page-hero { background-attachment: fixed; }
}

.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.42) 40%,
    rgba(0,0,0,0.78) 80%,
    rgba(0,0,0,0.88) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 3rem 2.5rem 4.5rem;
  margin-left: max(2.5rem, calc((100% - var(--max-w)) / 2 + 2.5rem));
}

/* ── Section typography ── */
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 1.25rem;
  display: block;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  text-wrap: balance;
}

.section-body {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 520px; font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

/* ── Light panel sections ── */
.section-panel {
  background: var(--bg);
  padding: 5.5rem 2.5rem;
}
.section-panel.white { background: var(--white); }
.section-panel.dark  { background: var(--bg-dark); }
.section-panel.blue  { background: var(--blue); }

.panel-inner { max-width: var(--max-w); margin: 0 auto; }

.panel-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem; display: block;
}

.panel-title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.2; color: var(--text);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.panel-body {
  font-size: 16px; line-height: 1.8;
  color: var(--muted); max-width: 580px;
}

/* ── Two-column panel ── */
.panel-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.panel-cols.reversed { direction: rtl; }
.panel-cols.reversed > * { direction: ltr; }

/* Contact page: align columns to top */
.panel-cols--top { align-items: start; }

.panel-col-img {
  border-radius: 12px; overflow: hidden;
  background: var(--border);
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}

/* ── Feature list ── */
.feature-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.feature-list li {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  padding-left: 1.25rem;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.feature-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.feature-list.muted li { color: var(--muted); text-shadow: none; }
.feature-list.muted li::before { color: var(--blue); }

/* ── Product card grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-color: rgba(14,58,96,0.2);
}
.product-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px; background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1.25rem;
}
.product-card h3 {
  font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.product-card p { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ── Stats bar ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700; letter-spacing: -0.04em;
  color: #fff; display: block; margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em; text-transform: uppercase;
}

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none; letter-spacing: 0.02em;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.breadcrumb .current { color: rgba(255,255,255,0.9); }

/* ── CTA buttons ── */
.cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem; padding: 0.8rem 1.6rem;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none;
  border-radius: 6px; border: 1.5px solid;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
  cursor: pointer; white-space: nowrap;
  touch-action: manipulation;
}
.cta-arrow { display: inline-block; transition: transform 0.2s var(--ease); }
.cta:hover .cta-arrow { transform: translateX(4px); }

.cta-light { color: #fff; border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }
.cta-light:hover {
  background: #fff; border-color: #fff; color: var(--blue);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.cta-dark { color: #fff; border-color: var(--blue); background: var(--blue); }
.cta-dark:hover {
  background: var(--blue-hover); border-color: var(--blue-hover);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,58,96,0.3);
}

.cta-outline { color: var(--blue); border-color: var(--blue); background: transparent; }
.cta-outline:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,58,96,0.25);
}

.cta-contact { color: var(--blue); border-color: #fff; background: #fff; font-weight: 700; }
.cta-contact:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

/* ── Scroll-margin: offsets anchor links below the fixed header ── */
[id] { scroll-margin-top: calc(var(--header-h) + 1px); }

/* Subnav pages: extra offset for the subnav strip */
body.has-subnav [id] { scroll-margin-top: calc(var(--header-h) + var(--subnav-h) + 1px); }
body.has-subnav .img-content { padding-top: calc(var(--header-h) + var(--subnav-h) + 4rem); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Footer ── */
.footer { background: #060f18; padding: 3rem 2rem; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  height: 28px;
  width: auto;
  opacity: 0.9;
}
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  width: 100%; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; color: rgba(255,255,255,0.35);
}

/* ── Subnav (product sub-pages with secondary nav) ── */
#nav-wrapper { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
#nav-wrapper #header { position: relative; z-index: auto; }

#subnav {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s var(--ease), box-shadow 0.25s;
}
#nav-wrapper:hover #subnav,
#nav-wrapper:focus-within #subnav {
  max-height: var(--subnav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.subnav-inner {
  display: flex; align-items: center;
  height: var(--subnav-h);
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  gap: 0.125rem; overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none; -ms-overflow-style: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-inner a {
  flex-shrink: 0; font-size: 13px; font-weight: 500;
  color: var(--subtle); text-decoration: none;
  padding: 0.35rem 0.75rem; border-radius: 4px;
  white-space: nowrap; transition: color 0.18s, background 0.18s;
}
.subnav-inner a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.subnav-inner a.active { color: var(--blue); background: var(--blue-dim); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   Page-specific styles (Homepage)
   ════════════════════════════════════════════════════════════ */

.section-img.center { align-items: center; }
.section-img.center .img-content { padding-bottom: 8rem; }
.section-title.xl { font-size: clamp(2.4rem, 5vw, 3.8rem); }

/* Feature strip */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.feature-card {
  padding: 2rem; background: var(--white);
  border-radius: 10px; border: 1px solid var(--border);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 16px; font-weight: 600; color: var(--text);
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.feature-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* Customer logo wall */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.logo-item {
  height: 72px; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.logo-item:hover {
  border-color: rgba(14,58,96,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.logo-item span {
  font-size: 13px; font-weight: 600; color: #999;
  letter-spacing: 0.02em; text-transform: uppercase; text-align: center;
}

/* Testimonial */
.testimonial-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500; line-height: 1.55; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 2.5rem;
  position: relative; padding-top: 1rem;
  text-wrap: balance;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute; top: -1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 5rem; line-height: 1;
  color: var(--blue-dim); font-family: Georgia, serif;
}
.testimonial-author {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.25rem;
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 0.5rem;
}
.author-name { font-size: 15px; font-weight: 600; color: var(--text); }
.author-role { font-size: 13px; color: var(--subtle); }

/* ── Homepage background images ── */
.bg-1 { background-image: url('https://images.unsplash.com/photo-1568667256549-094345857637?w=1600&q=80'); }
.bg-2 { background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1600&q=80'); }
.bg-3 { background-image: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?w=1600&q=80'); }
.bg-4 { background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1600&q=80'); }
.bg-5 { background-image: linear-gradient(150deg, #071524 0%, #0e3a60 60%, #1a5a96 100%); }

/* ════════════════════════════════════════════════════════════
   Page-specific styles (Formidlingsløsninger)
   ════════════════════════════════════════════════════════════ */

/* Step list */
.step-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-top: 2rem;
}
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 50%; background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 {
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 0.35rem; letter-spacing: -0.01em;
}
.step-body p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* Formidlingsløsninger background images */
.bg-lib    { background-image: url('https://images.unsplash.com/photo-1568667256549-094345857637?w=1600&q=80'); }
.bg-cms    { background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1600&q=80'); }
.bg-screen { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=80'); }
.bg-email  { background-image: url('https://images.unsplash.com/photo-1557200134-90327ee9fafa?w=1600&q=80'); }
.bg-open   { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80'); }
.bg-news   { background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1600&q=80'); }
.bg-oplev  { background-image: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?w=1600&q=80'); }

/* ════════════════════════════════════════════════════════════
   Page-specific styles (Kontakt)
   ════════════════════════════════════════════════════════════ */

/* Contact info cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.contact-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: rgba(14,58,96,0.18);
}
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 0.9rem;
}
.contact-card h3 {
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-bottom: 0.35rem; letter-spacing: 0.01em;
}
.contact-card p,
.contact-card address {
  font-size: 15px; line-height: 1.65; color: var(--muted); font-style: normal;
}
.contact-card a { font-size: 15px; color: var(--blue); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* Opening hours */
.hours-list {
  list-style: none; margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.hours-list li {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  padding-left: 1.2rem; position: relative;
}
.hours-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue); font-size: 12px; top: 3px;
}
.hours-note {
  font-size: 14px; line-height: 1.7; color: var(--subtle);
  margin-top: 1.25rem; max-width: 380px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skip-link { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .section-img,
  .page-hero { background-attachment: scroll; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .panel-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .panel-cols.reversed { direction: ltr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .step-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav.main-nav { display: none; }
  #mobile-menu { display: block; pointer-events: none; }
  #mobile-menu.open { pointer-events: auto; }
  .logo-img { height: 30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .logo-grid    { grid-template-columns: repeat(3, 1fr); }
  .subnav-inner { padding: 0 1rem; gap: 0; }
  .subnav-inner a { padding: 0.35rem 0.6rem; font-size: 12px; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .logo-grid    { grid-template-columns: repeat(2, 1fr); }
}
