/* ================================================================
   DATA CYNICAL — Global Design System  v4.0
   ================================================================

   UNIVERSAL ALIGNMENT RULE (learned from services.html):
   ─────────────────────────────────────────────────────────────────
   Every section, hero, nav, and footer uses ONE inner wrapper:

     max-width: var(--cw);
     margin: 0 auto;
     padding: [vertical] var(--cp);
     width: 100%;

   The outer element (section/nav/footer) gets ZERO horizontal
   padding — only background colour and vertical rhythm.
   The inner wrapper centres everything and handles horizontal space.
   ─────────────────────────────────────────────────────────────────

   HOW TO ADD A NEW PAGE:
   1. Link styles.css + responsive.css
   2. Use standard HTML patterns below
   3. Done — alignment is automatic

   SECTION PATTERN:
   ┌──────────────────────────────────────────────────────────┐
   │ <section class="dc-section [--dark | --gray | --dark2]"> │
   │   <div class="dc-inner">                                 │
   │     content here                                         │
   │   </div>                                                 │
   │ </section>                                               │
   └──────────────────────────────────────────────────────────┘

   HERO PATTERN (all pages — home, product, service):
   ┌──────────────────────────────────────────────────────────┐
   │ <section class="dc-hero">                                │
   │   <div class="dc-hero-bg"></div>                         │
   │   <div class="dc-inner dc-hero__content">                │
   │     <span class="dc-badge">eyebrow text</span>           │
   │     <h1 class="dc-hero__title">heading</h1>              │
   │     <p  class="dc-hero__sub">subtext</p>                 │
   │     <div class="dc-hero__ctas">buttons</div>             │
   │   </div>                                                 │
   │ </section>                                               │
   └──────────────────────────────────────────────────────────┘

   NAV PATTERN:
   ┌──────────────────────────────────────────────────────────┐
   │ <nav class="site-nav">                                   │
   │   <div class="nav-inner">  ← dc-inner equivalent        │
   │     logo + links + cta                                   │
   │   </div>                                                 │
   │ </nav>                                                   │
   └──────────────────────────────────────────────────────────┘

   FOOTER PATTERN:
   ┌──────────────────────────────────────────────────────────┐
   │ <footer>                                                 │
   │   <div class="footer-inner">  ← dc-inner equivalent     │
   │     footer-top + footer-bottom                           │
   │   </div>                                                 │
   │ </footer>                                                │
   └──────────────────────────────────────────────────────────┘

   ================================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* ── Layout ── */
  --cw:   1400px;   /* max content width — every inner wrapper uses this */
  --cp:   2rem;     /* horizontal padding — every inner wrapper uses this */
  --nav-h: 64px;    /* nav height — hero margin-top + sticky offset       */

  /* ── Vertical Rhythm ── */
  --sv:   5rem;     /* section top+bottom padding — responsive.css scales  */

  /* ── Legacy aliases (backward compat with older page styles) ── */
  --container-width: var(--cw);
  --container-pad:   var(--cp);
  --nav-height:      var(--nav-h);
  --section-v:       var(--sv);
  --section-padding: var(--sv) 0;

  /* ── Colours ── */
  --c-brand:  #fdc010;
  --c-dark:   #0d1117;
  --c-dark2:  #111827;
  --c-body:   #202124;
  --c-muted:  #5f6368;
  --c-border: #e8eaed;
  --c-bg:     #f8f9fa;

  /* ── Elevation ── */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.12);

  /* ── Radius ── */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --card-radius: 24px;
  --card-padding: 1.75rem;
}

