:root {
  --navy: #0d1b2a;
  --navy-2: #13263b;
  --blue: #1b4d8c;
  --blue-2: #2569b6;
  --gold: #c89b3c;
  --gold-soft: #f2dfb8;
  --ink: #132033;
  --muted: #607086;
  --line: #dce4ee;
  --light: #f5f7fa;
  --white: #ffffff;
  --success: #18a957;
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: start;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-logo {
  width: 64px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: var(--white);
}

.brand strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer .brand-logo {
  width: 86px;
  height: 66px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #3d4c60;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(27, 77, 140, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--blue-2);
  box-shadow: 0 18px 34px rgba(27, 77, 140, 0.3);
}

.btn.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.btn.gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(200, 155, 60, 0.24);
}

.btn.outline {
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(27, 77, 140, 0.24);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.9) 44%, rgba(13, 27, 42, 0.2) 100%),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=82") center right / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(0deg, rgba(13, 27, 42, 0.7), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: 42px;
  padding: 40px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.6vw, 4.85rem);
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

h3 {
  color: var(--navy);
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 720px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.hero-signal-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 18, 32, 0.38);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  animation: readinessFloat 4.8s ease-in-out infinite;
}

.hero-signal-strip span:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-signal-strip span:nth-child(3) {
  animation-delay: 1s;
}

.hero-signal-strip i {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2ed47a;
  box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.58);
  animation: signalPulse 1.8s ease-out infinite;
}

.hero-signal-strip span:nth-child(2) i {
  background: var(--gold);
  animation-delay: 0.35s;
}

.hero-signal-strip span:nth-child(3) i {
  background: #62a8ff;
  animation-delay: 0.7s;
}


.trust-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  max-width: calc(100vw - 80px);
  margin-top: 30px;
}

.trust-pill {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.28;
  white-space: nowrap;
}

.trust-pill svg {
  flex: 0 0 auto;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.hero-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-lab {
  position: relative;
  margin-top: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 70% 26%, rgba(98, 168, 255, 0.24), transparent 34%),
    rgba(7, 18, 32, 0.74);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.hero-lab::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.hero-lab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(98, 168, 255, 0.16), transparent);
  transform: translateX(-110%);
  animation: heroScan 4.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-lab-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.lab-topline,
.lab-readouts,
.lab-sensors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lab-topline span,
.lab-readouts span,
.sensor-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-topline span {
  padding: 8px 10px;
}

.lab-topline strong {
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-monitor {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(98, 168, 255, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(rgba(98, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 14, 26, 0.92), rgba(12, 31, 52, 0.88));
  background-size: 100% 38px, 52px 100%, 100% 100%;
  box-shadow: inset 0 0 34px rgba(98, 168, 255, 0.18), 0 0 28px rgba(98, 168, 255, 0.1);
}

.lab-monitor::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, rgba(200, 155, 60, 0.2) 50%, transparent 54%);
  transform: translateX(-120%);
  animation: monitorSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.lab-monitor svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lab-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.lab-trace {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
  filter: drop-shadow(0 0 12px rgba(200, 155, 60, 0.74));
  animation: heroTrace 3s linear infinite;
  opacity: 0.42;
}

.lab-trace.secondary {
  stroke: #62a8ff;
  stroke-width: 3;
  opacity: 0.62;
  animation-delay: 0.9s;
}

.lab-cursor {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.72);
  animation: heroCursor 3s linear infinite;
}

.lab-calibration {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.calibration-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(200, 155, 60, 0.72);
  animation: calibrationPing 2.8s ease-out infinite;
}

.calibration-node::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200, 155, 60, 0.46);
  border-radius: 50%;
}

.calibration-node.node-a {
  left: 18%;
  top: 58%;
}

.calibration-node.node-b {
  left: 48%;
  top: 34%;
  background: #62a8ff;
  box-shadow: 0 0 18px rgba(98, 168, 255, 0.72);
  animation-delay: 0.7s;
}

.calibration-node.node-b::before {
  border-color: rgba(98, 168, 255, 0.44);
}

.calibration-node.node-c {
  left: 78%;
  top: 62%;
  background: #2ed47a;
  box-shadow: 0 0 18px rgba(46, 212, 122, 0.66);
  animation-delay: 1.35s;
}

.calibration-node.node-c::before {
  border-color: rgba(46, 212, 122, 0.38);
}

.lab-readouts span {
  flex: 1;
  padding: 12px;
}

.lab-readouts b {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.lab-sensors {
  align-items: stretch;
}

.sensor-chip {
  position: relative;
  flex: 1;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
}

.sensor-chip::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #2ed47a;
  box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.54);
  animation: sensorGlow 1.8s ease-out infinite;
}

.sensor-chip.is-hot {
  border-color: rgba(200, 155, 60, 0.58);
  background: rgba(200, 155, 60, 0.14);
  box-shadow: 0 0 22px rgba(200, 155, 60, 0.16);
}

.sensor-chip:nth-child(2)::before {
  background: var(--gold);
  animation-delay: 0.35s;
}

.sensor-chip:nth-child(3)::before {
  background: #62a8ff;
  animation-delay: 0.7s;
}


.status-card {
  padding: 22px;
}

.status-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
}

.status-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-strip div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.metric-strip b {
  display: block;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.metric-strip span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

section {
  padding: 76px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  background: var(--light);
}

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

.card-grid > p,
.grid > p,
.blog-grid > p,
.why-grid > p,
.counter-row > p,
.timeline > p,
.testing-cues > p,
.gallery-grid > p,
.testimonial-grid > p,
.form-grid > p,
.footer-grid > p,
.service-detail > p,
.service-expanded > p,
.process-panel > p,
.article-layout > p {
  display: contents;
}

.card-grid > br,
.grid > br,
.blog-grid > br,
.why-grid > br,
.counter-row > br,
.timeline > br,
.testing-cues > br,
.gallery-grid > br,
.testimonial-grid > br,
.form-grid > br,
.footer-grid > br {
  display: none;
}

.card-grid > .service-card:empty,
.card-grid > p:empty {
  display: none;
}

.service-card,
.testimonial,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.06);
}

.service-card {
  min-height: 245px;
  height: 100%;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  border-radius: 8px;
  background: #e7f0fb;
}

.service-card p,
.why-card p,
.step p,
.about-copy p,
.testimonial p {
  color: var(--muted);
}

.service-card p {
  margin: 12px 0 0;
}

.testing-gallery {
  padding: 62px 0 70px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 20% 10%, rgba(27, 77, 140, 0.12), transparent 34%);
}

