/* ==========================================================================
   CableNet Industries — style.css
   Order: tokens → reset → base → layout → components → sections
   All media queries live in responsive.css
   ========================================================================== */

/* ============================ 1. TOKENS ================================== */
:root {
  /* colour */
  --navy:        #141453;
  --navy-2:      #1D1D6B;
  --navy-3:      #262680;
  --navy-deep:   #0D0D3C;
  --blue:        #2E2E8C;
  --cyan:        #29A8D8;
  --cyan-2:      #1080B0;
  --cyan-ink:    #0B5E82;   /* accent for text/glyphs on light backgrounds (AA) */
  --cyan-pale:   #E9F4FB;
  --cyan-light:  rgba(41, 168, 216, 0.12);
  --white:       #FFFFFF;
  --off:         #F4F6FC;
  --gray:        #8B90AE;
  --gray-2:      #C9CFE4;
  --text:        #14143A;
  --text-2:      #4C5170;
  --border:      #DDE1F0;

  /* type */
  --font-head: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --fs-h1:    clamp(40px, 4.8vw, 66px);
  --fs-h2:    clamp(32px, 3.7vw, 50px);
  --fs-h3:    clamp(25px, 2.4vw, 34px);
  --fs-h4:    22px;
  --fs-body:  18px;
  --fs-small: 17px;
  --fs-ui:    16px;
  --fs-micro: 15px;

  /* spacing — 8px base */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 72px;
  --space-10: 90px;

  /* shape */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 20px rgba(20, 20, 83, 0.06);
  --shadow:    0 8px 24px rgba(20, 20, 83, 0.12);
  --shadow-lg: 0 12px 40px rgba(20, 20, 83, 0.14);

  --container: 1360px;
  --gutter: 28px;
  --header-h: 163px;   /* topbar 54 + nav 108 + 1px border */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================ 2. RESET =================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 180px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { list-style: none; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan-ink); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; }

:focus-visible {
  outline: 3px solid var(--cyan-ink);
  outline-offset: 3px;
  border-radius: 3px;
}
.section.dark :focus-visible,
.cta-band :focus-visible,
.page-hero :focus-visible,
.site-footer :focus-visible,
.site-header .topbar :focus-visible { outline-color: var(--cyan); }

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  z-index: 2000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-ui);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-4); color: var(--white); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ============================ 3. LAYOUT ================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--space-10) 0; }
.section.tight { padding: var(--space-8) 0; }
.section.light { background: var(--off); }
.section.dark { background: var(--navy); color: rgba(255, 255, 255, 0.78); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.split-2.wide-gap { gap: var(--space-9); }

/* dotted / arc decoration used by dark bands */
.pattern-dots { position: relative; overflow: hidden; }
.pattern-dots::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.pattern-dots.on-light::before {
  background-image: radial-gradient(circle, rgba(20, 20, 83, 0.07) 1px, transparent 1px);
}
.pattern-dots > * { position: relative; z-index: 1; }

/* ============================ 4. COMPONENTS ============================== */

/* icon elements before the library swaps them in */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
i[data-lucide] > svg { width: 100%; height: 100%; }
svg.lucide { flex-shrink: 0; }

/* --- 4.1 Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 15px 30px;
  font-family: var(--font-head);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s,
              transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); box-shadow: 0 10px 28px rgba(20, 20, 83, 0.2); }

.btn-cyan { background: var(--cyan); color: var(--navy); }
.btn-cyan:hover { background: #3FBAE8; color: var(--navy); box-shadow: 0 10px 28px rgba(41, 168, 216, 0.28); }

.btn-outline { border-color: var(--border); color: var(--navy); background: var(--white); }
.btn-outline:hover { border-color: var(--cyan); color: var(--navy); box-shadow: 0 6px 20px rgba(41, 168, 216, 0.16); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.22); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.45); color: var(--white); }

.btn-small { min-height: 44px; padding: 11px 22px; font-size: 15px; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: var(--fs-ui);
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.25s var(--ease);
}
.btn-link svg { width: 17px; height: 17px; }
.btn-link:hover { color: var(--cyan-ink); border-color: var(--cyan-ink); gap: 11px; }

/* --- 4.2 Heading group ------------------------------------------------- */
.heading-group { margin-bottom: var(--space-8); max-width: 680px; }
.heading-group .eyebrow { margin-bottom: var(--space-3); }
.heading-group p {
  font-size: var(--fs-small);
  color: var(--text-2);
  line-height: 1.8;
  margin-top: var(--space-4);
}
.heading-group.centered { margin-left: auto; margin-right: auto; text-align: center; }
.heading-group.centered .eyebrow { justify-content: center; }
.heading-group.light h2 { color: var(--white); }
.heading-group.light p { color: rgba(255, 255, 255, 0.74); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.eyebrow .dots { display: flex; gap: 3px; align-items: flex-start; }
.eyebrow .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--navy); }
.eyebrow .dots span + span { width: 8px; height: 8px; background: var(--cyan); margin-left: -3px; margin-top: 2px; }
.eyebrow.light { color: rgba(255, 255, 255, 0.8); }
.eyebrow.light .dots span { background: var(--white); }
.eyebrow.light .dots span + span { background: var(--cyan); }