/* ── 2. RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--c-dark); } /* dark shows behind transparent nav */
body {
  font-family: 'Google Sans Text', 'DM Sans', system-ui, sans-serif;
  background: #fff; color: var(--c-body);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}

/* ── 3. THE UNIVERSAL INNER WRAPPER ──────────────────────────────
   dc-inner = the standard inner div used by every section/hero/
   nav/footer. All horizontal alignment happens here.
   ─────────────────────────────────────────────────────────────── */
.dc-inner {
  width: 100%;
  max-width: var(--cw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--cp);
  padding-right: var(--cp);
}

/* Aliases — dc-container, pd-container, site-container all point
   to the same rule so older page code keeps working              */
.dc-container,
.pd-container,
.site-container {
  width: 100%;
  max-width: var(--cw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--cp);
  padding-right: var(--cp);
}

/* ── 4. SECTION SYSTEM ─────────────────────────────────────────── */
/* Outer sections: zero horizontal padding, only vertical rhythm  */
.dc-section { padding: var(--sv) 0; }
.dc-section--gray  { background: var(--c-bg); }
.dc-section--dark  { background: var(--c-dark);  color: #fff; }
.dc-section--dark2 { background: var(--c-dark2); color: #fff; }

/* Legacy aliases */
.pd-section       { padding: var(--sv) 0; }
.pd-section.gray  { background: var(--c-bg); }
.pd-section.dark  { background: var(--c-dark);  color: #fff; }
.pd-section.dark2 { background: var(--c-dark2); color: #fff; }

/* ── 5. HERO SYSTEM ────────────────────────────────────────────── */
/*
  THE ALIGNMENT RULE (from services.html reference):
  The hero outer is full-bleed (no horizontal padding).
  The hero inner uses dc-inner pattern:
    max-width: var(--cw); margin: 0 auto;
    padding: 5rem var(--cp);
    width: 100%;
  This makes nav-logo, hero-content, and section-content
  all share the SAME left edge at every viewport width.
*/
.dc-hero {
  margin-top: 0;
  background: var(--c-dark);
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dc-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
/* dc-hero__inner = dc-inner + hero vertical padding */
.dc-hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 5rem var(--cp) 4.5rem;
}

/* Hero typography */
.dc-hero__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .9rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.dc-hero__title {
  font-family: 'Google Sans Display', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin-bottom: 1.25rem;
  max-width: 820px;
}
.dc-hero__title strong { font-weight: 700; }
.dc-hero__sub {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 640px; margin-bottom: 2.25rem;
}
.dc-hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Policy page hero — lighter, no min-height */
.page-hero {
  margin-top: 0; background: var(--c-dark);
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero-inner {
  width: 100%; max-width: var(--cw);
  margin: 0 auto; padding: 0 var(--cp);
}
.page-breadcrumb {
  font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: .75rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--c-brand); }
.page-hero h1 {
  font-family: 'Google Sans Display', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400;
  color: #fff; margin-bottom: .5rem;
}
.page-hero p { font-size: .95rem; color: rgba(255,255,255,.55); max-width: 600px; }

/* ── 6. NAVIGATION ─────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  /* Transparent at top — blends into hero */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background      .45s ease,
    backdrop-filter .45s ease,
    border-color    .45s ease,
    box-shadow      .45s ease;
}
/* Apple / Linear glass effect on scroll */
nav.site-nav.scrolled {
  background: linear-gradient(
    to bottom,
    rgba(20,24,31,.65),
    rgba(20,24,31,.35)
  );
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
}
/* nav-inner = dc-inner applied as flex row for nav layout */
.nav-inner {
  width: 100%; max-width: var(--cw);
  margin: 0 auto; padding: 0 var(--cp);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  display: block; padding: 0 .9rem;
  height: var(--nav-h); line-height: var(--nav-h);
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.7); text-decoration: none;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; border-bottom-color: var(--c-brand); }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown-arrow { width: 10px; height: 10px; transition: transform .2s; opacity: .5; }
.nav-has-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  position: absolute; top: var(--nav-h); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--c-brand);
  border-radius: 0 0 12px 12px;
  min-width: 300px; padding: .75rem 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 9999;
}
.nav-has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item {
  display: flex !important; align-items: center; gap: 1rem;
  padding: .85rem 1.5rem; height: auto !important; line-height: 1.4 !important;
  text-decoration: none; color: rgba(255,255,255,.75) !important;
  border-bottom: none !important; transition: background .15s !important;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,.06); color: #fff !important; }
.nav-dd-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-dd-icon.red   { background: rgba(220,38,38,.15); }
.nav-dd-icon.teal  { background: rgba(8,145,178,.15); }
.nav-dd-icon.green { background: rgba(5,150,105,.15); }
.nav-dd-name { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: .1rem; }
.nav-dd-desc { font-size: .75rem; color: rgba(255,255,255,.45); }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,.07); margin: .5rem 0; }
.nav-dd-all {
  display: block !important; text-align: center; letter-spacing: .04em;
  font-size: .75rem !important; font-weight: 600 !important;
  color: var(--c-brand) !important; height: auto !important;
  line-height: 1 !important; padding: .65rem 1.25rem !important;
  border-bottom: none !important;
}
.nav-dd-all:hover { color: #e5b000 !important; }
.nav-cta {
  padding: .55rem 1.4rem; background: var(--c-brand); color: var(--c-dark);
  font-size: .875rem; font-weight: 600; text-decoration: none;
  border-radius: 100px; white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.nav-cta:hover { background: #e5b000; }

/* ── 7. MOBILE NAV ─────────────────────────────────────────────── */
.nav-menu-toggle {
  display: none; width: 40px; height: 40px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; flex-direction: column; gap: 5px;
  padding: 10px; transition: background .15s;
  position: relative;
}
.nav-menu-toggle:hover { background: rgba(255,255,255,.15); }

/* Three animated bars */
.nav-menu-toggle .bar {
  display: block; width: 18px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}

/* Open state — top bar rotates to \, bottom bar rotates to / , middle fades */
.nav-menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-toggle.open .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,.5); opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.nav-mobile-overlay.show { opacity: 1; visibility: visible; }
.nav-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
  width: min(85vw, 320px); background: var(--c-dark2); overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
}
.nav-mobile-panel.open { transform: translateX(0); }
.mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem; font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.75); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.mobile-link:hover, .mobile-link.active { background: rgba(255,255,255,.06); color: #fff; }
.mobile-sub-menu { display: none; background: rgba(0,0,0,.2); }
.mobile-sub-menu.show { display: block; }
.mobile-sub-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.75rem .85rem 2.5rem; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.03); transition: background .15s;
}
.mobile-sub-item:hover { background: rgba(255,255,255,.04); }
.mobile-sub-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mobile-sub-icon.red   { background: rgba(220,38,38,.15); }
.mobile-sub-icon.teal  { background: rgba(8,145,178,.15); }
.mobile-sub-icon.green { background: rgba(5,150,105,.15); }
.mobile-sub-name { font-size: .85rem; font-weight: 600; color: #fff; }
.mobile-sub-desc { font-size: .7rem; color: rgba(255,255,255,.4); }
.mobile-cta {
  display: block; margin: 1.5rem;
  padding: .85rem; background: var(--c-brand); color: var(--c-dark);
  font-size: .9rem; font-weight: 600; text-align: center;
  text-decoration: none; border-radius: 100px;
}
.mobile-arrow-icon { transition: transform .2s; }
.mobile-arrow-icon.rotated { transform: rotate(90deg); }

/* ── 8. TYPOGRAPHY ─────────────────────────────────────────────── */
.section-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: .75rem; color: var(--c-brand);
}
.pd-h2 {
  font-family: 'Google Sans Display', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.15; color: var(--c-body); margin-bottom: 1rem;
}
.pd-section.dark  .pd-h2,
.pd-section.dark2 .pd-h2,
.dc-section--dark  .pd-h2,
.dc-section--dark2 .pd-h2 { color: #fff; }
.pd-lead {
  font-size: 1rem; color: #3c4043; line-height: 1.75;
  max-width: 680px; margin-bottom: 2rem;
}
.pd-section.dark  .pd-lead,
.pd-section.dark2 .pd-lead,
.dc-section--dark  .pd-lead,
.dc-section--dark2 .pd-lead { color: rgba(255,255,255,.62); }

/* ── 9. BUTTONS ────────────────────────────────────────────────── */
.btn-primary, .btn-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; background: var(--c-brand); color: var(--c-dark);
  font-size: .9rem; font-weight: 600; text-decoration: none;
  border-radius: 100px; border: none; cursor: pointer;
  transition: background .15s, transform .15s;
}
.btn-primary:hover, .btn-blue:hover { background: #e5b000; transform: translateY(-1px); }
.btn-secondary, .btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; background: transparent; color: #1a73e8;
  font-size: .9rem; font-weight: 500; text-decoration: none;
  border: 1.5px solid #1a73e8; border-radius: 100px;
  transition: background .15s, transform .15s;
}
.btn-secondary:hover, .btn-outline:hover { background: #e8f0fe; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; background: transparent;
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 100px;
  transition: background .15s, border-color .15s, transform .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); transform: translateY(-1px); }