.testing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 24px;
}

.testing-intro .section-head {
  margin-bottom: 0;
}

.testing-intro .section-head h2 {
  max-width: 760px;
  line-height: 1.2;
}

.testing-intro .section-head p {
  margin-top: 22px;
  line-height: 1.75;
}

.testing-note {
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.08);
  backdrop-filter: blur(16px);
}

.testing-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
}

.testing-note p {
  margin: 0;
  color: var(--muted);
}

.testing-cues {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.testing-cue {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #2f4055;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(13, 27, 42, 0.05);
}

.testing-cue i {
  color: var(--blue);
  flex: 0 0 auto;
}

.polygraph-animation-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: center;
  margin: 18px 0 22px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(27, 77, 140, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 155, 60, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef4fb 58%, #e4eef9);
  box-shadow: 0 22px 60px rgba(13, 27, 42, 0.1);
}

.polygraph-animation-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(27, 77, 140, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.polygraph-animation-copy {
  position: relative;
  z-index: 1;
}

.polygraph-animation-copy h3 {
  max-width: 460px;
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.polygraph-animation-copy p {
  margin: 0;
  color: var(--muted);
}

.polygraph-vector {
  position: relative;
  z-index: 1;
  min-height: 256px;
  display: grid;
  place-items: center;
}

.polygraph-console {
  position: relative;
  width: min(100%, 520px);
  min-height: 238px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, #0d1b2a, #17345a);
  box-shadow: 0 24px 55px rgba(13, 27, 42, 0.26);
  animation: consoleFloat 5s ease-in-out infinite;
}

.polygraph-console::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -18px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.2);
  filter: blur(12px);
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.status-lights {
  display: flex;
  gap: 8px;
}

.status-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(200, 155, 60, 0.65);
  animation: sensorBlink 1.6s ease-in-out infinite;
}

.status-lights span:nth-child(2) {
  background: #2ed47a;
  animation-delay: 0.25s;
}

.status-lights span:nth-child(3) {
  background: #62a8ff;
  animation-delay: 0.5s;
}

.console-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-screen {
  position: relative;
  height: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(84, 177, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 177, 255, 0.11) 1px, transparent 1px),
    #071421;
  background-size: 100% 22px, 36px 100%, auto;
}

.signal-screen svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-screen path {
  fill: none;
  stroke: #f4c957;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 690;
  stroke-dashoffset: 690;
  filter: drop-shadow(0 0 8px rgba(244, 201, 87, 0.72));
  animation: drawSignal 3.2s linear infinite;
}

.scan-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  background: linear-gradient(90deg, transparent, rgba(98, 168, 255, 0.22), transparent);
  animation: scanSweep 2.8s ease-in-out infinite;
}

.paper-feed {
  position: relative;
  margin-top: 14px;
  height: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(13, 27, 42, 0.1);
}

.paper-feed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(27, 77, 140, 0.1) 18px),
    linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.2), transparent);
  animation: paperMove 1.4s linear infinite;
}

.paper-feed svg {
  position: absolute;
  inset: 12px 14px;
  width: calc(100% - 28px);
  height: calc(100% - 24px);
}

.paper-feed path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawPaperTrace 2.4s linear infinite;
}

.sensor-cluster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.sensor-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sensor-chip span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2ed47a;
  box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.48);
  animation: sensorPulse 1.8s ease-out infinite;
}

.sensor-chip:nth-child(2) span {
  background: var(--gold);
  animation-delay: 0.35s;
}

.sensor-chip:nth-child(3) span {
  background: #62a8ff;
  animation-delay: 0.7s;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gallery-card.large {
  min-height: 520px;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 700ms ease, opacity 700ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 28%, rgba(13, 27, 42, 0.88));
}

.gallery-card:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
}

.gallery-caption strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.gallery-caption em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(19, 38, 59, 0.94)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  min-height: 205px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.why-card .icon-box {
  color: var(--gold-soft);
  background: rgba(200, 155, 60, 0.14);
}

.why-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.counter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.counter {
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.counter b {
  display: block;
  color: var(--gold-soft);
  font-family: "Poppins", sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.counter span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold);
  font-weight: 900;
}

.about {
  background: var(--light);
}

.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.86;
}

.about-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(16px);
}

.about-badge b {
  display: block;
  color: var(--gold-soft);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2f4055;
  font-weight: 700;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--blue);
}

.testimonials {
  background: var(--navy);
}

.testimonials h2,
.testimonials h3 {
  color: var(--white);
}

.testimonial-grid {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: testimonialMarquee 34s linear infinite;
  will-change: transform;
}

.testimonials .container {
  overflow: hidden;
}

.testimonial-grid:hover {
  animation-play-state: paused;
}

.testimonial {
  flex: 0 0 360px;
  min-height: 280px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.quote {
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial footer {
  color: var(--white);
  font-weight: 900;
}

.testimonial small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-grid {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}

.booking {
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(255, 255, 255, 1)),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.booking-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #33445a;
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cad5e2;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 77, 140, 0.12);
}

.booking-note {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  color: #435369;
  background: #eef4fb;
  font-size: 0.92rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

details.faq-item {
  padding: 0 22px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.final-cta {
  padding: 68px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.94), rgba(27, 77, 140, 0.88)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.final-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  padding: 58px 0 78px;
  color: rgba(255, 255, 255, 0.72);
  background: #08111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer h3,
.footer strong {
  color: var(--white);
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 30;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 16px 34px rgba(24, 169, 87, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 42px rgba(24, 169, 87, 0.42);
}

.whatsapp svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
}

.whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(24, 169, 87, 0.3);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 29;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 8px;
  background: rgba(8, 17, 29, 0.9);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 700ms ease forwards;
}

.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

.cvld-reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
}

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