/* --- 4.3 Media figure (reserved box + skeleton) ------------------------ */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E9EBF6;
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.4s ease, opacity 0.4s ease;
  filter: grayscale(18%);
}
.media.hover-zoom:hover img { transform: scale(1.05); filter: grayscale(0%); }
.js .media[data-lazy] img { opacity: 0; }
.js .media[data-lazy].is-loaded img { opacity: 1; }
.js .media[data-lazy]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #E9EBF6 30%, #F3F5FC 50%, #E9EBF6 70%);
  background-size: 260% 100%;
  animation: skeleton 1.3s linear infinite;
}
.js .media[data-lazy].is-loaded::after { display: none; }
@keyframes skeleton { from { background-position: 160% 0; } to { background-position: -60% 0; } }

/* --- 4.4 Header + navigation ------------------------------------------ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.site-header .topbar { background: var(--navy); padding: 9px 0; }
.site-header .topbar .topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.site-header .topbar-list { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.site-header .topbar-list li { display: flex; }
.site-header .topbar-list a,
.site-header .topbar-list span.topbar-static {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--fs-ui);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.site-header .topbar-list a:hover { color: var(--cyan); }
.site-header .topbar-list svg { width: 13px; height: 13px; flex-shrink: 0; }

.site-header .topbar-social { display: flex; align-items: center; gap: 10px; }
.site-header .topbar-social a {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.site-header .topbar-social a:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.site-header .topbar-social svg { width: 13px; height: 13px; }
.site-header .topbar-social a { color: rgba(255, 255, 255, 0.82); }
.site-header .topbar-social a:hover { color: var(--navy); }

.site-header .main-nav {
  background: var(--white);
  height: 108px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}
.site-header.is-stuck .main-nav { box-shadow: 0 4px 32px rgba(20, 20, 83, 0.12); }
.site-header .main-nav .nav-inner {
  display: flex; align-items: center; width: 100%;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}

.site-logo { display: flex; align-items: center; margin-right: auto; }
.site-logo img { width: 218px; height: auto; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  margin-left: var(--space-3);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header .main-nav ul { display: flex; align-items: center; gap: 2px; margin-right: 22px; }
.site-header .main-nav ul li { position: relative; }
.site-header .main-nav ul li a {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 15px;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.site-header .main-nav ul li a:hover { color: var(--navy); background: var(--off); }
.site-header .main-nav ul li.current-menu-item > a { color: var(--navy); }
.site-header .main-nav ul li.current-menu-item > a::after {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan);
}
.site-header .main-nav ul li.menu-item-has-children > a::before {
  content: '';
  order: 2;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
  opacity: 0.6;
}

/* dropdown */
.site-header .main-nav ul ul.sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: block;
  min-width: 320px;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.25s var(--ease), visibility 0.2s;
}
.site-header .main-nav ul li:hover > ul.sub-menu,
.site-header .main-nav ul li.is-open > ul.sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-header .main-nav ul ul.sub-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.site-header .main-nav ul ul.sub-menu li a {
  padding: 10px 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--radius-sm);
}
.site-header .main-nav ul ul.sub-menu li a:hover { background: var(--cyan-pale); color: var(--navy); }
.site-header .main-nav ul ul.sub-menu li.current-menu-item > a { background: var(--cyan-pale); color: var(--navy); }

.nav-cta { flex-shrink: 0; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 20, 83, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 900;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

/* --- 4.5 Marquee ------------------------------------------------------ */
.marquee {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee li {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: 0 var(--space-6);
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.marquee li svg { color: var(--cyan); }
.marquee li svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- 4.6 Stats row ---------------------------------------------------- */
.stats-row { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.stats-row ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-row li {
  padding: var(--space-6) var(--space-6);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.stats-row li:last-child { border-right: none; }
.stats-row .stat-num {
  font-family: var(--font-head);
  font-size: 50px; font-weight: 800; line-height: 1;
  letter-spacing: -0.02em; color: var(--navy);
}
.stats-row .stat-num span { color: var(--cyan-ink); }
.stats-row .stat-dots { display: flex; gap: 3px; align-items: flex-start; }
.stats-row .stat-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--navy); }
.stats-row .stat-dots span + span { width: 7px; height: 7px; background: var(--cyan); margin-left: -2px; margin-top: 2px; }
.stats-row .stat-label { font-size: var(--fs-ui); font-weight: 500; color: var(--text-2); }

/* --- 4.7 Service card ------------------------------------------------- */
.service-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(41, 168, 216, 0.45);
  box-shadow: 0 20px 48px rgba(41, 168, 216, 0.12), 0 8px 24px rgba(20, 20, 83, 0.3);
}
.service-card .media { height: 220px; border-radius: 0; }
.service-card .media::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20, 20, 83, 0.55) 0%, transparent 60%);
  transition: opacity 0.35s;
}
.service-card .media img { filter: grayscale(25%) brightness(0.84); }
.service-card:hover .media img { transform: scale(1.07); filter: grayscale(0%) brightness(1); }
.service-card .card-body {
  position: relative;
  background: rgba(21, 21, 74, 0.88);
  padding: 22px 24px 24px;
  transition: background 0.35s;
}
.service-card .card-body::before {
  content: ''; position: absolute; top: 0; left: 24px;
  height: 2px; width: 0; background: var(--cyan); border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.service-card:hover .card-body::before { width: calc(100% - 48px); }
.service-card .card-title {
  font-family: var(--font-head);
  font-size: 20.5px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 10px;
  transition: color 0.2s;
}
.service-card:hover .card-title { color: var(--cyan); }
.service-card .card-body p {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--space-4);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-size: var(--fs-ui); font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cyan);
  transition: gap 0.3s var(--ease);
}
.service-card .card-link svg { width: 13px; height: 13px; }
.service-card:hover .card-link { gap: 12px; }

