/* ==========================================================================
   AYRUS Technologies — Website Stylesheet
   Brand system per Master BRD: blue structural, orange action, gold highlight.
   Tokens: Navy #071A3A | Blue #075FC9 | Deep Blue #0B3D91 | Orange #FF5A00
           Gold #FFC400 | White #FFFFFF | Ice #F4F8FC | Pale #EAF3FF
           Graphite #1D2733 | Slate #667085 | Border #D9E2EC
   ========================================================================== */

/* ---------- Tokens & reset ---------- */
:root {
  --navy: #071A3A;
  --blue: #075FC9;
  --blue-deep: #0B3D91;
  --orange: #CC4800;
  --orange-dark: #A33900;
  --gold: #FFC400;
  --white: #FFFFFF;
  --ice: #F4F8FC;
  --pale: #EAF3FF;
  --graphite: #1D2733;
  --slate: #667085;
  --border: #D9E2EC;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Manrope", "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(7, 26, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(7, 26, 58, 0.10);
  --container: 1440px;
  --header-h: 74px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: 0.45em; }

hr { border: 0; border-top: 1px solid var(--border); margin: 2.5em 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 18px;
  z-index: 200; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section { padding: 56px 0; }
.section--ice { background: var(--ice); }
.section--pale { background: var(--pale); }
.section--navy { background: var(--navy); color: #C9D6EA; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 32px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold);
  flex: none;
}
.section--navy .eyebrow { color: var(--gold); }

.lede { font-size: 1.13rem; color: var(--slate); }
.section--navy .lede { color: #A9BBD6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.2;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }


.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); }

.btn--accent { background: var(--orange); color: #fff; }
.btn--accent:hover { background: var(--orange-dark); }

.btn--secondary {
  background: transparent; color: var(--blue);
  border-color: var(--blue);
}
.btn--secondary:hover { background: var(--pale); }

.btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn .btn-arrow { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img { width: 172px; height: auto; transform: translateY(2px); }

.nav-toggle {
  display: none; align-items: center; justify-content: center; gap: 8px;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 12px; font: 600 0.9rem var(--font-body); color: var(--navy);
  cursor: pointer; flex-shrink: 0;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--ice); border-color: var(--blue);
}
.nav-toggle .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle .bars span {
  width: 18px; height: 2px; background: var(--navy); border-radius: 1px;
}

.primary-nav { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; height: 100%; }
.primary-nav > li { display: flex; align-items: center; list-style: none; position: relative; margin: 0; height: 100%; }
.primary-nav ul { margin: 0; padding: 0; list-style: none; }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: 6px;
  font: 500 0.95rem var(--font-body); color: var(--navy);
  text-decoration: none; white-space: nowrap; line-height: normal;
}
.nav-link:hover { color: var(--blue); background: var(--pale); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--blue); font-weight: 600; }
.nav-link .caret { transition: transform .18s ease; }

.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow-md); min-width: 220px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 8px 12px; border-radius: 6px;
  font: 500 0.9rem var(--font-body); color: var(--navy); text-decoration: none;
}
.dropdown a:hover { background: var(--ice); color: var(--blue); text-decoration: none; }
.dropdown a strong { display: block; font-weight: 600; color: var(--navy); }
.dropdown a span { display: block; font-size: 0.8rem; color: var(--slate); margin-top: 1px; }