.hero h1 {
  animation: textRise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy,
.hero-actions {
  animation: textRise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy {
  animation-delay: 120ms;
}

.hero-actions {
  animation-delay: 220ms;
}

.trust-pill,
.icon-box {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-pill:hover,
.service-card:hover .icon-box,
.why-card:hover .icon-box {
  transform: translateY(-3px);
}

.hero-panel {
  animation: gentleFloat 5s ease-in-out infinite;
}

.hero-lab {
  animation: gentleFloat 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}


@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes heroScan {
  0% {
    transform: translateX(-110%);
  }
  52%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes monitorSweep {
  0%,
  45% {
    opacity: 0;
    transform: translateX(-120%);
  }
  58% {
    opacity: 1;
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes heroTrace {
  0% {
    stroke-dashoffset: 980;
  }
  58%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes heroCursor {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

@keyframes readinessFloat {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.16);
  }
  50% {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 60, 0.34);
  }
}

@keyframes signalPulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.58);
  }
  70% {
    opacity: 0.72;
    box-shadow: 0 0 0 9px rgba(46, 212, 122, 0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(46, 212, 122, 0);
  }
}

@keyframes calibrationPing {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes sensorGlow {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.5);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 13px rgba(46, 212, 122, 0);
  }
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(46, 212, 122, 0);
  }
}

@keyframes consoleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes drawSignal {
  0% {
    stroke-dashoffset: 690;
  }
  58%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scanSweep {
  0% {
    left: -60px;
    opacity: 0;
  }
  15%,
  85% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes paperMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(18px);
  }
}

@keyframes drawPaperTrace {
  0% {
    stroke-dashoffset: 420;
  }
  70%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes sensorBlink {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sensorPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.45);
  }
  75%,
  100% {
    box-shadow: 0 0 0 10px rgba(46, 212, 122, 0);
  }
}

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

  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    align-self: auto;
  }

  .why-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .testing-intro,
  .testing-cues {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testing-intro {
    grid-template-columns: 1fr;
  }

  .polygraph-animation-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-card.large {
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .hero-lab {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 0;
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-actions .phone-link {
    display: none;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(13, 27, 42, 0.94), rgba(13, 27, 42, 0.78)),
      url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80") center / cover;
  }

  .hero-grid {
    min-height: auto;
    padding: 42px 0 46px;
    gap: 34px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-lab-inner {
    padding: 20px;
  }

  .lab-readouts,
  .lab-sensors {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lab-monitor {
    min-height: 150px;
  }

  .testing-gallery {
    padding: 58px 0 66px;
  }

  .trust-row,
  .card-grid,
  .why-grid,
  .counter-row,
  .timeline,
  .footer-grid,
  .gallery-grid,
  .testing-cues,
  .testing-intro,
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    gap: 16px;
  }

  .testimonial {
    flex-basis: min(320px, calc(100vw - 72px));
  }

  .trust-row {
    width: 100%;
    max-width: none;
  }

  .trust-pill {
    min-width: 0;
    white-space: normal;
  }

  .gallery-card,
  .gallery-card.large {
    min-height: 330px;
  }

  .polygraph-animation-panel {
    margin: 16px 0 18px;
    padding: 18px;
  }

  .polygraph-vector {
    min-height: 236px;
  }

  .polygraph-console {
    padding: 16px;
    min-height: 226px;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-screen {
    height: 86px;
  }

  .paper-feed {
    height: 48px;
  }

  .sensor-cluster {
    grid-template-columns: 1fr;
  }

  .whatsapp svg {
    width: 30px;
    height: 30px;
  }

  section {
    padding: 72px 0;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
    height: 420px;
  }

  .final-cta .container {
    display: block;
  }

  .final-cta .hero-actions {
    margin-top: 24px;
  }

  .whatsapp {
    right: 16px;
    bottom: 82px;
    width: 54px;
    height: 54px;
  }

  .mobile-cta {
    display: grid;
  }

  .footer {
    padding-bottom: 132px;
  }
}

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

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

:root {
  --navy: #0d1b2a;
  --blue: #1b4d8c;
  --blue-2: #2569b6;
  --gold: #c89b3c;
  --gold-soft: #f2dfb8;
  --ink: #132033;
  --muted: #607086;
  --line: #dce4ee;
  --light: #f5f7fa;
  --white: #ffffff;
  --success: #18a957;
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar span,
.topbar a,
.phone-link,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-logo {
  width: 64px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: var(--white);
}

.brand strong,
.footer strong {
  display: block;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  color: #3d4c60;
  font-size: 0.95rem;
  font-weight: 700;
}

.phone-link {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(27, 77, 140, 0.24);
}

.btn.gold {
  color: var(--navy);
  background: var(--gold);
}

.btn.secondary {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.page-hero {
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.72)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.page-hero.blog-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96) 0%, rgba(13, 27, 42, 0.82) 48%, rgba(13, 27, 42, 0.38) 100%),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1800&q=84") center right / cover;
}

.page-hero.blog-process-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96) 0%, rgba(13, 27, 42, 0.78) 54%, rgba(13, 27, 42, 0.28) 100%),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=84") center right / cover;
}

.page-hero.blog-privacy-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.97) 0%, rgba(13, 27, 42, 0.8) 52%, rgba(13, 27, 42, 0.3) 100%),
    url("https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=1800&q=84") center right / cover;
}

.page-hero .container {
  min-height: 0;
  display: grid;
  align-content: center;
  padding: 50px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.6vw, 3.75rem);
  line-height: 1.05;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

section {
  padding: 64px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.card p,
.split-copy p,
.faq-item p,
.service-detail li {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.service-card-image {
  width: 100%;
  height: 158px;
  display: block;
  margin: -26px -26px 22px;
  max-width: calc(100% + 52px);
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.96) contrast(1.02);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
  border-radius: 8px;
  background: #e7f0fb;
  transition: transform 220ms ease;
}

.card:hover .icon-box {
  transform: translateY(-3px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.media-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: pageRise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.94), rgba(27, 77, 140, 0.82)),
    radial-gradient(circle at 76% 22%, rgba(200, 155, 60, 0.24), transparent 32%);
}

.blog-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 700ms ease;
}

.blog-card:hover .blog-art img {
  transform: scale(1.05);
}

.blog-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.1) 0%, rgba(13, 27, 42, 0.9) 100%),
    linear-gradient(90deg, rgba(13, 27, 42, 0.78), rgba(13, 27, 42, 0.18));
}

.blog-art::after {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.blog-art i {
  position: absolute;
  left: 32px;
  top: 30px;
  color: var(--gold-soft);
  z-index: 3;
}

.blog-wave {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), #ffffff, var(--gold), transparent);
  clip-path: polygon(0 50%, 12% 50%, 15% 26%, 18% 76%, 22% 50%, 34% 50%, 38% 20%, 43% 82%, 48% 50%, 100% 50%, 100% 58%, 48% 58%, 43% 88%, 38% 28%, 34% 58%, 22% 58%, 18% 82%, 15% 34%, 12% 58%, 0 58%);
  animation: signalMove 3s linear infinite;
}

.blog-art-label {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 3;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.15;
}

.blog-card-body {
  padding: 28px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card p,
.article-body p {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 34px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding-left: 22px;
  color: var(--muted);
}

.article-sidebar {
  position: sticky;
  top: 106px;
}

.article-graphic {
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2f4055;
  font-weight: 700;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--blue);
}