.service-card.featured .card-body { background: var(--cyan); }
.service-card.featured .card-title,
.service-card.featured .card-link { color: var(--navy); }
.service-card.featured .card-body p { color: rgba(20, 20, 83, 0.72); }
.service-card.featured .card-body::before { background: var(--navy); }
.service-card.featured:hover .card-title { color: var(--navy); }

/* light variant used on the services index */
.service-card.on-light { border-color: var(--border); background: var(--white); }
.service-card.on-light .card-body { background: var(--white); }
.service-card.on-light .card-title { color: var(--navy); }
.service-card.on-light .card-body p { color: var(--text-2); }
.service-card.on-light .card-link { color: var(--cyan-ink); }
.service-card.on-light:hover { border-color: var(--cyan); box-shadow: 0 18px 40px rgba(20, 20, 83, 0.1); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* --- 4.8 Project card ------------------------------------------------- */
.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 215px;
  gap: 14px;
}
.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform 0.5s var(--ease), filter 0.3s; }
.project-card:hover img { transform: scale(1.06); filter: grayscale(0%); }
.project-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20, 20, 83, 0.9) 0%, rgba(20, 20, 83, 0.2) 55%, transparent 100%);
}
.project-card .card-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 22px 24px; }
.project-card .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--cyan);
  padding: 3px 10px; border-radius: 4px; margin-bottom: var(--space-2);
}
.project-card .card-title {
  font-family: var(--font-head);
  font-size: 20.5px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--white);
}
.project-card.large .card-title { font-size: 27.5px; }
.project-card .card-meta { font-size: 15px; color: rgba(255, 255, 255, 0.78); margin-top: 5px; }
.project-card .card-arrow {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.project-card .card-arrow svg { width: 14px; height: 14px; }
.project-card:hover .card-arrow { background: var(--cyan); border-color: var(--cyan); transform: rotate(-45deg); }
.project-card.large { grid-row: 1 / 3; }

/* --- 4.9 Feature list (why choose us) --------------------------------- */
.feature-list { display: flex; flex-direction: column; gap: var(--space-4); }
.feature-list li {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.feature-list li:hover { border-color: rgba(41, 168, 216, 0.35); background: var(--cyan-pale); transform: translateX(4px); }
.feature-list .feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--cyan-light);
  border: 1px solid rgba(41, 168, 216, 0.2);
  border-radius: 11px;
  color: var(--cyan-ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.feature-list li:hover .feature-icon { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.feature-list .feature-icon svg { width: 20px; height: 20px; }
.feature-list h4 { margin-bottom: 4px; font-size: 18.5px; }
.feature-list p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.65; }

/* --- 4.10 Float cards ------------------------------------------------- */
.float-stat {
  position: absolute; bottom: -20px; left: -24px;
  width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
}
.float-stat .float-num { font-family: var(--font-head); font-size: 37px; font-weight: 800; line-height: 1; color: var(--navy); }
.float-stat .float-num span { color: var(--cyan-ink); }
.float-stat p { font-size: 15px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }

.float-checks {
  position: absolute; top: 24px; right: -24px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: var(--space-4) 20px;
  box-shadow: var(--shadow);
}
.float-checks .float-label {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68); margin-bottom: var(--space-2);
}
.float-checks .float-label svg { color: var(--cyan); }
.float-checks ul { display: flex; flex-direction: column; gap: 6px; }
.float-checks li { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.float-checks li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%; background: var(--cyan);
  background-image: linear-gradient(transparent, transparent);
}

/* --- 4.11 Accreditation strip ---------------------------------------- */
.accred-strip {
  background: var(--off);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accred-strip .accred-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-5) var(--space-7); flex-wrap: wrap;
}
.accred-strip .accred-label {
  font-family: var(--font-head);
  font-size: var(--fs-micro); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2); white-space: nowrap;
}
.accred-strip ul { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.accred-strip li {
  display: flex; align-items: center; gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-family: var(--font-head);
  font-size: var(--fs-ui); font-weight: 800;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.accred-strip li:hover { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(41, 168, 216, 0.15); transform: translateY(-2px); }
.accred-strip li svg { width: 16px; height: 16px; }

/* --- 4.11 Hero background media -------------------------------------- */
.page-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: grayscale(30%);
}
.page-hero .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--navy) 8%, rgba(20, 20, 83, 0.82) 45%, rgba(20, 20, 83, 0.5) 100%);
}

/* --- 4.11b Process steps --------------------------------------------- */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.step-card {
  position: relative;
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.step-card:hover { border-color: rgba(41, 168, 216, 0.4); box-shadow: 0 16px 36px rgba(20, 20, 83, 0.08); transform: translateY(-4px); }
.step-card .s-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.step-card .s-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cyan-pale);
  border: 1px solid rgba(41, 168, 216, 0.22);
  color: var(--cyan-ink);
  display: flex; align-items: center; justify-content: center;
}
.step-card .s-icon svg { width: 21px; height: 21px; }
.step-card .s-num {
  font-family: var(--font-head); font-size: 39px; font-weight: 800;
  line-height: 1; letter-spacing: -0.02em; color: #6E7395;
}
.step-card h3 { font-size: 22px; margin-bottom: var(--space-3); }
.step-card p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.7; }