.header-cta { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta .btn { border-radius: 6px; }

@media (min-width: 1061px) and (max-width: 1250px) {
  .primary-nav { gap: 2px; }
  .nav-link { padding: 6px 8px; font-size: 0.9rem; }
  .header-inner { gap: 12px; }
}

@media (min-width: 1061px) {
  .drawer-header,
  .nav-section-title {
    display: none !important;
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; }
  .brand { flex: none; order: 1; }
  .header-cta { flex: none; order: 3; }
  .header-inner nav { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex: 1; 
    order: 2; 
    margin: 0 24px;
  }
  .nav-link { 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 0.05em; 
  }
}

/* ---------- Mobile off-canvas drawer nav ---------- */
@media (max-width: 1060px) {
  .header-inner {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .brand img {
    width: 145px;
    height: auto;
  }

  .header-cta {
    display: flex !important;
    align-items: center;
    margin: 0;
  }
  .header-cta .btn {
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
    background: #FFC400;
    color: #071A3A;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  .header-cta .btn:hover {
    background: #e6b000;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle .bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .nav-toggle .bars span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .header-inner nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  /* Stacking Context Fix: Elevate site-header when nav is open */
  body.nav-open .site-header {
    z-index: 10000 !important;
  }
  body.nav-open {
    overflow: hidden !important;
  }

  /* Backdrop Overlay (Behind drawer, dims page content) */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  /* Slide-Out Drawer Panel (Bright White, ON TOP of backdrop) */
  .primary-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 84vw;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: #FFFFFF !important;
    color: #071A3A !important;
    box-shadow: -10px 0 36px rgba(7, 26, 58, 0.2);
    padding: 20px 24px 30px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    z-index: 9999 !important;
    pointer-events: auto !important;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .primary-nav.is-open {
    transform: translateX(0) !important;
  }

  /* Drawer Header */
  .drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
  }
  .drawer-brand img {
    width: 130px;
    height: auto;
    filter: none !important;
  }
  .drawer-close {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    color: #071A3A;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .drawer-close:hover {
    background: #075FC9;
    color: #FFFFFF;
    border-color: #075FC9;
  }

  /* Navigation Section Title */
  .nav-section-title {
    display: block !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748B;
    margin: 4px 0 12px;
  }

  /* Nav Links in Drawer */
  .primary-nav > li {
    height: auto;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid #F1F5F9;
    margin: 0;
  }
  .nav-link {
    padding: 13px 6px;
    font-size: 1.02rem;
    font-weight: 600;
    color: #071A3A !important;
    justify-content: space-between;
    width: 100%;
    border-radius: 6px;
    background: transparent !important;
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
  }
  .nav-link:hover, .nav-link:focus {
    color: #075FC9 !important;
    background: #F8FAFC !important;
    padding-left: 10px;
  }
  .nav-link .caret {
    color: #64748B;
    transition: transform 0.22s ease, color 0.22s ease;
  }
  .has-dropdown.is-open > .nav-link {
    color: #075FC9 !important;
  }
  .has-dropdown.is-open > .nav-link .caret {
    transform: rotate(180deg);
    color: #075FC9;
  }

  /* Dropdown Sub-menu inside Drawer */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid #075FC9;
    border-radius: 0;
    min-width: 0;
    margin: 4px 0 10px 8px;
    padding: 2px 0 2px 8px;
    background: #F8FAFC;
  }
  .has-dropdown .dropdown { display: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown a {
    color: #334155 !important;
    padding: 9px 12px;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.18s ease, color 0.18s ease;
  }
  .dropdown a:hover {
    color: #075FC9 !important;
    background: #E2E8F0 !important;
  }

  /* Mobile CTA inside Drawer bottom */
  .primary-nav > li.mobile-cta {
    display: flex !important;
    margin-top: 20px;
    padding: 16px 0 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: none;
  }
  .mobile-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    background: #075FC9 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(7, 95, 201, 0.25);
    transition: background-color 0.2s ease;
  }
  }
}

@media (max-width: 480px) {
  .brand img { width: 130px; }
  .header-cta .btn { padding: 6px 10px; font-size: 0.76rem; }
}
.primary-nav > li.mobile-cta { display: none; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--navy);
  background-image: 
    radial-gradient(ellipse at top right, #0F2D5E 0%, var(--navy) 70%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  color: #C9D6EA;
  padding: 64px 0 64px;
}
.hero::after {
  /* thin gold horizon rule echoing the logo swoosh */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.8;
  pointer-events: none;
}
.hero-cable-canvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  display: none;
}
.hero-inner { width: 100%; position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; font-size: clamp(2.35rem, 4.5vw, 3.6rem); line-height: 1.15; }
.hero h1 .accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
html.js .hero h1 .accent::after {
  transform: scaleX(1);
}

.hero .lede { color: #A9BBD6; max-width: 620px; font-size: 1.22rem; line-height: 1.65; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin-top: 26px; font-size: 0.86rem; color: #7E92B4;
  display: flex; align-items: center; gap: 8px;
}
.hero-note svg { flex: none; }