.light {
  background: var(--light);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.service-expanded {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: 46px;
  align-items: center;
}

.service-copy p {
  color: var(--muted);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(27, 77, 140, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.96), rgba(27, 77, 140, 0.82)),
    radial-gradient(circle at 18% 18%, rgba(200, 155, 60, 0.2), transparent 34%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.service-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.02);
  transition: transform 700ms ease, opacity 700ms ease;
}

.service-visual:hover .service-photo {
  opacity: 0.42;
  transform: scale(1.06);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.9), rgba(27, 77, 140, 0.72)),
    radial-gradient(circle at 18% 18%, rgba(200, 155, 60, 0.22), transparent 34%);
}

.visual-orbit {
  position: absolute;
  top: 38px;
  right: 34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(242, 223, 184, 0.34);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(200, 155, 60, 0.6);
}

.visual-orbit::before {
  top: 12px;
  left: 22px;
}

.visual-orbit::after {
  right: 18px;
  bottom: 22px;
}

.signal-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 96px;
  padding: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signal-screen {
  position: relative;
  height: 112px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 42px 100%,
    rgba(8, 17, 29, 0.74);
}

.signal-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.22), transparent);
  animation: sweep 3.6s ease-in-out infinite;
}

.signal-line {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), #ffffff, var(--gold), transparent);
  clip-path: polygon(0 48%, 12% 48%, 15% 28%, 18% 72%, 22% 48%, 35% 48%, 38% 22%, 42% 78%, 46% 48%, 100% 48%, 100% 54%, 46% 54%, 42% 84%, 38% 28%, 35% 54%, 22% 54%, 18% 78%, 15% 34%, 12% 54%, 0 54%);
  animation: signalMove 2.8s linear infinite;
}

.visual-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.visual-meta span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.06);
  animation: pageRise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.info-card p {
  color: var(--muted);
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-steps {
  display: grid;
  gap: 14px;
  counter-reset: serviceSteps;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  counter-increment: serviceSteps;
}

.process-step::before {
  content: counter(serviceSteps);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.deliverable-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  display: flex;
  gap: 10px;
  color: #2f4055;
  font-weight: 700;
}

.deliverable-list i {
  flex: 0 0 auto;
  color: var(--blue);
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.06);
}

.panel.dark {
  color: var(--white);
  background: var(--navy);
}

.panel.dark h3 {
  color: var(--white);
}

.panel.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-vector {
  position: relative;
  min-height: 260px;
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 155, 60, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.contact-vector::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.contact-vector svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-vector .trace-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  filter: drop-shadow(0 0 10px rgba(200, 155, 60, 0.5));
  animation: contactTrace 3.2s linear infinite;
}

.contact-vector .map-pin {
  transform-origin: 250px 96px;
  animation: pinPulse 1.8s ease-in-out infinite;
}

.contact-vector .sensor-dot {
  animation: dotGlow 1.8s ease-in-out infinite;
}

.contact-vector .sensor-dot:nth-of-type(2) {
  animation-delay: 0.3s;
}

.contact-vector .sensor-dot:nth-of-type(3) {
  animation-delay: 0.6s;
}

.map-section {
  padding-top: 0;
  background: linear-gradient(180deg, var(--white), var(--light));
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, 0.08);
}

.map-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.map-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.map-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
  border-top: 1px solid var(--line);
  filter: saturate(0.95) contrast(1.02);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #33445a;
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cad5e2;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 0 22px;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  padding: 56px 0 78px;
  color: rgba(255, 255, 255, 0.72);
  background: #08111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer .brand strong,
.footer h3 {
  color: var(--white);
}

.footer .brand-logo {
  width: 86px;
  height: 66px;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 30;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 16px 34px rgba(24, 169, 87, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 42px rgba(24, 169, 87, 0.42);
}

.whatsapp svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
}

.whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(24, 169, 87, 0.3);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.page-hero h1,
.page-hero .lead,
.card,
.panel,
.media-card,
.faq-item {
  animation: pageRise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero .lead {
  animation-delay: 120ms;
}

.card:nth-child(2),
.faq-item:nth-child(2) {
  animation-delay: 80ms;
}

.card:nth-child(3),
.faq-item:nth-child(3) {
  animation-delay: 140ms;
}

.card:nth-child(4),
.faq-item:nth-child(4) {
  animation-delay: 200ms;
}

.info-card:nth-child(2) {
  animation-delay: 80ms;
}

.info-card:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-80%);
    opacity: 0;
  }
  35%,
  65% {
    opacity: 1;
  }
  100% {
    transform: translateX(80%);
  }
}

@keyframes signalMove {
  to {
    transform: translateX(12%);
  }
}

@keyframes contactTrace {
  0% {
    stroke-dashoffset: 540;
  }
  62%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes pinPulse {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes dotGlow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 29;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 8px;
  background: rgba(8, 17, 29, 0.9);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
}

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

  .grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .service-detail,
  .service-expanded,
  .process-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .service-visual {
    min-height: 380px;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-copy {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .phone-link {
    display: none;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  section {
    padding: 52px 0;
  }

  .page-hero .container {
    min-height: 0;
    padding: 40px 0;
  }

  .grid,
  .blog-grid,
  .footer-grid,
  .info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 360px;
    padding: 20px;
  }

  .signal-card {
    margin-top: 72px;
    padding: 18px;
  }

  .visual-meta {
    grid-template-columns: 1fr;
  }

  .contact-vector {
    min-height: 230px;
  }

  .map-copy {
    padding: 22px;
  }

  .map-frame {
    height: 340px;
  }

  .media-card img {
    height: 380px;
  }

  .cta-band .container {
    display: block;
  }

  .cta-band .btn {
    margin-top: 20px;
  }

  .whatsapp {
    right: 16px;
    bottom: 82px;
    width: 54px;
    height: 54px;
  }

  .whatsapp svg {
    width: 30px;
    height: 30px;
  }

  .mobile-cta {
    display: grid;
  }
}

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

/* Animated inner-page vector artwork. Home uses the separate hero artwork and is not targeted here. */
.page-hero {
  overflow: hidden;
}

.page-hero .container.has-inner-vector {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.inner-vector {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  opacity: 0.96;
  pointer-events: none;
}

.inner-vector-svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.22));
}

.inner-vector-orbit {
  stroke: rgba(242, 223, 184, 0.62);
  stroke-width: 2;
  stroke-dasharray: 9 14;
  transform-origin: 50% 50%;
  animation: innerOrbit 18s linear infinite;
}