/* --- 4.11c Equipment + sector tiles ---------------------------------- */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.equip-card {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.equip-card:hover { border-color: rgba(41, 168, 216, 0.4); background: rgba(41, 168, 216, 0.06); transform: translateY(-3px); }
.equip-card .e-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 11px;
  background: rgba(41, 168, 216, 0.12);
  border: 1px solid rgba(41, 168, 216, 0.22);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.equip-card .e-icon svg { width: 19px; height: 19px; }
.equip-card h4 { color: var(--white); font-size: 18.5px; margin-bottom: 4px; }
.equip-card p { font-size: 15.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.65; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.sector-card {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.sector-card:hover { box-shadow: 0 14px 32px rgba(20, 20, 83, 0.08); transform: translateY(-3px); }
.sector-card .sec-head { display: flex; align-items: center; gap: var(--space-3); }
.sector-card .sec-head svg { width: 20px; height: 20px; flex-shrink: 0; }
.sector-card .sec-head i[data-lucide] { color: var(--cyan-ink); }
.sector-card .sec-head > svg { color: var(--cyan-ink); }
.sector-card h3 { font-size: 20.5px; }
.sector-card p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.7; }

/* --- 4.11d FAQ -------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-list details[open] { border-color: rgba(41, 168, 216, 0.4); box-shadow: 0 10px 28px rgba(20, 20, 83, 0.07); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 19.5px; font-weight: 700; color: var(--navy);
  min-height: 54px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '';
  width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--cyan-ink);
  border-bottom: 2px solid var(--cyan-ink);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq-list .faq-body { padding: 0 20px 20px; font-size: var(--fs-small); color: var(--text-2); line-height: 1.8; }
.faq-list .faq-body p + p { margin-top: var(--space-3); }

/* --- 4.12 CTA band ---------------------------------------------------- */
.cta-band {
  background: var(--navy-2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.cta-band::after {
  content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 168, 216, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .cta-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-8);
}
.cta-band .cta-copy { max-width: 560px; }
.cta-band .cta-tag {
  font-family: var(--font-head);
  font-size: var(--fs-micro); font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: var(--space-3);
}
.cta-band h2 { color: var(--white); max-width: 560px; font-size: clamp(29px, 3.2vw, 44px); }
.cta-band h2 span { color: var(--cyan); }
.cta-band .cta-actions {
  display: flex; flex-direction: column; align-items: stretch;
  gap: var(--space-4);
  min-width: 330px;
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
}
.cta-band .cta-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.cta-band .cta-buttons .btn { width: 100%; }
.cta-band .cta-phone {
  display: flex; align-items: center; gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.cta-band .cta-phone .phone-num { display: block; }
.cta-band .cta-phone .phone-label { display: block; margin-top: 2px; }
.cta-band .cta-phone .phone-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(41, 168, 216, 0.12);
  border: 1px solid rgba(41, 168, 216, 0.25);
  border-radius: var(--radius);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.cta-band .cta-phone .phone-icon svg { width: 22px; height: 22px; }
.cta-band .cta-phone .phone-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; line-height: 1.2; }
.cta-band .cta-phone .phone-label { font-size: var(--fs-micro); color: rgba(255, 255, 255, 0.7); }

/* --- 4.13 Page hero (inner pages) ------------------------------------ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -140px; top: -220px;
  width: 620px; height: 620px; border-radius: 50%;
  border: 1px solid rgba(41, 168, 216, 0.12);
  pointer-events: none;
}
.page-hero .page-hero-inner { position: relative; z-index: 2; max-width: 980px; }
.page-hero.pattern-dots::before { z-index: 1; }
.page-hero h1 { color: var(--white); margin: var(--space-4) 0 var(--space-5); }
.page-hero h1 em { font-style: normal; color: var(--cyan); }
.page-hero .lede {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 840px;
}
.page-hero .hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-6); }

.breadcrumbs { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; font-size: 15px; color: rgba(255, 255, 255, 0.62); }
.breadcrumbs li { display: flex; align-items: center; gap: var(--space-2); }
.breadcrumbs li + li::before { content: '/'; color: rgba(255, 255, 255, 0.4); }
.breadcrumbs a { color: rgba(255, 255, 255, 0.75); font-weight: 600; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs [aria-current] { color: var(--cyan); font-weight: 600; }

/* --- 4.14 Content area (CMS-safe bare tags) -------------------------- */
.content-area { font-size: var(--fs-body); color: var(--text-2); line-height: 1.85; }
.content-area > * + * { margin-top: var(--space-5); }
.content-area h2 { font-size: clamp(28px, 2.8vw, 38px); color: var(--navy); }
.content-area h3 { font-size: clamp(23px, 2.2vw, 29px); color: var(--navy); }
.content-area h4 { color: var(--navy); }
.content-area h2 + p, .content-area h3 + p, .content-area h4 + p { margin-top: var(--space-4); }
.content-area * + h2 { margin-top: var(--space-8); }
.content-area * + h3 { margin-top: var(--space-7); }
.content-area strong { color: var(--navy); font-weight: 700; }
.content-area a { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(46, 46, 140, 0.3); }
.content-area a:hover { color: var(--cyan-ink); border-color: var(--cyan-ink); }
.content-area ul, .content-area ol { display: flex; flex-direction: column; gap: var(--space-3); padding-left: 0; }
.content-area ul li { position: relative; padding-left: 30px; }
.content-area ul li::before {
  content: ''; position: absolute; left: 6px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
}
.content-area ol { counter-reset: c; }
.content-area ol li { position: relative; padding-left: 38px; counter-increment: c; }
.content-area ol li::before {
  content: counter(c);
  position: absolute; left: 0; top: 4px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan-pale); color: var(--navy);
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.content-area blockquote {
  border-left: 3px solid var(--cyan);
  background: var(--off);
  padding: var(--space-5) var(--space-6);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 22px; color: var(--navy); line-height: 1.7;
}
.content-area figure { border-radius: var(--radius-lg); overflow: hidden; }
.content-area figure img { width: 100%; }
.content-area figcaption { font-size: 15px; color: var(--text-2); padding-top: var(--space-3); }
.content-area table { width: 100%; border-collapse: collapse; font-size: var(--fs-small); }
.content-area th, .content-area td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.content-area th { font-family: var(--font-head); font-weight: 800; color: var(--navy); background: var(--off); }

/* --- 4.15 Service layout + sidebar ---------------------------------- */
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: var(--space-9);
  align-items: start;
}
.page-sidebar { position: sticky; top: 145px; display: flex; flex-direction: column; gap: var(--space-4); }

.side-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: var(--white);
}
.side-card .side-head {
  font-family: var(--font-head);
  font-size: var(--fs-micro); font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: var(--space-4);
}
.side-card .side-head svg { color: var(--cyan-ink); }
.side-card ul { display: flex; flex-direction: column; }
.side-card ul li a {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: 11px 0;
  font-size: var(--fs-small); font-weight: 600;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.side-card ul li:last-child a { border-bottom: none; }
.side-card ul li a::after {
  content: ''; width: 7px; height: 7px; flex-shrink: 0;
  border-right: 2px solid var(--gray-2); border-bottom: 2px solid var(--gray-2);
  transform: rotate(-45deg);
  transition: border-color 0.2s, transform 0.2s;
}
.side-card ul li a:hover { color: var(--navy); padding-left: 5px; }
.side-card ul li a:hover::after { border-color: var(--cyan-ink); transform: rotate(-45deg) translate(2px, -2px); }
.side-card ul li.current-menu-item a { color: var(--navy); }
.side-card ul li.current-menu-item a::after { border-color: var(--cyan-ink); }

.side-card.contact-card { background: var(--navy); border-color: var(--navy); color: rgba(255, 255, 255, 0.78); }
.side-card.contact-card .side-head { color: var(--cyan); }
.side-card.contact-card h3 { color: var(--white); font-size: 25.5px; margin-bottom: var(--space-3); }
.side-card.contact-card p { font-size: var(--fs-small); line-height: 1.75; margin-bottom: var(--space-5); }
.side-card.contact-card .side-phone {
  display: flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-head); font-size: 27.5px; font-weight: 800; color: var(--white);
  margin-bottom: var(--space-4);
}
.side-card.contact-card .side-phone:hover { color: var(--cyan); }
.side-card.contact-card .side-phone svg { width: 20px; height: 20px; flex-shrink: 0; }
.side-card.contact-card .btn { width: 100%; }

/* --- 4.16 Forms ------------------------------------------------------- */
.form-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow);
}
.form-block h2 { font-size: clamp(27px, 2.6vw, 36px); margin-bottom: var(--space-3); }
.form-block > p { font-size: var(--fs-small); color: var(--text-2); margin-bottom: var(--space-6); }