/* ── 10. SHARED COMPONENTS ─────────────────────────────────────── */

/* How-it-works */
.hiw-steps { display: flex; position: relative; margin-top: 2.5rem; }
.hiw-steps::before {
  content: ''; position: absolute; top: 22px;
  left: 3rem; right: 3rem; height: 1px;
  background: linear-gradient(90deg, rgba(253,192,16,.45), rgba(253,192,16,.1));
}
.hiw-step { flex: 1; text-align: center; padding: 0 1rem; }
.hiw-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(253,192,16,.12); border: 1.5px solid rgba(253,192,16,.35);
  color: var(--c-brand); font-family: 'Google Sans Display', sans-serif;
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.hiw-step h3 { font-size: .875rem; font-weight: 600; color: #fff; margin-bottom: .35rem; }
.hiw-step p  { font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.6; }

/* Why-grid */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.why-card {
  padding: 1.75rem; background: #fff;
  border: 1px solid var(--c-border); border-radius: var(--radius-md);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(253,192,16,.1); color: var(--c-brand); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-title { font-size: .95rem; font-weight: 600; color: var(--c-body); margin-bottom: .4rem; }
.why-body  { font-size: .85rem; color: var(--c-muted); line-height: 1.6; }

/* Stat bar — below hero on product pages */
.hero-stat-bar { background: var(--c-dark2); border-bottom: 1px solid rgba(255,255,255,.06); padding: 1.1rem 0; }
.hero-stat-bar .dc-inner,
.hero-stat-bar .dc-container { display: flex; gap: 3.5rem; flex-wrap: wrap; align-items: center; }
.hero-stat-item { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: rgba(255,255,255,.6); white-space: nowrap; }
.hero-stat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* Trust bar — homepage */
.trust-bar { background: var(--c-bg); border-bottom: 1px solid var(--c-border); padding: 1rem 0; }
.trust-bar-inner {
  width: 100%; max-width: var(--cw); margin: 0 auto; padding: 0 var(--cp);
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.trust-label { font-size: .72rem; color: var(--c-muted); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; flex-shrink: 0; }
.trust-items { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.trust-item  { font-size: .82rem; color: #3c4043; font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.trust-dot   { width: 6px; height: 6px; border-radius: 50%; background: #1a73e8; flex-shrink: 0; }

/* ── 11. POLICY PAGES ──────────────────────────────────────────── */
.policy-layout {
  width: 100%; max-width: var(--cw); margin: 0 auto;
  padding: 5rem var(--cp);
  display: grid; grid-template-columns: 220px 1fr; gap: 5rem; align-items: start;
}
div.policy-toc { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
div.policy-toc h4 { font-size: .7rem; font-weight: 600; color: var(--c-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.toc-link { display: block; font-size: .82rem; color: var(--c-muted); text-decoration: none; padding: .45rem 0 .45rem .85rem; border-left: 2px solid var(--c-border); margin-bottom: .2rem; transition: color .15s, border-color .15s; }
.toc-link:hover, .toc-link.active { color: #1a73e8; border-left-color: #1a73e8; }
.policy-body { max-width: 900px; }
.policy-meta { font-size: .8rem; color: var(--c-muted); margin-bottom: 2.5rem; padding: 1rem 1.25rem; background: var(--c-bg); border-left: 3px solid var(--c-brand); border-radius: 0 8px 8px 0; }
.policy-section { margin-bottom: 3.5rem; scroll-margin-top: calc(var(--nav-h) + 1.5rem); }
.policy-section h2 { font-family: 'Google Sans Display', sans-serif; font-size: 1.25rem; font-weight: 500; color: var(--c-body); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--c-border); }
.policy-section p   { font-size: .9rem; color: #3c4043; line-height: 1.75; margin-bottom: .85rem; }
.policy-section ol,
.policy-section ul  { padding-left: 1.5rem; margin-bottom: .75rem; }
.policy-section li  { font-size: .9rem; color: #3c4043; line-height: 1.75; margin-bottom: .4rem; }
.policy-section ol li { list-style: decimal; }
.policy-section ul li { list-style: disc; }
.policy-section a   { color: #1a73e8; text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.caps-notice { background: #fff8e1; border: 1px solid #fdd835; border-radius: 8px; padding: 1.25rem; margin-top: 1rem; }
.caps-notice p { font-size: .8rem; color: #5f4c00; line-height: 1.65; font-weight: 500; }

/* ── 12. FOOTER ────────────────────────────────────────────────── */
footer { background: #202124; color: rgba(255,255,255,.6); padding: 4rem 0 0; }
/* footer-inner = dc-inner for footer */
.footer-inner {
  width: 100%; max-width: var(--cw); margin: 0 auto; padding: 0 var(--cp);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 4rem; padding-bottom: 3rem; }
.footer-brand { margin-bottom: .75rem; }
.footer-brand img { height: 52px; width: auto; display: block; }
.footer-tagline { font-size: .85rem; line-height: 1.8; margin-bottom: 1rem; color: rgba(255,255,255,.5); }
.footer-col h4 { font-size: .7rem; font-weight: 600; color: #fff; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: .6rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
/* footer-bottom shares same max-width alignment */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%; max-width: var(--cw); margin: 0 auto;
  padding: 1.5rem var(--cp) 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; line-height: 1.4; }
.footer-contact-item svg { flex-shrink: 0; margin-top: .1rem; color: rgba(255,255,255,.4); }
.footer-contact-item a { color: #8ab4f8; text-decoration: none; display: inline !important; margin-bottom: 0 !important; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item span { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-social { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: .5rem; align-items: center; }
.footer-social a { display: inline-flex !important; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: rgba(255,255,255,.6); text-decoration: none !important; margin-bottom: 0 !important; transition: background .15s, color .15s; }
.footer-social a:hover { background: rgba(255,255,255,.15); color: #fff; }
/* Override col link style for social icons */
.footer-col .footer-social a { display: inline-flex !important; margin-bottom: 0 !important; }

/* ── 13. MISC ───────────────────────────────────────────────────── */
canvas,
.hero-bg, .hero-visual,
.dh-hero-bg, .ns-hero-bg,
.foi-hero-bg, .foi-hero-visual,
.svc-hero-bg, .svc-hero-grid { pointer-events: none; }
