: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;
      }


      .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 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-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;
      }

      .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 heroTrace {
        0% {
          stroke-dashoffset: 980;
        }
        58%,
        100% {
          stroke-dashoffset: 0;
        }
      }

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

      @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);
}

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;
  }
}