.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-5); }
.enquiry-form .field { display: flex; flex-direction: column; gap: 7px; }
.enquiry-form .field.full { grid-column: 1 / -1; }
.enquiry-form label {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: var(--navy);
}
.enquiry-form label .req { color: var(--cyan-ink); }
.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  font-size: var(--fs-small);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.enquiry-form textarea { min-height: 160px; resize: vertical; line-height: 1.7; }
.enquiry-form input:hover, .enquiry-form textarea:hover, .enquiry-form select:hover { border-color: var(--gray-2); }
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus {
  outline: none; background: var(--white);
  border-color: var(--cyan-ink); box-shadow: 0 0 0 4px rgba(16, 128, 176, 0.18);
}
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: #6E7395; }
.enquiry-form input:disabled, .enquiry-form textarea:disabled { opacity: 0.6; cursor: not-allowed; }
.enquiry-form .field.has-error input,
.enquiry-form .field.has-error textarea { border-color: #D6455A; background: #FEF4F5; }
.enquiry-form .field-error { font-size: 15px; font-weight: 600; color: #C03349; }
.enquiry-form .checkbox-field { flex-direction: row; align-items: flex-start; gap: var(--space-3); }
.enquiry-form .checkbox-field input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; accent-color: var(--cyan-2); }
.enquiry-form .checkbox-field label { font-weight: 500; font-family: var(--font-body); font-size: 15px; color: var(--text-2); line-height: 1.6; }
.enquiry-form .form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
.enquiry-form .form-note { font-size: 15px; color: var(--text-2); }
.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small); font-weight: 600;
}
.form-status.is-success { display: block; background: var(--cyan-pale); border: 1px solid rgba(41, 168, 216, 0.35); color: var(--navy); }
.form-status.is-error { display: block; background: #FEF4F5; border: 1px solid #F0C3CA; color: #C03349; }

/* Contact Form 7 safety: CF7 injects span wrappers around controls */
.enquiry-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.enquiry-form .wpcf7-not-valid-tip { font-size: 15px; font-weight: 600; color: #C03349; margin-top: 6px; }
.wpcf7-response-output {
  margin: var(--space-4) 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  border: 1px solid var(--border);
}

/* --- 4.17 Info tiles / blog cards ------------------------------------ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.info-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.info-tile:hover { border-color: rgba(41, 168, 216, 0.4); box-shadow: 0 16px 36px rgba(20, 20, 83, 0.08); transform: translateY(-4px); }
.info-tile .tile-icon {
  width: 48px; height: 48px; margin-bottom: var(--space-4);
  background: var(--cyan-pale); border: 1px solid rgba(41, 168, 216, 0.2);
  border-radius: var(--radius); color: var(--cyan-ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.info-tile:hover .tile-icon { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.info-tile .tile-icon svg { width: 22px; height: 22px; }
.info-tile h3 { font-size: 22px; margin-bottom: var(--space-3); }
.info-tile p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.75; }
.info-tile ul { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-4); }
.info-tile ul li { position: relative; padding-left: 22px; font-size: var(--fs-small); color: var(--text-2); }
.info-tile ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.blog-card:hover { border-color: rgba(41, 168, 216, 0.4); box-shadow: 0 18px 40px rgba(20, 20, 83, 0.1); transform: translateY(-4px); }
.blog-card .media { height: 210px; border-radius: 0; }
.blog-card .card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.blog-card .card-date {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-ink);
}
.blog-card h3 { font-size: 23px; line-height: 1.25; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--cyan-ink); }
.blog-card p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.7; }
.blog-card .card-link { margin-top: auto; }

/* --- 4.18 Timeline / project list ----------------------------------- */
.project-list { display: flex; flex-direction: column; gap: var(--space-6); }
.project-item {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.project-item:hover { border-color: rgba(41, 168, 216, 0.35); box-shadow: 0 18px 44px rgba(20, 20, 83, 0.08); }
.project-item .media { height: 300px; }
.project-item .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--cyan-pale);
  border: 1px solid rgba(41, 168, 216, 0.3);
  padding: 4px 12px; border-radius: 4px; margin-bottom: var(--space-3);
}
.project-item h3 { margin-bottom: var(--space-4); }
.project-item ul { display: flex; flex-direction: column; gap: var(--space-3); }
.project-item ul li { position: relative; padding-left: 26px; font-size: var(--fs-small); color: var(--text-2); line-height: 1.7; }
.project-item ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan);
}
.project-item:nth-child(even) { grid-template-columns: minmax(0, 1fr) 450px; }
.project-item:nth-child(even) .media { order: 2; }

