/*
 * base.css — Wolds Cyber shared base styles
 * Import after tokens.css
 * Typography: Montserrat (brand font — all weights, all uses)
 * Self-hosted via /fonts/ — Latin subset from fontsource (SIL OFL licence)
 * Replaces Inter + Source Serif 4 — brand sheet mandates Montserrat throughout
 */

/* ─── Self-hosted fonts — Montserrat ─── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/montserrat-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/montserrat-medium.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/montserrat-semibold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/montserrat-bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Font stacks ─── */
:root {
  --font-ui:   'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
}

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

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s ease, color 0.2s ease;
}

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-ui);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ui);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--link-hover); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

strong { font-weight: 700; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.font-ui { font-family: var(--font-ui); }
.font-body { font-family: var(--font-body); }

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.intro-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-top: 1rem;
  line-height: 1.7;
}

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

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
}
.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  padding: 0.875rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/*
 * Nav logo — SVG assets now in /img/logo/ (horizontal-twotone-dark.svg on dark nav).
 * Logo fill uses official Wolds Navy #1F3A5F + Cyber Blue #2E75B6.
 */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* Text fallback if image fails — kept for accessibility + email-client safety */
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.nav-logo img {
  display: block;
  height: 40px;
  width: auto;
}
@media (max-width: 560px) {
  .nav-logo img { height: 32px; }
}
.nav-logo:focus-visible {
  outline: 3px solid var(--nav-cta-bg);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-ui);
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: var(--nav-text-hover); }
.nav-link[aria-current="page"] {
  color: var(--nav-cta-bg);
}
.nav-link:focus-visible {
  outline: 3px solid var(--nav-cta-bg);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--nav-text);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}
.theme-toggle:focus-visible {
  outline: 3px solid var(--nav-cta-bg);
  outline-offset: 2px;
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
/* Show correct icon per theme */
[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none;  }
[data-theme="dark"]  .icon-moon { display: none;  }
[data-theme="dark"]  .icon-sun  { display: block; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--nav-cta-bg);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
  min-height: 36px;
}
.nav-cta:hover {
  background: var(--nav-cta-hover);
  color: #ffffff;
}
.nav-cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--nav-text);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.hamburger:hover { border-color: rgba(255,255,255,0.6); }
.hamburger:focus-visible {
  outline: 3px solid var(--nav-cta-bg);
  outline-offset: 2px;
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--nav-bg);
  border-top: 1px solid var(--nav-border);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-ui);
  color: var(--nav-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--nav-border);
  display: block;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-link:hover {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}
.mobile-nav-link[aria-current="page"] {
  color: var(--nav-cta-bg);
}
.mobile-nav-link:focus-visible {
  outline: 3px solid var(--nav-cta-bg);
  outline-offset: -3px;
}
.mobile-nav-cta {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  display: block;
  text-align: center;
}
.mobile-nav-cta:hover { background: var(--accent-hover); color: #ffffff; }

@media (max-width: 760px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(
    135deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-mid) 60%,
    var(--hero-bg-end) 100%
  );
  color: var(--hero-text);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(30,64,175,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(30,64,175,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-label {
  font-family: var(--font-ui);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-cta-bg);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--hero-text);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--hero-lead);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Page hero (non-homepage) — no canvas, static gradient */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-mid) 60%,
    var(--hero-bg-end) 100%
  );
  color: var(--hero-text);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(30,64,175,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(30,64,175,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--hero-text);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--hero-lead);
  font-family: var(--font-body);
  font-size: 1.1rem;
  max-width: 680px;
  line-height: 1.7;
}

/* ─── Cards ─── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
}

.card-featured {
  border-color: var(--accent);
  border-width: 2px;
}

/* ─── Service price display ─── */
.service-price {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.service-price .price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ─── Check list ─── */
.check-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--accent-muted);
  border: 2px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Dark surface check list */
.check-list-dark li {
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.65rem 0;
}
.check-list-dark li:last-child { border-bottom: none; }
.check-list-dark .check-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Blockquote / pull quote ─── */
.pull-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  background: var(--bg-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0;
}
.pull-quote strong { color: var(--text-primary); }

/* ─── FAQ accordion ─── */
.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.15s;
  min-height: 44px;
}
.faq-question:hover { color: var(--accent); }
.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-secondary);
}
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-answer  { display: block; }

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: calc(12.5% + 1.25rem);
  right: calc(12.5% + 1.25rem);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%);
  pointer-events: none;
}
.step {
  text-align: center;
  padding: 1.5rem 1.25rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}
.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

/* ─── Sector grid ─── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.sector-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.sector-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sector-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}
.sector-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.sector-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  font-family: var(--font-body);
}

/* ─── Contact layout ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-muted);
  border: 1px solid rgba(30,64,175,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.contact-item-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.contact-item-value a {
  color: var(--accent);
  font-weight: 600;
}
.contact-item-value a:hover { color: var(--accent-hover); }

.contact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-box h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.contact-box p {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ─── Guarantee banner ─── */
.guarantee-banner {
  background: var(--accent-muted);
  border: 1px solid rgba(30,64,175,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
}
.guarantee-banner strong {
  font-family: var(--font-ui);
  font-weight: 700;
}

/* ─── CTA section ─── */
.cta-section {
  background: var(--nav-bg);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: #ffffff; margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  font-weight: 700;
  color: var(--footer-text-hi);
  font-size: 1rem;
}
.footer-brand span { color: var(--accent); }
.footer-meta {
  margin-top: 0.5rem;
  line-height: 1.6;
  font-size: 0.8rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--footer-text-hi); }
.footer-links a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child { border-bottom: none; }
  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 3rem 0 2.5rem; }
}

/* ─── Print ─── */
@media print {
  .nav, .hamburger, .mobile-nav, .theme-toggle { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  h1, h2, h3, h4 { color: #000; }
  section { padding: 1.5rem 0; background: none !important; }
  .hero, .page-hero { background: none; color: #000; padding: 1rem 0; }
  .hero h1, .hero-lead { color: #000; }
  a { color: #000; text-decoration: none; }
  .faq-answer { display: block; }
  .cta-section { background: #eee; }
  .cta-section h2, .cta-section p { color: #000; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
