/* ================================================================
   Art direction: Cybersecurity compliance SaaS → sober, restrained
   Palette: Deep navy primary, steel blue accent, near-white surfaces
   Typography: Inter (Google Fonts) — clean, technical, trustworthy
   Density: Spacious — generous whitespace signals confidence
   ================================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --color-navy:       #1E3558;
  --color-steel:      #4A7FB5;
  --color-steel-light:#6B9FD4;
  --color-bg:         #F8F9FB;
  --color-surface:    #FFFFFF;
  --color-surface-2:  #F2F5F9;
  --color-border:     #E0E6EF;
  --color-border-subtle: rgba(30, 53, 88, 0.10);
  --color-text:       #1A1A2E;
  --color-text-muted: #5A6478;
  --color-text-faint: #9AA3B2;

  /* Font */
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;

  /* Type Scale (fluid clamp) */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.25rem);
  --text-hero: clamp(2.2rem,   1rem    + 4vw,    4rem);

  /* Spacing (4px grid) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(30, 53, 88, 0.07);
  --shadow-md: 0 4px 16px rgba(30, 53, 88, 0.09);
  --shadow-lg: 0 12px 40px rgba(30, 53, 88, 0.13);

  /* Transitions */
  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-med:  260ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-max: 1100px;
  --nav-height: 64px;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--space-4));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

ul[role="list"], ol[role="list"] { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.2;
}

p, li { text-wrap: pretty; }

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(74, 127, 181, 0.22);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── SKIP LINK ────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--space-4);
  background: var(--color-navy);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: var(--space-4);
}

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

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}
.btn-primary:hover {
  background: #162843;
  border-color: #162843;
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-surface-2);
  border-color: var(--color-steel);
  color: var(--color-navy);
}

.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg);
}

/* ── SECTION SHARED STYLES ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: var(--space-3);
}

.section-heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-12);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ──────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(248, 249, 251, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--color-border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-navy);
}

.nav-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-brand-name {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}

.nav-cta {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-5);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  overflow: hidden;
  padding: var(--space-24) 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74, 127, 181, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30, 53, 88, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero .section-label {
  margin-bottom: var(--space-4);
}

.hero-heading {
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── PROBLEM STRIP ────────────────────────────────────────────── */
.problem-strip {
  padding: clamp(var(--space-16), 6vw, var(--space-24)) 0;
  background: #EEF2F8;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.problem-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── PRODUCT SECTION ──────────────────────────────────────────── */
.product-section {
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-8) var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-5);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── DIFFERENTIATORS ──────────────────────────────────────────── */
.differentiators {
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diff-card {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--transition-med);
}

.diff-card:hover {
  box-shadow: var(--shadow-sm);
}

.diff-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: var(--space-1);
}

.diff-icon svg {
  width: 100%;
  height: 100%;
}

.diff-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.diff-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── FRAMEWORKS STRIP ─────────────────────────────────────────── */
.frameworks-strip {
  padding: clamp(var(--space-16), 6vw, var(--space-24)) 0;
  background: var(--color-bg);
}

.frameworks-strip .section-header {
  margin-bottom: var(--space-8);
}

.frameworks-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-2);
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.frameworks-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}
.frameworks-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.frameworks-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.frameworks-track {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-6);
  width: max-content;
}

@media (min-width: 768px) {
  .frameworks-track {
    padding: var(--space-2) var(--space-8);
  }
}

/* Allow natural wrapping if wide enough */
@media (min-width: 1200px) {
  .frameworks-scroll-wrapper {
    overflow-x: visible;
  }
  .frameworks-track {
    width: auto;
    flex-wrap: wrap;
    max-width: var(--content-max);
    margin-inline: auto;
  }
}

.framework-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  white-space: nowrap;
  scroll-snap-align: start;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.framework-badge:hover {
  border-color: var(--color-steel);
  background: rgba(74, 127, 181, 0.05);
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-it-works {
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.timeline {
  list-style: none;
  max-width: 720px;
  position: relative;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: calc(28px - 1px);
  top: var(--space-8);
  bottom: var(--space-8);
  width: 1px;
  background: var(--color-border);
}

.timeline-step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding-bottom: var(--space-10);
  position: relative;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-steel);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-top: var(--space-3);
}

.timeline-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.timeline-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 56ch;
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: var(--color-bg);
}

.contact-inner {
  max-width: 560px;
  /* Centred layout */
  margin-inline: auto;
  text-align: center;
}

.contact-inner .section-heading {
  font-size: var(--text-xl);
}

.contact-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact-email-wrapper {
  display: flex;
  justify-content: center;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--color-steel);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.contact-email-link:hover {
  color: var(--color-steel);
  border-color: var(--color-navy);
}

/* No-JS email fallback */
.email-nojs {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.70);
  padding: var(--space-8) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-copy {
  font-size: var(--text-xs);
  font-weight: 400;
}

.footer-domain {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.40);
  font-weight: 300;
}

/* ── STAGGER ANIMATION DELAYS ─────────────────────────────────── */
.problem-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.problem-grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.problem-grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }

.features-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.features-grid .animate-on-scroll:nth-child(2) { transition-delay: 90ms; }
.features-grid .animate-on-scroll:nth-child(3) { transition-delay: 180ms; }

.diff-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.diff-grid .animate-on-scroll:nth-child(2) { transition-delay: 60ms; }
.diff-grid .animate-on-scroll:nth-child(3) { transition-delay: 120ms; }
.diff-grid .animate-on-scroll:nth-child(4) { transition-delay: 180ms; }
.diff-grid .animate-on-scroll:nth-child(5) { transition-delay: 240ms; }
.diff-grid .animate-on-scroll:nth-child(6) { transition-delay: 300ms; }

.timeline .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.timeline .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.timeline .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.timeline .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.timeline .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }

/* ── MOBILE OVERRIDES ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero {
    padding: var(--space-16) 0;
    min-height: calc(100dvh - var(--nav-height));
    align-items: center;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    letter-spacing: -0.02em;
  }

  .hero-sub {
    font-size: var(--text-base);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .section-heading {
    font-size: var(--text-xl);
  }

  .timeline::before {
    left: calc(24px - 1px);
  }

  .timeline-number {
    width: 48px;
    height: 48px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Ensure contact section is properly centered on mobile */
  .contact-inner {
    text-align: left;
  }

  .contact-email-wrapper {
    justify-content: flex-start;
  }
}

/* ── PRINT ────────────────────────────────────────────────────── */
@media print {
  .site-nav { position: static; }
  .hero { min-height: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
}


/* ── UPDATED FOOTER (company details) ────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.40);
  font-weight: 300;
  font-style: italic;
}

/* Legal / registered details */
.footer-legal {
  font-style: normal;
}

.footer-legal-name {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
}

.footer-legal-address {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.footer-legal-reg {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-reg-num {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Override old footer-inner (kept for backwards compat) */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ── CONTACT COMPANY DETAILS ──────────────────────────────────── */
.contact-company-details {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.contact-legal-name {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.contact-legal-address {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.contact-legal-reg {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* Mobile: left-align contact details on small screens */
@media (max-width: 767px) {
  .contact-company-details {
    text-align: left;
  }
}

/* ── NAV SCROLL STATE ─────────────────────────────────────────── */
.site-nav.nav-scrolled {
  box-shadow: 0 1px 12px rgba(30, 53, 88, 0.09);
}