/* --- 4.19 Map + footer ---------------------------------------------- */
.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  background: var(--off);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.site-footer {
  background: #08083A;
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  border-top: 3px solid var(--cyan);
}
.site-footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  /* Texture image is applied dynamically from the Media Library via
     Global Settings -> Footer -> Background Texture (see inc/enqueue.php).
     Gradient-only fallback keeps the footer dark if no image is set. */
  background-image:
    linear-gradient(180deg, rgba(8, 8, 58, 0.93) 0%, rgba(8, 8, 58, 0.985) 55%, #08083A 100%);
  background-size: cover, cover;
  background-position: center, center 28%;
}
.site-footer::after {
  content: ''; position: absolute; top: -280px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
  width: 900px; height: 540px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(41, 168, 216, 0.13) 0%, transparent 68%);
}
.site-footer .footer-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding: var(--space-9) 0 var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-footer .footer-logo {
  display: inline-flex;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: var(--space-4);
}
.site-footer .footer-logo img { width: 180px; height: auto; }
.site-footer .footer-desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: var(--space-6);
}
.site-footer .footer-contact { display: flex; flex-direction: column; margin-bottom: var(--space-6); }
.site-footer .footer-contact li a,
.site-footer .footer-contact li span {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-ui);
  color: rgba(255, 255, 255, 0.72);
  padding: 11px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}
.site-footer .footer-contact li:last-child a,
.site-footer .footer-contact li:last-child span { border-bottom: none; }
.site-footer .footer-contact li a:hover { color: var(--cyan); }
.site-footer .footer-contact .contact-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.site-footer .footer-contact li a:hover .contact-icon { background: rgba(41, 168, 216, 0.12); border-color: rgba(41, 168, 216, 0.25); }
.site-footer .footer-contact .contact-icon svg { width: 14px; height: 14px; }

.site-footer .footer-social { display: flex; align-items: center; gap: var(--space-2); }
.site-footer .footer-social a {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease), color 0.2s;
}
.site-footer .footer-social a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy); transform: translateY(-3px); }
.site-footer .footer-social svg { width: 15px; height: 15px; }

.site-footer .footer-col .footer-head {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-5);
}
.site-footer .footer-col .footer-head::after { content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.07); }
.site-footer .footer-col .footer-head svg { color: var(--cyan); }
.site-footer .footer-col ul { display: flex; flex-direction: column; }
.site-footer .footer-col ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-ui);
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
  padding: 10px 0;
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.site-footer .footer-col ul li:last-child a { border-bottom: none; }
.site-footer .footer-col ul li a::before {
  content: ''; width: 4px; height: 4px; flex-shrink: 0;
  border-radius: 50%; background: rgba(41, 168, 216, 0.35);
  transition: background 0.2s, transform 0.2s;
}
.site-footer .footer-col ul li a:hover { color: var(--cyan); padding-left: 4px; }
.site-footer .footer-col ul li a:hover::before { background: var(--cyan); transform: scale(1.4); }