.inner-vector-orbit-alt {
  stroke: rgba(98, 168, 255, 0.38);
  animation-direction: reverse;
  animation-duration: 24s;
}

.inner-vector-card {
  transform-origin: 50% 50%;
  animation: innerFloat 5.6s ease-in-out infinite;
}

.inner-vector-trace {
  stroke: url("#cvldVectorGold");
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 330;
  animation: innerTrace 3.2s linear infinite;
}

.inner-vector-dot {
  fill: #f2dfb8;
  animation: innerDot 1.8s ease-in-out infinite;
}

.inner-vector-dot-delay-1 {
  animation-delay: 0.28s;
}

.inner-vector-dot-delay-2 {
  animation-delay: 0.56s;
}

.inner-vector-shield {
  transform-origin: 260px 110px;
  animation: innerShield 4.8s ease-in-out infinite;
}

.inner-vector-pulse {
  fill: rgba(98, 168, 255, 0.58);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 3;
  transform-origin: center;
  animation: innerPulse 2.2s ease-out infinite;
}

.inner-vector-pulse-delay {
  fill: rgba(200, 155, 60, 0.7);
  animation-delay: 0.68s;
}

@keyframes innerOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes innerFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes innerTrace {
  from {
    stroke-dashoffset: 330;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes innerDot {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes innerShield {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes innerPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.88);
  }

  70% {
    opacity: 0.2;
    transform: scale(1.28);
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

@media (max-width: 900px) {
  .page-hero .container.has-inner-vector {
    grid-template-columns: 1fr;
  }

  .inner-vector {
    max-width: 340px;
    justify-self: start;
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .inner-vector {
    max-width: min(100%, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-vector *,
  .inner-vector *::before,
  .inner-vector *::after {
    animation: none !important;
  }
}

/* Final responsive hardening for all inner pages. */
.page-hero .container.has-inner-vector {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
}

.page-hero .container.has-inner-vector > :not(.inner-vector),
.page-hero h1,
.page-hero .lead {
  min-width: 0;
}

.inner-vector {
  min-width: 0;
}

.card,
.service-card,
.info-card,
.blog-card,
.panel,
.faq-item,
.service-copy,
.article-body,
.split-copy {
  overflow-wrap: anywhere;
}

.map-frame,
iframe,
svg,
canvas {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .page-hero .container.has-inner-vector {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 28px;
  }

  .inner-vector {
    max-width: 340px;
  }
}

@media (max-width: 900px) {
  .page-hero .container.has-inner-vector {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-block: 42px;
  }

  .inner-vector {
    width: min(340px, 86vw);
    justify-self: start;
    margin-top: 4px;
  }

  .inner-vector-svg {
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.2));
  }

  .split,
  .service-detail,
  .service-expanded,
  .process-panel,
  .article-layout,
  .map-panel {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding-block: 50px;
  }

  .page-hero .container.has-inner-vector {
    gap: 18px;
    padding-block: 34px 38px;
  }

  .inner-vector {
    width: min(250px, 72vw);
    opacity: 0.9;
  }

  .inner-vector-orbit,
  .inner-vector-orbit-alt {
    opacity: 0.7;
  }

  .card-grid,
  .grid,
  .blog-grid,
  .why-grid,
  .info-grid,
  .counter-row,
  .timeline,
  .testing-intro,
  .testing-cues,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .page-hero h1,
  h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .lead,
  .page-hero .lead,
  .section-head p {
    font-size: 1rem;
  }

  .service-visual,
  .contact-vector,
  .media-card,
  .gallery-card,
  .gallery-card.large {
    min-height: auto;
  }

  .service-visual {
    padding: 18px;
  }

  .signal-card {
    width: 100%;
    margin-top: 54px;
  }

  .map-frame {
    height: 320px;
  }

  .footer {
    padding-bottom: 132px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-logo {
    width: 50px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .nav-actions .btn {
    min-height: 40px;
    padding-inline: 11px;
  }

  .inner-vector {
    width: min(220px, 72vw);
  }

  .card,
  .service-card,
  .info-card,
  .panel,
  .faq-item {
    padding: 20px;
  }
}

/* Site-wide alignment fixes. Keep this final so it wins over older duplicated theme rules. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

section {
  position: relative;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p,
.page-hero .lead,
.hero-copy,
.split-copy p,
.service-copy p,
.article-body p {
  max-width: 72ch;
}

.section-head.center p,
.page-hero .lead {
  margin-inline: auto;
}

.nav,
.hero-grid,
.card-grid,
.grid,
.why-grid,
.counter-row,
.timeline,
.testing-intro,
.testing-cues,
.gallery-grid,
.about-grid,
.booking-grid,
.testimonial-grid,
.footer-grid,
.split,
.service-detail,
.service-expanded,
.process-panel,
.article-layout,
.info-grid,
.form-grid {
  align-items: stretch;
}

.hero-grid,
.about-grid,
.booking-grid,
.split,
.service-detail,
.service-expanded,
.process-panel,
.article-layout {
  gap: clamp(24px, 4vw, 48px);
}

.card-grid,
.grid,
.why-grid,
.info-grid,
.blog-grid {
  gap: 22px;
}

.service-card,
.card,
.why-card,
.info-card,
.blog-card,
.testimonial,
.panel {
  min-width: 0;
}

.service-card,
.card,
.why-card,
.info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card h3,
.card h3,
.why-card h3,
.info-card h3,
.blog-card h3 {
  width: 100%;
}

.service-card p,
.card p,
.why-card p,
.info-card p,
.blog-card p {
  width: 100%;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero .container .lead {
  margin-left: 0;
}

.page-hero .container .eyebrow {
  justify-content: flex-start;
}

.page-hero h1,
.page-hero .lead {
  text-align: left;
}

.final-cta .container,
.cta-band .container {
  align-items: center;
  gap: 24px;
}

.form-grid .full,
.form-field.full {
  grid-column: 1 / -1;
}

@media (min-width: 721px) {
  .page-hero .container {
    min-height: 280px;
    justify-content: center;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .booking-grid,
  .split,
  .service-detail,
  .service-expanded,
  .process-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .service-visual,
  .article-sidebar,
  .panel.dark {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand strong {
    font-size: clamp(0.92rem, 4.4vw, 1.05rem);
  }

  .brand-logo {
    flex: 0 0 auto;
    width: 58px;
    height: 46px;
  }

  .nav-actions {
    flex: 0 0 auto;
  }

  .nav-actions .btn {
    padding-inline: 12px;
    white-space: nowrap;
  }

  .hero-grid,
  .page-hero .container {
    text-align: left;
  }

  .hero-grid {
    padding-block: 38px 44px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
  }

  .hero-copy,
  .page-hero .lead {
    font-size: 1rem;
  }

  .section-head,
  .section-head.center {
    max-width: 100%;
    text-align: left;
  }

  .section-head.center .eyebrow {
    justify-content: flex-start;
  }

  .section-head.center p,
  .page-hero .lead {
    margin-inline: 0;
  }

  .card-grid,
  .grid,
  .why-grid,
  .counter-row,
  .timeline,
  .testing-intro,
  .testing-cues,
  .gallery-grid,
  .about-grid,
  .booking-grid,
  .testimonial-grid,
  .footer-grid,
  .split,
  .service-detail,
  .service-expanded,
  .process-panel,
  .article-layout,
  .info-grid,
  .form-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .card,
  .why-card,
  .info-card,
  .panel {
    padding: 22px;
  }

  .hero-actions,
  .final-cta .hero-actions,
  .cta-band .container {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .final-cta .btn,
  .cta-band .btn {
    width: 100%;
  }
}

/* Canonical layout pass: keep this at the end to override earlier duplicated rules. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.page-hero .container {
  min-height: 280px;
  display: grid;
  align-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding-top: 46px;
  padding-bottom: 46px;
}

.page-hero .container:not(.has-inner-vector) {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero .container.has-inner-vector {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
}

.page-hero .container > * {
  min-width: 0;
}

.page-hero h1,
.page-hero .lead {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.page-hero .eyebrow {
  justify-content: flex-start;
}

.inner-vector {
  width: min(100%, 380px);
  max-width: 380px;
  justify-self: end;
}

.inner-vector-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.grid,
.card-grid,
.blog-grid,
.why-grid,
.info-grid,
.counter-row,
.timeline,
.testing-cues,
.testing-intro,
.gallery-grid,
.testimonial-grid,
.footer-grid,
.form-grid,
.split,
.service-detail,
.service-expanded,
.process-panel,
.article-layout,
.booking-grid,
.about-grid {
  min-width: 0;
}

.grid,
.card-grid,
.blog-grid,
.why-grid,
.info-grid {
  align-items: stretch;
}

.card,
.service-card,
.info-card,
.why-card,
.blog-card,
.panel,
.faq-item,
.service-copy,
.article-body,
.split-copy,
.form-field,
.map-copy {
  min-width: 0;
  overflow-wrap: break-word;
}

img,
svg,
canvas,
iframe {
  max-width: 100%;
}

@media (max-width: 1080px) {
  .page-hero .container.has-inner-vector {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 320px);
  }

  .split,
  .service-detail,
  .service-expanded,
  .process-panel,
  .article-layout,
  .booking-grid,
  .about-grid,
  .map-panel {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .service-visual,
  .article-sidebar,
  .panel.dark {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 820px) {
  .page-hero .container,
  .page-hero .container.has-inner-vector {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .inner-vector {
    width: min(300px, 78vw);
    max-width: 300px;
    justify-self: start;
    margin-top: 2px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .page-hero .container,
  .page-hero .container.has-inner-vector {
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .inner-vector {
    width: min(230px, 70vw);
    max-width: 230px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.8vw, 2.45rem);
  }

  .page-hero .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .section-head,
  .section-head.center {
    max-width: 100%;
    text-align: left;
  }

  .section-head.center {
    margin-right: 0;
    margin-left: 0;
  }

  .section-head.center .eyebrow {
    justify-content: flex-start;
  }

  .section-head.center p {
    margin-right: 0;
    margin-left: 0;
  }

  .grid,
  .card-grid,
  .blog-grid,
  .why-grid,
  .info-grid,
  .counter-row,
  .timeline,
  .testing-cues,
  .testing-intro,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .card,
  .service-card,
  .info-card,
  .why-card,
  .panel,
  .faq-item {
    padding: 20px;
  }

  .cta-band .container,
  .final-cta .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .cta-band .btn,
  .final-cta .btn,
  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .inner-vector {
    width: min(205px, 68vw);
    max-width: 205px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   HOME PAGE: CONTENT ALIGNMENT, NEW SECTIONS, REVEAL FIX
═══════════════════════════════════════════════════════════════ */

/* ── Scroll-reveal: ensure is-visible always wins ── */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.cvld-reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.cvld-reveal-ready .scroll-reveal.is-visible,
.scroll-reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Services section CTA row ── */
.home-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ── Stats band ── */
.stats-band {
  padding: 0;
  background: var(--navy);
}

.stats-band-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
}

.stat-item b {
  display: block;
  color: var(--gold-soft);
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* ── Areas served ── */
.areas-section {
  background: var(--light);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(13, 27, 42, 0.05);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.area-chip i {
  color: var(--blue);
}

.area-chip:hover {
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.1);
  transform: translateY(-2px);
}

/* ── Booking alternative contact links ── */
.booking-contact-alt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.booking-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.94rem;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.05);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.booking-contact-link:hover {
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.1);
  transform: translateY(-2px);
}

.booking-contact-link i {
  flex: 0 0 auto;
  color: var(--blue);
}

.booking-contact-link strong {
  color: var(--blue);
}

/* ── Testimonials outer overflow wrapper ── */
.testimonials-overflow {
  overflow: hidden;
  width: 100%;
}

/* ── Responsive: stats band ── */
@media (max-width: 900px) {
  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 16px;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 720px) {
  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
  }

  .areas-grid {
    gap: 9px;
  }

  .area-chip {
    font-size: 0.86rem;
    padding: 9px 15px;
  }

  .home-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .home-cta-row .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-band-grid {
    grid-template-columns: 1fr;
  }
  .stat-item:nth-child(odd) {
    border-right: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL ICONS & FOOTER BRAND COLUMN
═══════════════════════════════════════════════════════════════ */

/* Brand column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

/* Social icon row */
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-row-sm {
  gap: 8px;
}

/* Individual icon button */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 200ms ease, color 200ms ease,
              border-color 200ms ease, transform 200ms ease;
  flex-shrink: 0;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

/* Smaller variant used in contact column */
.social-row-sm .social-icon {
  width: 34px;
  height: 34px;
}

.social-row-sm .social-icon svg {
  width: 15px;
  height: 15px;
}

/* Extra-small variant in bottom bar */
.social-icon-xs {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.social-icon-xs svg {
  width: 14px;
  height: 14px;
}

/* Platform-specific hover tints */
.social-icon[aria-label="Facebook"]:hover        { background: #1877f2; border-color: #1877f2; }
.social-icon[aria-label="Instagram"]:hover        { background: #e1306c; border-color: #e1306c; }
.social-icon[aria-label="X / Twitter"]:hover      { background: #000;    border-color: #000; }
.social-icon[aria-label="LinkedIn"]:hover         { background: #0a66c2; border-color: #0a66c2; }

/* Footer bottom bar */
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .social-row {
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ================================================================
   WORDPRESS CONTENT INJECTION FIXES
   Prevents wpautop / wptexturize from breaking grid & flex layouts.
   ================================================================ */

/* Hide any stray <p> or <br> WordPress injects directly into grid
   and flex containers. Using `display:contents` makes the <p> itself
   invisible while still letting its children participate in the grid. */
.card-grid > p,
.hero-grid > p,
.why-grid > p,
.timeline > p,
.counter-row > p,
.stats-band-grid > p,
.testing-cues > p,
.gallery-grid > p,
.testimonial-grid > p,
.form-grid > p,
.footer-grid > p,
.areas-grid > p,
.booking-grid > p,
.about-grid > p,
.faq-grid > p,
.blog-grid > p,
.hero-actions > p,
.trust-row > p,
.nav-links > p,
.nav > p {
  display: contents;
}

.card-grid > br,
.hero-grid > br,
.why-grid > br,
.timeline > br,
.testing-cues > br,
.gallery-grid > br,
.testimonial-grid > br,
.form-grid > br,
.footer-grid > br,
.areas-grid > br,
.booking-grid > br,
.about-grid > br,
.faq-grid > br,
.hero-actions > br,
.trust-row > br,
.nav-links > br {
  display: none;
}

/* Empty service cards (rendered by wpautop artefacts) must be hidden */
.card-grid > .service-card:empty,
.card-grid > p:empty,
.card-grid > br {
  display: none !important;
}

/* Ensure the elementor-ready-page wrapper never adds padding that
   shifts content off-grid */
.elementor-ready-page,
.page-builder-ready {
  padding: 0;
  margin: 0;
}

/* Fix: hero-grid min-height prevents content collapsing on WP render */
.hero-grid {
  min-height: 480px;
}

/* Fix: section > .container must never overflow */
section > .container {
  overflow: visible;
}

/* ── How It Works – Animated Circle Track ── */
#process { padding: 90px 0; }

/* ── HOW IT WORKS ──────────────────────────────────────── */
.hiw-accent {
  color: #2e9e63;
  font-style: italic;
}

#process {
  padding: 72px 0 80px;
  background: #fff;
}

.hiw-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  margin-top: 60px;
  position: relative;
}

/* connector line behind circles */
.hiw-track::before {
  content: '';
  position: absolute;
  top: 66px;
  left: calc(12.5% + 60px);
  width: calc(75% - 120px);
  height: 2px;
  background: linear-gradient(90deg, #2e7db5 0%, #c89b3c 33%, #2e9e63 66%, #2e7db5 100%);
  opacity: 0.25;
  z-index: 0;
}

/* Each step */
.hiw-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  z-index: 1;
}
.hiw-step.hiw-visible {
  opacity: 1;
  transform: translateY(0);
}
.hiw-step:nth-child(1) { transition-delay: 0s; }
.hiw-step:nth-child(2) { transition-delay: 0.2s; }
.hiw-step:nth-child(3) { transition-delay: 0.4s; }
.hiw-step:nth-child(4) { transition-delay: 0.6s; }

/* Circle */
.hiw-circle {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.hiw-step:hover .hiw-circle {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.hiw-step[data-step="1"] .hiw-circle { background: #dcedf7; color: #2e7db5; border: 3px solid #2e7db5; }
.hiw-step[data-step="2"] .hiw-circle { background: #fdf3dd; color: #c89b3c; border: 3px solid #c89b3c; }
.hiw-step[data-step="3"] .hiw-circle { background: #dff3e8; color: #2e9e63; border: 3px solid #2e9e63; }
.hiw-step[data-step="4"] .hiw-circle { background: #dcedf7; color: #2e7db5; border: 3px solid #2e7db5; }

.hiw-circle svg {
  width: 52px;
  height: 52px;
}

/* Step number badge */
.hiw-num {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  border: 2px solid #fff;
}
.hiw-step[data-step="1"] .hiw-num { background: #2e7db5; }
.hiw-step[data-step="2"] .hiw-num { background: #c89b3c; }
.hiw-step[data-step="3"] .hiw-num { background: #2e9e63; }
.hiw-step[data-step="4"] .hiw-num { background: #2e7db5; }

/* Arrow — sits horizontally between circles */
.hiw-arrow {
  position: absolute;
  top: 56px;
  left: calc(50% + 68px);
  width: calc(100% - 136px);
  height: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}
.hiw-arrow svg {
  width: 100%;
  height: 100%;
}
.hiw-step.hiw-visible .hiw-arrow {
  opacity: 1;
}

/* Arrow colors per step */
.hiw-step[data-step="1"] .hiw-arrow { color: #2e7db5; }
.hiw-step[data-step="2"] .hiw-arrow { color: #c89b3c; }
.hiw-step[data-step="3"] .hiw-arrow { color: #2e9e63; }

/* Text */
.hiw-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy, #0d1b2a);
  margin: 0 0 10px;
  line-height: 1.3;
}
.hiw-step p {
  font-size: 0.84rem;
  color: var(--muted, #6b7280);
  line-height: 1.65;
  margin: 0;
  max-width: 210px;
}

/* Mobile */
@media (max-width: 860px) {
  .hiw-track {
    grid-template-columns: 1fr 1fr;
    gap: 48px 16px;
  }
  .hiw-track::before { display: none; }
  .hiw-arrow { display: none; }
}
@media (max-width: 480px) {
  .hiw-track { grid-template-columns: 1fr; gap: 40px; }
  .hiw-circle { width: 110px; height: 110px; }
}

/* ═══════════════════════════════════════════════════════════
   PROFESSIONAL RESULT CLASSIFICATION
═══════════════════════════════════════════════════════════ */
.result-classification {
  padding: 80px 0;
  background: var(--surface, #f8f9fc);
}
.result-classification .section-head p {
  max-width: 600px;
  margin: 0 auto;
}

.rc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

/* Gauge */
.rc-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.rc-gauge-svg {
  width: 100%;
  max-width: 340px;
  overflow: visible;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
}

.gauge-track {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 22;
  stroke-linecap: round;
}
.gauge-zone {
  fill: none;
  stroke-width: 22;
  stroke-linecap: butt;
  opacity: 0.85;
}
.zone-red    { stroke: #ef4444; }
.zone-orange { stroke: #f59e0b; }
.zone-green  { stroke: #22c55e; }

.gauge-tick {
  stroke: #6b7280;
  stroke-width: 1.5;
}
/* Needle animation */
.gauge-needle-group {
  transform-origin: 160px 170px;
  transform: rotate(-90deg);
  animation: needleSweep 2.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}
@keyframes needleSweep {
  0%   { transform: rotate(-90deg); }
  60%  { transform: rotate(62deg); }
  80%  { transform: rotate(50deg); }
  100% { transform: rotate(58deg); }
}
.gauge-needle {
  stroke: #1e293b;
  stroke-width: 3;
  stroke-linecap: round;
}
.gauge-pivot       { fill: #1e293b; }
.gauge-pivot-inner { fill: #fff; }

.gauge-label {
  font-size: 10px;
  font-weight: 600;
  text-anchor: middle;
  fill: #374151;
}
.label-red    { fill: #ef4444; }
.label-orange { fill: #d97706; }
.label-green  { fill: #16a34a; }
.gauge-apa {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-anchor: middle;
  fill: #6b7280;
  text-transform: uppercase;
}

/* Legend */
.rc-gauge-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
}
.rc-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red    { background: #ef4444; }
.dot-orange { background: #f59e0b; }
.dot-green  { background: #22c55e; }

/* Classification cards */
.rc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rc-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 12px;
  background: #fff;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.rc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.rc-card--inconclusive { border-color: #ef4444; }
.rc-card--probable     { border-color: #f59e0b; }
.rc-card--verified     { border-color: #22c55e; }
.rc-card-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.rc-card--inconclusive .rc-card-icon { color: #ef4444; }
.rc-card--probable     .rc-card-icon { color: #d97706; }
.rc-card--verified     .rc-card-icon { color: #16a34a; }
.rc-card h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading, #0f172a);
}
.rc-card p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted, #6b7280);
  line-height: 1.6;
}

.rc-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--muted, #6b7280);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   EXAMINER SECTION ENHANCEMENTS
═══════════════════════════════════════════════════════════ */
.examiner-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--surface, #f1f5f9);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text, #374151);
  border: 1px solid rgba(0,0,0,0.07);
}

/* Approach cards grid */
.examiner-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 8px;
}
.approach-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-light, #fef3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold, #b45309);
}
.approach-card h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading, #0f172a);
}
.approach-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted, #6b7280);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .rc-layout { grid-template-columns: 1fr; }
  .rc-gauge-wrap { max-width: 360px; margin: 0 auto; }
  .examiner-approach-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .examiner-approach-grid { grid-template-columns: 1fr; }
  .rc-cards { gap: 12px; }
}

/* ── HIW FEATURE CARDS ──────────────────────────────────── */
.hiw-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.hiw-fcard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
}
.hiw-fcard.hiw-fc-visible {
  opacity: 1;
  transform: translateY(0);
}
.hiw-fcard:nth-child(1) { transition-delay: 0.1s; }
.hiw-fcard:nth-child(2) { transition-delay: 0.25s; }
.hiw-fcard:nth-child(3) { transition-delay: 0.4s; }

.hiw-fcard:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.hiw-fcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-fcard-icon--blue  { background: #dcedf7; color: #2e7db5; }
.hiw-fcard-icon--teal  { background: #d6f5eb; color: #1d9e75; }
.hiw-fcard-icon--gold  { background: #fdf3dd; color: #c89b3c; }

.hiw-fcard h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading, #0f172a);
  margin: 0 0 7px;
}
.hiw-fcard p {
  font-size: 0.83rem;
  color: var(--muted, #6b7280);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .hiw-feature-cards { grid-template-columns: 1fr; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT EXAMINER v2 — matches reference screenshot
═══════════════════════════════════════════════════════════ */
@keyframes needleSweep2 {
  0%   { transform: rotate(-90deg); }
  65%  { transform: rotate(62deg); }
  82%  { transform: rotate(48deg); }
  100% { transform: rotate(56deg); }
}

.about2 {
  padding: 80px 0 90px;
  background: #fff;
}

.about2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── LEFT: photo ── */
.about2-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about2-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Stat pill overlays */
.about2-stat {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
}
.about2-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.1;
}
.about2-stat span {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 500;
}
.about2-stat--tl { top: 20px; left: 20px; }
.about2-stat--tr { top: 20px; right: 20px; }

/* Bottom certified badge */
.about2-cert {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  color: #2e7db5;
}
.about2-cert b {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
}
.about2-cert span {
  font-size: 0.72rem;
  color: #6b7280;
}

/* ── RIGHT: copy ── */
.about2-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.25;
  margin-bottom: 18px;
}
.about2-accent {
  color: #2e9e63;
}
.about2-copy p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about2-sub {
  color: #6b7280 !important;
  font-size: 0.88rem !important;
  margin-bottom: 22px !important;
}

/* Checklist */
.about2-checklist {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about2-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #374151;
}
.about2-checklist i {
  color: #2e9e63;
  flex-shrink: 0;
}

/* Mini gauge card */
.about2-gauge-card {
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 22px 24px 18px;
}
.about2-gauge-title {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  text-align: center;
  margin-bottom: 4px !important;
}
.about2-gauge-svg {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
  overflow: visible;
}
.about2-gauge-note {
  font-size: 0.75rem !important;
  color: #9ca3af !important;
  text-align: center;
  margin-top: 10px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 860px) {
  .about2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about2-media img { height: 400px; }
}
@media (max-width: 480px) {
  .about2-media img { height: 300px; }
  .about2-copy h2 { font-size: 1.4rem; }
}

/* Founder photo: keep full headshot visible (no dimming, no awkward crop) */
.founder-media {
  min-height: auto;
  overflow: visible;
  background: none;
  box-shadow: none;
}
.founder-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1142 / 1600;
  max-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top center;
  opacity: 1;
}
.founder-media .about-badge {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 16px;
  background: var(--navy);
  backdrop-filter: none;
}
@media (max-width: 860px) {
  .founder-media img {
    max-height: 460px;
  }
}

/* Privacy Policy: small graphic trust-point cards in sidebar */
.sidebar-point {
  margin-top: 18px;
  padding: 22px;
}
.sidebar-point .icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}
.sidebar-point h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--navy);
}
.sidebar-point p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Privacy Policy: inline section icons in article headings */
.article-body h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-body h2 i,
.article-body h2 svg {
  flex: 0 0 auto;
  color: var(--blue);
}