/* hero schematic panel */
.hero-panel { position: relative; transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-panel svg { width: 100%; height: auto; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background-color: var(--navy);
  background-image: 
    radial-gradient(ellipse at top right, #0F2D5E 0%, var(--navy) 75%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  color: #C9D6EA; padding: 48px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.page-hero p { max-width: 720px; margin: 0; color: #A9BBD6; font-size: 1.08rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 16px 0 0; font-size: 0.85rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; gap: 6px; color: var(--slate); }
.breadcrumbs li + li::before { content: "/"; color: var(--border); }
.breadcrumbs a { color: var(--blue); }
.breadcrumbs [aria-current="page"] { color: var(--slate); }

/* ---------- Capability bar (integrated inside Hero) ---------- */
.hero-capbar {
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.capbar-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}
.capbar-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(2, 8, 20, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
}
.capbar-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(7, 95, 201, 0.65);
  box-shadow: 0 12px 28px rgba(2, 8, 20, 0.45);
}
.capbar-item svg {
  flex: none;
  color: #38BDF8;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.capbar-item:hover svg {
  transform: scale(1.12) translateY(-1px);
}
.capbar-item .cap-name {
  font: 700 0.92rem var(--font-head);
  color: #FFFFFF;
  line-height: 1.3;
}
.capbar-item .cap-sub {
  font-size: 0.78rem;
  color: #A9BBD6;
  margin-top: 2px;
}
@media (max-width: 1060px) {
  .capbar-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .capbar-inner {
    grid-template-columns: 1fr;
  }
  .capbar-item {
    padding: 14px 16px;
  }
}

/* ---------- About snapshot ---------- */
.about-snapshot { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.about-facts { margin: 26px 0 30px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-facts li {
  display: flex; gap: 10px; margin: 0; font-size: 0.95rem;
  padding: 8px 12px; border-radius: 8px; transition: background-color 0.2s ease;
}
.about-facts li:hover { background: var(--ice); }
.about-facts svg { flex: none; margin-top: 3px; color: var(--orange); transition: transform 0.2s ease; }
.about-facts li:hover svg { transform: scale(1.15); }

.mark-panel {
  position: relative; border-radius: var(--radius);
  background: var(--ice);
  border: 1px solid var(--border);
  padding: 48px 40px; text-align: center; overflow: hidden;
  max-width: 760px; margin: 0 auto;
  box-shadow: 0 8px 24px rgba(7,26,58,0.06);
}
.mark-panel img { width: 190px; margin: 0 auto 18px; }
.mark-panel .mark-caption { font-size: 0.85rem; color: var(--slate); max-width: 300px; margin: 0 auto; }
.mark-panel .ray {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: var(--gold); opacity: 0.5;
  transform: rotate(24deg);
}

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.service-card {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px 28px; position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(7, 26, 58, 0.05);
  transition: border-color .3s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  opacity: 0; transition: opacity .25s ease;
}
.service-card:hover {
  border-color: rgba(7, 95, 201, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(7, 26, 58, 0.12);
  background: #FFFFFF;
}
.service-card:hover::before { opacity: 1; }
.service-card .icon-tile {
  width: 52px; height: 52px; border-radius: 11px;
  background: var(--pale); color: var(--blue);
  display: grid; place-items: center; flex: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
}
.service-card:hover .icon-tile {
  transform: scale(1.08) translateY(-2px);
  background: var(--pale);
  color: var(--blue-deep);
}
.service-card h3 { margin: 0; }
.service-card p { color: var(--slate); font-size: 0.95rem; margin: 0; flex: 1; }
.service-card .card-link { font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 7px; }
.service-card .card-link svg { transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Process / workflow ---------- */
.process { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.process-step {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px; z-index: 1;
  box-shadow: 0 4px 14px rgba(7, 26, 58, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(7, 26, 58, 0.1);
  border-color: rgba(7, 95, 201, 0.35);
}
.process-step .step-no {
  font-family: var(--font-head); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.1em; color: var(--orange); display: block; margin-bottom: 10px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; color: var(--slate); margin: 0; }
@media (max-width: 980px) { .process { grid-template-columns: 1fr; } }

/* ---------- Quality band (navy + gold) ---------- */
.quality-band {
  background-color: var(--navy);
  background-image: 
    radial-gradient(ellipse at center, #0B2B5E 0%, var(--navy) 80%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
}
.quality-band .q-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: 40px; align-items: center; }
.quality-band .q-item {
  display: flex; gap: 16px; padding: 18px 12px; border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; transition: background-color 0.25s ease;
}
.quality-band .q-item:hover { background: rgba(255,255,255,0.04); }
.quality-band .q-item:last-child { border-bottom: 0; }
.quality-band .q-item svg { flex: none; color: var(--gold); margin-top: 3px; transition: transform 0.25s ease; }
.quality-band .q-item:hover svg { transform: scale(1.12); }
.quality-band .q-item h3 { font-size: 1.02rem; margin: 0 0 4px; }
.quality-band .q-item p { margin: 0; color: #A9BBD6; font-size: 0.93rem; }

/* ---------- Industries ---------- */
.industry-tile {
  border: 1px solid var(--border); border-radius: var(--radius); background: #fff;
  padding: 26px 24px; box-shadow: 0 4px 14px rgba(7,26,58,0.04);
  transition: border-color .25s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-tile:hover { border-color: rgba(7,95,201,0.35); transform: translateY(-5px); box-shadow: 0 14px 30px rgba(7, 26, 58, 0.1); }
.industry-tile .icon-tile {
  width: 46px; height: 46px; border-radius: 10px; background: var(--pale);
  color: var(--blue); display: grid; place-items: center; margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.industry-tile:hover .icon-tile { transform: scale(1.1) translateY(-2px); }
.industry-tile h3 { font-size: 1.02rem; margin-bottom: 6px; }
.industry-tile p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background-color: var(--navy);
  background-image: 
    radial-gradient(ellipse at top right, #0F2D5E 0%, var(--navy) 70%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  color: #C9D6EA; border-radius: 16px;
  padding: 40px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 36px; flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(7,26,58,0.2);
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p { margin: 0; color: #A9BBD6; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Form ---------- */
.enquiry {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 40px; align-items: start;
}
.enquiry-info .contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(7,26,58,.08); }
.enquiry-info .contact-line:last-of-type { border-bottom: 0; }
.enquiry-info .contact-line svg { flex: none; color: var(--blue); margin-top: 4px; }
.enquiry-info .contact-line .label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }
.enquiry-info .contact-line .val { font-weight: 600; color: var(--navy); }

.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 36px; box-shadow: 0 12px 32px rgba(7, 26, 58, 0.07);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.form-card:hover {
  box-shadow: 0 16px 40px rgba(7, 26, 58, 0.1);
  border-color: rgba(7, 95, 201, 0.3);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font: 600 0.87rem var(--font-body); color: var(--navy); }
.form-field .optional { color: var(--slate); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  font: 400 0.95rem var(--font-body); color: var(--graphite);
  border: 1px solid var(--border); border-radius: 9px; padding: 11px 13px;
  background: #fff; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7,95,201,.14), 0 2px 6px rgba(7,26,58,0.04);
  transform: translateY(-1px);
}
.form-field .error-msg { display: none; font-size: 0.8rem; color: #C0392B; font-weight: 500; }
.form-field.is-invalid input, .form-field.is-invalid select, .form-field.is-invalid textarea { border-color: #C0392B; }
.form-field.is-invalid .error-msg { display: block; }
.form-note { font-size: 0.8rem; color: var(--slate); margin: 14px 0 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  display: none; text-align: center; padding: 28px 10px;
}
.form-success.is-shown { display: block; }
.form-success .ok-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pale); color: var(--blue);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.form-success h3 { margin-bottom: 6px; }
.form-success p { color: var(--slate); font-size: 0.95rem; }

@media (max-width: 900px) {
  .enquiry { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-panel { max-width: 520px; }
  .about-snapshot, .quality-band .q-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; width: 100%; max-width: none; }
.faq-item {
  border: 1px solid var(--border); border-radius: 11px; background: #fff; overflow: hidden;
  box-shadow: 0 2px 8px rgba(7, 26, 58, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover { border-color: rgba(7, 95, 201, 0.3); box-shadow: 0 4px 14px rgba(7, 26, 58, 0.06); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font: 700 0.98rem var(--font-head); color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; color: var(--blue); transition: transform .25s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--slate); font-size: 0.95rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Article / prose ---------- */
.prose { max-width: 1200px; }
.prose h2 { font-size: 1.55rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.18rem; margin-top: 1.5em; }
.prose ul li::marker { color: var(--orange); }
.prose .article-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.85rem; color: var(--slate); margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.prose .article-meta span { display: inline-flex; align-items: center; gap: 7px; }

.callout {
  background: var(--pale); border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 1.6em 0;
  font-size: 0.96rem; box-shadow: 0 4px 12px rgba(7, 26, 58, 0.03);
}
.callout strong { color: var(--navy); }

.article-card {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: 0 4px 14px rgba(7,26,58,0.04);
  transition: border-color .25s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-card:hover { border-color: rgba(7,95,201,0.4); transform: translateY(-5px); box-shadow: 0 14px 30px rgba(7, 26, 58, 0.1); }
.article-card .tag {
  align-self: flex-start; font: 600 0.72rem var(--font-body); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); background: var(--pale);
  border-radius: 999px; padding: 4px 12px;
}
.article-card h3 { margin: 0; font-size: 1.08rem; }
.article-card p { color: var(--slate); font-size: 0.92rem; margin: 0; flex: 1; }
.article-card .meta { font-size: 0.8rem; color: var(--slate); }
.article-card--planned { opacity: .78; border-style: dashed; }
.article-card--planned:hover { transform: none; box-shadow: none; border-color: var(--border); }

/* ---------- Spec table ---------- */
.spec-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(7,26,58,0.03); }
table.spec-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.spec-table th { font: 700 0.82rem var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); background: var(--ice); }
.spec-table td { color: var(--graphite); }
.spec-table tr:hover td { background: #F4F8FC; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 40px; align-items: stretch; }
.address-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 34px;
  box-shadow: 0 4px 16px rgba(7,26,58,0.05); transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.address-card:hover { box-shadow: 0 12px 28px rgba(7,26,58,0.09); transform: translateY(-3px); }
.address-card h3 { display: flex; align-items: center; gap: 10px; }
.map-card {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  background: var(--ice);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 56px 30px; text-align: center;
  box-shadow: 0 4px 16px rgba(7,26,58,0.05); transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.map-card:hover { box-shadow: 0 12px 28px rgba(7,26,58,0.09); transform: translateY(-3px); }
.map-card svg { color: var(--blue); }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #fff; color: var(--slate); font-size: 0.92rem; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 48px 0 32px; }
.footer-brand img { width: 176px; margin-bottom: 16px; }
.footer-brand .wordmark { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: 0.02em; }
.footer-brand .wordmark small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.34em; color: var(--blue); text-transform: uppercase; margin-top: 4px; }
.footer-brand p { margin: 18px 0 0; max-width: 320px; font-size: 0.9rem; }
.site-footer h4 { color: var(--navy); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 18px; font-family: var(--font-body); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: var(--graphite); text-decoration: none; transition: color 0.18s ease; }
.site-footer a:hover { color: var(--blue); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; color: var(--blue); margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom .inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; font-size: 0.84rem; }
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Misc ---------- */
.page-content { padding: 48px 0 56px; }
.page-content .prose { margin-inline: auto; }

.sitemap-page ul { list-style: none; padding: 0; }
.sitemap-page .sitemap-section { margin-bottom: 38px; }
.sitemap-page .sitemap-section h2 { font-size: 1.15rem; border-bottom: 2px solid var(--pale); padding-bottom: 10px; }
.sitemap-page li { padding: 7px 0; border-bottom: 1px solid var(--ice); }
.sitemap-page li a { display: inline-flex; align-items: center; gap: 8px; }

.legal-prose { max-width: 780px; margin-inline: auto; }
.legal-prose h2 { font-size: 1.25rem; margin-top: 2em; }

.status-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--ice); border: 1px solid var(--border);
  border-radius: 11px; padding: 18px 20px; font-size: 0.9rem; color: var(--slate);
  box-shadow: 0 4px 12px rgba(7,26,58,0.03);
}
.status-note svg { flex: none; color: var(--blue); margin-top: 2px; }

.tag-line { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font: 600 0.78rem var(--font-body); color: var(--navy);
  background: var(--pale); border: 1px solid #CFE1F8;
  padding: 5px 13px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .hero-panel { display: none; }
  body { font-size: 12pt; }
}

/* ==========================================================================
   v2 additions: photography, slideshow, scroll-reveal animations
   ========================================================================== */

/* ---------- Scroll reveal (JS-gated: hidden only when JS is active) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(0.16, 1, 0.3, 1), transform .65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
html.js .reveal-d1 { transition-delay: .08s; }
html.js .reveal-d2 { transition-delay: .16s; }
html.js .reveal-d3 { transition-delay: .24s; }
html.js .reveal-d4 { transition-delay: .32s; }

/* ---------- Hero slideshow ---------- */
.hero-slideshow {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 60px rgba(2,8,20,.45);
  aspect-ratio: 16 / 10;
  background: #061530;
}
.hero-slideshow .slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
}
.hero-slideshow .slide.is-active { opacity: 1; }
.hero-slideshow .slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slideshow:hover .slide.is-active img {
  transform: scale(1.03);
}
.hero-slideshow .slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 24px 16px;
  background: linear-gradient(180deg, transparent, rgba(7,26,58,.88));
  color: #E7EEF8; font-size: 0.88rem; line-height: 1.45;
}
.hero-slideshow .slide-caption strong { color: #fff; display: block; font-size: 0.95rem; margin-bottom: 2px; }
.slideshow-controls {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: space-between;
  padding: 0 14px; pointer-events: none;
}
.slideshow-controls button {
  pointer-events: auto; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(7,26,58,.55); color: #fff;
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.slideshow-controls button:hover { background: rgba(7,95,201,.85); border-color: transparent; transform: scale(1.08); }
@media (max-width: 900px) { .hero-slideshow { aspect-ratio: 4/3; } }

/* ---------- Photo figures ---------- */
figure.photo { margin: 0; overflow: hidden; border-radius: var(--radius); }
figure.photo img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
figure.photo:hover img { transform: scale(1.04); }
figure.photo figcaption {
  font-size: 0.82rem; color: var(--slate); padding-top: 10px;
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
figure.photo figcaption::before {
  content: ""; width: 16px; height: 2px; background: var(--gold);
  flex: none; margin-top: 8px;
}
.photo-frame {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(7,26,58,0.08);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-frame:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(7,26,58,0.13); }

/* ---------- Split media + text ---------- */
.media-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: center; }
.media-split--rev .media-split-media { order: 2; }
@media (max-width: 900px) {
  .media-split { grid-template-columns: 1fr; gap: 34px; }
  .media-split--rev .media-split-media { order: 0; }
}

/* ---------- Photo gallery ---------- */
.photo-grid { display: grid; gap: 20px; }
.photo-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.photo-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.photo-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.photo-grid figure {
  margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  background: #fff; position: relative;
  box-shadow: 0 4px 14px rgba(7,26,58,0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(7,26,58,0.14);
}
.photo-grid figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.photo-grid figure:hover img { transform: scale(1.045); }
.photo-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 12px; font-size: 0.82rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7,26,58,.88));
}
@media (max-width: 980px) { .photo-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .photo-grid--4, .photo-grid--3 { grid-template-columns: 1fr; } }

/* ---------- Industry tiles with photos ---------- */
.industry-tile--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.industry-tile--photo .tile-photo img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-tile--photo:hover .tile-photo img { transform: scale(1.04); }
.industry-tile--photo .tile-body { padding: 20px 22px 24px; }
.industry-tile--photo h3 { margin-bottom: 6px; }
.industry-tile--photo p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* ---------- Service page side column ---------- */
.side-photo {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(7,26,58,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.side-photo:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(7,26,58,0.13); }
.side-photo img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.side-photo:hover img { transform: scale(1.04); }

/* ---------- Article header image ---------- */
.article-featured {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 34px;
  box-shadow: 0 8px 24px rgba(7,26,58,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.article-featured:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(7,26,58,0.13); }
.article-featured img { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.article-featured:hover img { transform: scale(1.03); }

/* ---------- Credits list ---------- */
.credits-list { list-style: none; padding: 0; margin: 0; }
.credits-list li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: baseline;
}
.credits-list .fname { font-weight: 600; color: var(--navy); font-family: ui-monospace, Menlo, monospace; font-size: 0.88rem; }
.credits-list .fmeta { color: var(--slate); font-size: 0.88rem; }
.credits-list a { word-break: break-all; }

/* ---------- About page redesign components ---------- */
.section-head--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-subtext {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Values cards */
.values-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(7, 26, 58, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}
.values-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.values-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.values-card-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: #CBD5E1;
}
.values-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.values-card p {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

/* Values Callout Banner */
.values-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #EAF3FF;
  border: 1px solid #CFE2FF;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 24px;
}
.values-callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.values-callout p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.5;
}

/* Location Card */
.location-card {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(7, 26, 58, 0.04);
}
.location-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.location-pin-icon {
  color: #E11D48;
  flex-shrink: 0;
}
.location-title h4 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0;
}
.location-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--slate);
}
.location-map-svg {
  width: 100%;
  height: auto;
  margin: 12px 0;
}
.location-footer {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  text-align: center;
}

/* Do / Don't cards */
.do-dont-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .do-dont-grid {
    grid-template-columns: 1fr;
  }
}
.do-dont-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid transparent;
}
.card--do {
  background: #F0FDF4;
  border-color: #BBF7D0;
}
.card--dont {
  background: #FEF2F2;
  border-color: #FECACA;
}
.do-dont-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.do-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #16A34A;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dont-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #DC2626;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.do-dont-card h3 {
  margin: 0;
  font-size: 1.2rem;
}
.do-dont-card p {
  font-size: 0.94rem;
  color: var(--graphite);
  margin: 0;
  line-height: 1.6;
}

/* Process steps in Starting out */
.relationship-process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 40px;
  position: relative;
}
@media (max-width: 768px) {
  .relationship-process {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.process-node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px 10px 14px;
}
.node-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
}
.node-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0284C7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.node-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.node-text span {
  display: block;
  font-size: 0.82rem;
  color: var(--slate);
}
.process-line {
  flex: 1;
  height: 2px;
  background: #CBD5E1;
  margin: 0 12px;
}
@media (max-width: 768px) {
  .process-line {
    display: none;
  }
}

/* ---------- Accordion / FAQ styling ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 36px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(7, 26, 58, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: #CBD5E1;
  box-shadow: 0 4px 14px rgba(7, 26, 58, 0.06);
}
.faq-item summary {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .chev {
  color: #075FC9;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] summary .chev {
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 20px 18px;
  font-size: 0.94rem;
  color: var(--slate);
  line-height: 1.6;
}
.faq-body p {
  margin: 0;
}

/* Sidebar Cards on Insights page */
.section--light-blue {
  background: #F4F8FD;
}
.insights-sidebar-card {
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.sidebar-card--blue {
  background: #F0F7FF;
  border-color: #D6E6FE;
}
.sidebar-card--orange {
  background: #FFFDF8;
  border-color: #FFE6CC;
}
.sidebar-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sidebar-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-dash {
  width: 14px;
  height: 2px;
  background: #CC4800;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
}
.sidebar-card-head h4 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}
.sidebar-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sidebar-icon--blue {
  background: #E0F2FE;
  color: #0284C7;
}
.sidebar-icon--orange {
  background: #FFEDD5;
  color: #EA580C;
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sidebar-feature-icon {
  color: #0284C7;
  flex-shrink: 0;
  margin-top: 2px;
}
.sidebar-feature-text strong {
  display: block;
  font-size: 0.94rem;
  color: var(--navy);
  font-weight: 600;
}
.sidebar-feature-text span {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.45;
}

.sidebar-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.sidebar-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #CC4800;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* FAQ Icon Summary */
.faq-summary-content {
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0284C7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Insights Layout Grid Splits */
.insights-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}
.topic-index-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .insights-split,
  .topic-index-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Topic Index 2x2 Cards Grid */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 640px) {
  .topic-grid {
    grid-template-columns: 1fr;
  }
}
.topic-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(7, 26, 58, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.topic-card:hover {
  transform: translateY(-3px);
  border-color: #075FC9;
  box-shadow: 0 10px 24px rgba(7, 26, 58, 0.08);
}
.topic-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.topic-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topic-card-title h4 {
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.35;
}
.topic-arrow {
  color: #075FC9;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.topic-card:hover .topic-arrow {
  transform: translateX(4px);
}
.topic-card-accent {
  width: 28px;
  height: 3px;
  background: #CC4800;
  border-radius: 2px;
  margin-bottom: 10px;
}
.topic-card p {
  font-size: 0.86rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* ------------------------------------------------------------
 * Floating WhatsApp Popup Widget (Circular Icon on Right Side)
 * ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9995;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, background-color 0.2s ease;
}
.whatsapp-float:hover {
  background: #20BA5A;
  color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  z-index: -1;
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
  }
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}