.site-footer .footer-bottom {
  position: relative; z-index: 1;
  padding: var(--space-5) 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.site-footer .footer-copy { font-size: 15px; color: rgba(255, 255, 255, 0.52); }
.site-footer .footer-copy a { color: rgba(255, 255, 255, 0.66); font-weight: 600; }
.site-footer .footer-copy a:hover { color: var(--cyan); }
.site-footer .footer-badges { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.site-footer .footer-badges li {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px 5px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38);
}
.site-footer .footer-badges li::before {
  content: ''; width: 5px; height: 5px; flex-shrink: 0;
  border-radius: 50%; background: var(--cyan); opacity: 0.6;
}

/* --- 4.20 Back to top ------------------------------------------------ */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 800;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s var(--ease), background 0.2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--cyan); color: var(--navy); }
.to-top svg { width: 18px; height: 18px; }

/* --- 4.21 Reveal (JS-gated so content stays visible without JS) ------ */
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.delay-1.is-visible { transition-delay: 0.08s; }
.js .reveal.delay-2.is-visible { transition-delay: 0.16s; }
.js .reveal.delay-3.is-visible { transition-delay: 0.24s; }
.js .reveal.delay-4.is-visible { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --- 4.22 Team ------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.team-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.team-card:hover { border-color: rgba(41, 168, 216, 0.4); box-shadow: 0 18px 40px rgba(20, 20, 83, 0.1); transform: translateY(-5px); }
.team-card .media { height: 285px; border-radius: 0; }
.team-card .media img { object-position: center 20%; }
.team-card:hover .media img { transform: scale(1.05); filter: grayscale(0%); }
.team-card .card-body { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.team-card .t-name { font-family: var(--font-head); font-size: 20.5px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.team-card:hover .t-name { color: var(--cyan-ink); }
.team-card .t-role { font-size: 15px; font-weight: 600; color: var(--cyan-ink); text-transform: uppercase; letter-spacing: 0.06em; }
.team-card .t-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-3);
  font-family: var(--font-head); font-size: var(--fs-ui); font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
  transition: gap 0.25s var(--ease), color 0.2s;
}
.team-card .t-link svg { width: 13px; height: 13px; }
.team-card:hover .t-link { gap: 11px; color: var(--cyan-ink); }

/* --- 4.23 Values / certification grids ------------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.value-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.value-card:hover { border-color: rgba(41, 168, 216, 0.4); background: rgba(41, 168, 216, 0.06); transform: translateY(-4px); }
.value-card .v-num {
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  letter-spacing: 0.14em; color: var(--cyan); margin-bottom: var(--space-4);
}
.value-card .s-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(41, 168, 216, 0.12);
  border: 1px solid rgba(41, 168, 216, 0.24);
  color: var(--cyan);
}
.value-card .s-icon svg { width: 21px; height: 21px; }
.cert-card .c-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--cyan-pale);
  border: 1px solid rgba(41, 168, 216, 0.22);
  color: var(--cyan-ink);
}
.cert-card .c-icon svg { width: 19px; height: 19px; }
.cert-card .c-icon { color: var(--cyan-ink); }
.side-card .side-head svg,
.float-checks .float-label svg,
.site-footer .footer-col .footer-head svg { width: 13px; height: 13px; }
.side-card .side-head,
.float-checks .float-label { display: flex; align-items: center; gap: 7px; }
.value-card h3 { font-size: 23px; color: var(--white); margin-bottom: var(--space-3); }
.value-card p { font-size: var(--fs-small); line-height: 1.75; color: rgba(255, 255, 255, 0.72); }

.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.cert-card {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--white);
}
.cert-card .c-code { font-family: var(--font-head); font-size: 19.5px; font-weight: 800; color: var(--navy); }
.cert-card p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.65; }
.cert-card ul { display: flex; flex-direction: column; gap: var(--space-2); }
.cert-card ul li { position: relative; padding-left: 20px; font-size: var(--fs-small); color: var(--text-2); }
.cert-card ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
}

/* --- 4.24 Timeline --------------------------------------------------- */
.timeline { display: flex; flex-direction: column; }
.timeline li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
}
.timeline li:last-child { border-bottom: 1px solid var(--border); }
.timeline li .t-year {
  font-family: var(--font-head); font-size: 25.5px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.01em;
}
.timeline li h4 { margin-bottom: 6px; }
.timeline li p { font-size: var(--fs-small); color: var(--text-2); line-height: 1.7; }

/* --- 4.25 Single team profile --------------------------------------- */
.profile-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: var(--space-9);
  align-items: start;
}
.profile-aside { display: flex; flex-direction: column; gap: var(--space-4); position: sticky; top: 185px; }
.profile-aside .media { border-radius: var(--radius-xl); aspect-ratio: 4 / 5; }
.profile-facts { display: flex; flex-direction: column; }
.profile-facts li {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: var(--fs-small);
}
.profile-facts li:last-child { border-bottom: none; }
.profile-facts .f-key { color: var(--gray); font-weight: 500; }
.profile-facts .f-val { font-family: var(--font-head); font-weight: 700; color: var(--navy); text-align: right; }
.profile-role {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan);
}


/* --- 5.1 Home hero --------------------------------------------------- */
.home-hero { background: var(--off); padding: 70px 0 64px; position: relative; overflow: hidden; }
.home-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(20, 20, 83, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.home-hero::after {
  content: ''; position: absolute; right: -120px; top: -200px; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(41, 168, 216, 0.12);
}
.home-hero .hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-9); align-items: center;
}
.home-hero h1 { margin: var(--space-5) 0 var(--space-5); }
.home-hero h1 em { font-style: normal; color: var(--cyan-ink); }
.home-hero .hero-desc { font-size: 18px; color: var(--text-2); line-height: 1.8; max-width: 540px; margin-bottom: var(--space-6); }
.home-hero .hero-actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 244px 244px;
  gap: 12px;
}
.hero-collage .media.tall { grid-row: 1 / 3; }
.hero-collage .badge-round {
  position: absolute; bottom: 12px; right: 12px; z-index: 10;
  width: 104px; height: 104px;
  padding: 0 8px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(20, 20, 83, 0.3);
}
.hero-collage .badge-round .badge-num { font-family: var(--font-head); font-size: 22px; font-weight: 800; line-height: 1; color: var(--cyan); }
.hero-collage .badge-round .badge-label {
  font-size: 11px; font-weight: 700; line-height: 1.3; margin-top: 4px;
  color: rgba(255, 255, 255, 0.85); text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-collage .collage-star { position: absolute; z-index: 10; animation: spin-slow 9s linear infinite; }
.hero-collage .collage-star.one { right: 10px; bottom: 62px; }
.hero-collage .collage-star.two { left: 48%; top: 10px; animation-duration: 14s; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* --- 5.2 About images block ------------------------------------------ */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 222px 222px;
  gap: 12px;
}
.about-images .media.one { grid-column: 1; grid-row: 1; }
.about-images .media.two { grid-column: 2; grid-row: 1 / 3; }
.about-images .media.three { grid-column: 1; grid-row: 2; }
.about-images .badge-round {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 122px; height: 122px;
  padding: 0 10px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(20, 20, 83, 0.2);
}
.about-images .badge-round .badge-num { font-family: var(--font-head); font-size: 27px; font-weight: 800; line-height: 1; color: var(--cyan); }
.about-images .badge-round .badge-label {
  font-size: 11px; font-weight: 700; line-height: 1.3; margin-top: 4px;
  color: rgba(255, 255, 255, 0.85); text-transform: uppercase; letter-spacing: 0.05em;
}

.about-copy p { font-size: var(--fs-body); color: var(--text-2); line-height: 1.85; margin-bottom: var(--space-5); }
.about-copy p strong { color: var(--navy); font-weight: 700; }

.skill-bars { display: flex; flex-direction: column; gap: 18px; margin: var(--space-6) 0; }
.skill-bars .skill-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.skill-bars .skill-label,
.skill-bars .skill-pct { font-family: var(--font-head); font-size: var(--fs-ui); font-weight: 700; color: var(--navy); }
.skill-bars .skill-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.skill-bars .skill-fill {
  height: 100%; width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  transition: width 1.4s var(--ease);
}
.no-js .skill-bars .skill-fill { width: 100%; }

/* --- 5.3 Why block --------------------------------------------------- */
.why-media { position: relative; }
.why-media .media { height: 520px; border-radius: var(--radius-xl); }

/* --- 5.4 Style guide page ------------------------------------------- */
.guide-section { padding: var(--space-8) 0; border-bottom: 1px solid var(--border); }
.guide-section > h2 { margin-bottom: var(--space-6); font-size: 32px; }
.guide-row { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--space-4); }
.swatch { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.swatch .swatch-chip { height: 80px; }
.swatch .swatch-meta { padding: 10px 12px; font-size: 15px; }
.swatch .swatch-meta strong { display: block; font-family: var(--font-head); color: var(--navy); }
.guide-section .swatch-chip { border-bottom: 1px solid var(--border); }
.swatch .swatch-meta code { color: var(--text-2); font-size: 14px; }

/* ==========================================================================
   WordPress theme additions (appended by the CableNet WP theme)
   ========================================================================== */
.container-narrow { max-width: 900px; }
.container-wide { max-width: 1400px; }

/* Section visibility helpers (ACF Section Settings) */
@media (min-width: 1025px) { .hide-desktop { display: none !important; } }
@media (min-width: 769px) and (max-width: 1024px) { .hide-tablet { display: none !important; } }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }

/* Blog pagination */
.pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(20, 20, 83, 0.15); color: var(--navy, #141453); font-weight: 600; text-decoration: none; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--navy, #141453); color: #fff; }

/* Contact Form 7 — inherit the .enquiry-form field styling */
.enquiry-form .wpcf7-form-control-wrap { display: block; }
.enquiry-form .wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 0.85rem; color: #c0392b; }
.enquiry-form .wpcf7-response-output { margin: 0 0 18px; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(20, 20, 83, 0.15); font-weight: 600; }
.enquiry-form .wpcf7-spinner { margin: 0 0 0 12px; }
form.enquiry-form.sent .wpcf7-response-output { border-color: #27ae60; color: #1e8449; }
form.enquiry-form.invalid .wpcf7-response-output, form.enquiry-form.failed .wpcf7-response-output { border-color: #c0392b; color: #c0392b; }

/* Logo text fallback (before demo import) */
.site-logo-text { font-weight: 800; font-size: 1.3rem; color: var(--navy, #141453); }
.site-footer .site-logo-text { color: #fff; }
