@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg: #f4f8fb;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --ink: #12304f;
    --ink-soft: #4a6784;
    --line: rgba(18, 48, 79, 0.09);
    --brand: #27a59d;
    --brand-2: #1d3f6d;
    --brand-3: #7ee0d6;
    --shadow: 0 24px 55px rgba(18, 48, 79, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.38), transparent 28%),
        radial-gradient(circle at top right, rgba(29, 63, 109, 0.14), transparent 22%),
        linear-gradient(180deg, #f8fbfd 0%, var(--bg) 100%);
    color: var(--ink);
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

html.mobile-nav-open,
body.mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

body.mobile-nav-open {
    position: fixed;
    inset: 0;
    width: 100%;
}

.app-loader {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    transition:
        opacity 520ms ease,
        visibility 520ms ease,
        transform 520ms ease;
}

body.app-ready .app-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.985);
}

.app-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.985);
}

.app-loader-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(126, 224, 214, 0.28), transparent 22%),
        radial-gradient(circle at 84% 20%, rgba(29, 63, 109, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(247, 251, 253, 0.96), rgba(240, 247, 250, 0.98));
    backdrop-filter: blur(16px);
}

.app-loader-shell {
    position: relative;
    z-index: 1;
    width: min(236px, calc(100vw - 4.2rem));
    min-height: min(236px, calc(100vw - 4.2rem));
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0;
    padding: 1.75rem;
    border-radius: 50%;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 251, 0.9)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.14), transparent 34%);
    box-shadow:
        0 28px 65px rgba(18, 48, 79, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.app-loader-shell::before,
.app-loader-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.app-loader-shell::before {
    width: 180px;
    height: 180px;
    top: 24px;
    right: 18px;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.2), transparent 70%);
}

.app-loader-shell::after {
    width: 200px;
    height: 200px;
    left: 12px;
    bottom: 10px;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.12), transparent 72%);
}

.app-loader-shell {
    isolation: isolate;
}

.app-loader-shell > * {
    position: relative;
    z-index: 1;
}

.app-loader-shell::before,
.app-loader-shell::after {
    z-index: 0;
}

.app-loader-shell {
    box-shadow:
        0 28px 65px rgba(18, 48, 79, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 0 0 1px rgba(255, 255, 255, 0.18);
}

.app-loader-shell::before {
    box-shadow: none;
}

.app-loader-shell::after {
    box-shadow: none;
}

.app-loader::before,
.app-loader::after {
    content: "";
    position: absolute;
    inset: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    pointer-events: none;
}

.app-loader::before {
    width: min(258px, calc(100vw - 3.2rem));
    height: min(258px, calc(100vw - 3.2rem));
    border: 1px solid rgba(18, 48, 79, 0.07);
    opacity: 0.9;
}

.app-loader::after {
    width: min(258px, calc(100vw - 3.2rem));
    height: min(258px, calc(100vw - 3.2rem));
    padding: 2px;
    background:
        conic-gradient(
            from 0deg,
            rgba(39, 165, 157, 0) 0deg,
            rgba(39, 165, 157, 0) 205deg,
            rgba(126, 224, 214, 0.9) 248deg,
            rgba(39, 165, 157, 1) 286deg,
            rgba(29, 63, 109, 0.95) 330deg,
            rgba(39, 165, 157, 0) 360deg
        );
    -webkit-mask:
        radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
    mask:
        radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
    filter: drop-shadow(0 0 18px rgba(39, 165, 157, 0.18));
    animation: loaderSpin 2.4s linear infinite;
}

.app-loader-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 144px;
    height: 144px;
}

.app-loader-mark img {
    position: relative;
    z-index: 2;
    width: 112px;
    filter: drop-shadow(0 14px 28px rgba(18, 48, 79, 0.12));
}

.app-loader-orbit {
    position: absolute;
    inset: 0;
}

.app-loader-ring,
.app-loader-dot {
    position: absolute;
    border-radius: 50%;
}

.app-loader-ring {
    inset: 0;
    border: 1px solid rgba(18, 48, 79, 0.1);
}

.app-loader-ring-a {
    animation: loaderSpin 9s linear infinite;
}

.app-loader-ring-b {
    inset: 14px;
    border-color: rgba(39, 165, 157, 0.22);
    animation: loaderSpinReverse 7s linear infinite;
}

.app-loader-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--brand-3), var(--brand));
    box-shadow: 0 0 0 8px rgba(126, 224, 214, 0.12);
}

.app-loader-dot-a {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.app-loader-dot-b {
    right: 22px;
    bottom: 26px;
    width: 12px;
    height: 12px;
}

.app-loader-dot-c {
    left: 20px;
    bottom: 30px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, rgba(29, 63, 109, 0.9), rgba(39, 165, 157, 0.9));
}

.app-loader-progress {
    display: none;
}

.app-loader-tags {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.app-loader-tags span {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

@keyframes loaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loaderSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    .app-loader,
    .app-loader * {
        animation: none !important;
        transition: none !important;
    }
}

a {
    color: inherit;
}

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

iframe {
    width: 100%;
    border: 0;
}

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

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.site-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(90deg, rgba(18, 48, 79, 0.92), rgba(39, 165, 157, 0.88));
    color: white;
}

.site-topbar-inner {
    display: flex;
    gap: 1rem 1.4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.8rem 0;
    font-size: 0.9rem;
}

.site-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 251, 253, 0.84);
    border-bottom: 1px solid rgba(18, 48, 79, 0.08);
}

.site-nav-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1.5px;
    background: linear-gradient(
        90deg,
        rgba(126, 224, 214, 0),
        rgba(39, 165, 157, 0.82) 22%,
        rgba(29, 63, 109, 0.88) 50%,
        rgba(39, 165, 157, 0.8) 78%,
        rgba(126, 224, 214, 0)
    );
    opacity: 0.66;
    pointer-events: none;
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 0 auto;
    position: relative;
    padding: 0.85rem 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 252, 0.92));
    border: 1px solid rgba(18, 48, 79, 0.08);
    box-shadow:
        0 16px 34px rgba(18, 48, 79, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.brand img {
    width: 160px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 20px rgba(18, 48, 79, 0.08));
}

.brand::before,
.brand::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.8;
}

.brand::before {
    width: 92px;
    height: 92px;
    left: -16px;
    top: -18px;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.28), transparent 68%);
}

.brand::after {
    width: 110px;
    height: 110px;
    right: -22px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.22), transparent 70%);
}

h1, h2, h3 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
}

h1:focus,
h1:focus-visible {
    outline: none;
}

.site-main {
    padding-bottom: 4rem;
}

.hero,
.page-hero {
    padding: 4.5rem 0 2rem;
}

.hero-grid,
.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.hero h1,
.page-hero h1 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(2.5rem, 4vw, 5rem);
    line-height: 0.96;
    max-width: 12ch;
}

.lead {
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 66ch;
}

.badge-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.badge-pill {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.primary-button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 20px 35px rgba(29, 63, 109, 0.18);
}

.secondary-button {
    color: var(--ink);
    border: 1px solid rgba(18, 48, 79, 0.12);
    background: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    display: flex;
    align-items: stretch;
}

.hero-surface,
.content-card,
.cta-card,
.logo-card,
.gallery-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-surface {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    min-height: 100%;
}

.hero-logo {
    width: min(82%, 430px);
    margin: 0 auto 1rem;
    filter: drop-shadow(0 24px 44px rgba(29, 63, 109, 0.16));
}

.hero-photo {
    border-radius: 22px;
    min-height: 320px;
    object-fit: cover;
}

.device-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(126, 224, 214, 0.1), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(29, 63, 109, 0.08), transparent 18%),
        linear-gradient(180deg, #f7fbfc 0%, #f4f8fb 30%, #f8fbfd 100%);
}

.device-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 880px;
    background:
        radial-gradient(circle at 14% 8%, rgba(126, 224, 214, 0.18), transparent 24%),
        radial-gradient(circle at 86% 10%, rgba(29, 63, 109, 0.12), transparent 20%);
    pointer-events: none;
    z-index: -1;
}

.device-page::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: 10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.09), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
    z-index: -1;
}

.device-page-hero {
    padding-top: 2.2rem;
    padding-bottom: 2.4rem;
}

.device-page .content-card,
.device-page .tests-card,
.device-page .gallery-card {
    border-radius: 30px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.92));
    box-shadow:
        0 18px 42px rgba(18, 48, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.device-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}

.device-heading {
    margin-bottom: 1.55rem;
}

.device-heading h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 3.1vw, 3.05rem);
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.device-page .content-card,
.device-page .tests-card,
.device-tab-panel,
.device-sheet-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.device-page .content-card:hover,
.device-page .tests-card:hover,
.device-tab-panel:hover,
.device-sheet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(18, 48, 79, 0.11);
    border-color: rgba(39, 165, 157, 0.22);
}

.device-hero-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
    gap: 2.2rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: 42px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 251, 0.88)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.18), transparent 28%);
    box-shadow: 0 30px 78px rgba(18, 48, 79, 0.12);
    backdrop-filter: blur(18px);
}

.device-hero-shell::before,
.device-hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.device-hero-shell::before {
    width: 280px;
    height: 280px;
    top: -120px;
    right: -40px;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.12), transparent 70%);
}

.device-hero-shell::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.08), transparent 72%);
}

.device-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.15rem;
    padding: 0.35rem 0;
}

.device-hero-badge {
    justify-self: start;
}

.device-hero-copy h1 {
    max-width: 12.5ch;
    margin: 0;
    color: var(--brand-navy, #1d3f6d);
    font-size: clamp(2.8rem, 5.1vw, 4.75rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.device-hero-copy .lead {
    max-width: 60ch;
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.07rem;
    line-height: 1.88;
}

.device-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.35rem;
}

.device-fact-card {
    min-height: 100%;
    padding: 1.05rem 1rem 1.08rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 251, 0.86));
    border: 1px solid rgba(18, 48, 79, 0.07);
    box-shadow:
        0 12px 26px rgba(18, 48, 79, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.device-fact-card strong,
.device-highlight-card strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.35;
}

.device-fact-card span,
.device-highlight-card span,
.device-tab-panel-head p,
.device-sheet-row p {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.93rem;
}

.device-hero-actions {
    margin-top: 0.25rem;
}

.device-page .primary-button,
.device-page .secondary-button {
    min-height: 56px;
    padding-inline: 1.5rem;
    box-shadow: 0 18px 35px rgba(18, 48, 79, 0.1);
}

.device-page .secondary-button {
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
}

.device-hero-visual {
    position: relative;
    min-height: 580px;
    isolation: isolate;
}

.device-hero-visual::before,
.device-hero-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.device-hero-visual::before {
    inset: 36px 10px 84px 10px;
    border-radius: 42px;
    background:
        radial-gradient(circle at 18% 24%, rgba(126, 224, 214, 0.24), transparent 20%),
        radial-gradient(circle at 86% 18%, rgba(29, 63, 109, 0.18), transparent 22%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.62), rgba(236, 245, 249, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 28px 55px rgba(18, 48, 79, 0.08);
}

.device-hero-visual::after {
    width: 220px;
    height: 220px;
    right: 18px;
    bottom: 34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.18), transparent 70%);
    filter: blur(18px);
    opacity: 0.8;
}

.device-visual-panel {
    position: absolute;
    inset: 48px 24px 92px 24px;
    z-index: 1;
    border-radius: 42px;
    background:
        radial-gradient(circle at 14% 18%, rgba(123, 227, 217, 0.2), transparent 16%),
        radial-gradient(circle at 82% 76%, rgba(29, 63, 109, 0.15), transparent 20%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(18, 48, 79, 0.09);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 34px 78px rgba(18, 48, 79, 0.18);
}

.device-visual-panel::before,
.device-visual-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.device-visual-panel::before {
    inset: 16px;
    border-radius: 34px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.52;
    mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.device-visual-panel::after {
    width: 210px;
    height: 210px;
    right: 7%;
    bottom: 7%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.22), transparent 68%);
    filter: blur(6px);
}

.device-visual-panel-inner {
    position: absolute;
    inset: 16px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 48px rgba(14, 32, 54, 0.18);
}

.device-visual-panel-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    padding: 0;
    transform: none;
    background: none;
}

.device-visual-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(189, 214, 227, 0.28);
    pointer-events: none;
}

.device-visual-orbit-a {
    top: 18px;
    right: 44px;
    width: 76%;
    height: 76%;
}

.device-visual-orbit-b {
    bottom: 110px;
    left: 10px;
    width: 46%;
    height: 46%;
}

.device-visual-floating {
    position: absolute;
    z-index: 2;
    width: min(260px, 48%);
}

.device-catalog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.device-highlight-card,
.device-note-card {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(18, 48, 79, 0.07);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(18, 48, 79, 0.1);
}

.device-highlight-card-catalog {
    position: relative;
    overflow: hidden;
    padding: 0.85rem 0.95rem;
    border-radius: 20px;
    border-color: rgba(39, 165, 157, 0.16);
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 248, 250, 0.92));
}

.device-highlight-card-catalog strong {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.device-highlight-card-catalog span:not(.device-catalog-pill) {
    font-size: 0.78rem;
    line-height: 1.45;
}

.device-highlight-card-catalog::after {
    content: "";
    position: absolute;
    inset: auto -18px -18px auto;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.18), rgba(29, 63, 109, 0.12));
    transform: rotate(16deg);
}

.device-catalog-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 26px;
    margin-bottom: 0.45rem;
    padding: 0.2rem 0.52rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff !important;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.device-catalog-link:hover .device-highlight-card-catalog {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px rgba(18, 48, 79, 0.14);
    border-color: rgba(39, 165, 157, 0.26);
}

.device-catalog-link:focus-visible {
    outline: none;
}

.device-catalog-link:focus-visible .device-highlight-card-catalog {
    transform: translateY(-2px);
    border-color: rgba(39, 165, 157, 0.28);
    box-shadow:
        0 0 0 4px rgba(39, 165, 157, 0.14),
        0 22px 46px rgba(18, 48, 79, 0.12);
}

.device-visual-floating-top {
    top: 16px;
    right: 16px;
    width: min(210px, 36%);
    animation: floatSoft 7.5s ease-in-out infinite;
}

.device-visual-floating-bottom {
    left: 0;
    bottom: 0;
    animation: floatSoftAlt 8.5s ease-in-out infinite;
}

.device-purpose-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1rem;
}

.device-purpose-card {
    min-height: 100%;
    padding: 1.9rem;
}

.device-purpose-card:first-child {
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 248, 0.92));
}

.device-purpose-card h3,
.device-feature-card h3,
.device-tab-panel-head h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    color: var(--ink);
    font-size: 1.32rem;
    line-height: 1.15;
}

.device-editorial-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.76fr);
    gap: 1.2rem;
    align-items: stretch;
}

.device-editorial-copy {
    padding: 1.9rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 252, 0.92));
    box-shadow:
        0 16px 34px rgba(18, 48, 79, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.device-editorial-copy p {
    max-width: 68ch;
    margin: 0 0 1rem;
    color: var(--ink-soft);
    line-height: 1.95;
    font-size: 1.03rem;
}

.device-law-card {
    padding: 1.5rem;
    align-self: start;
    position: sticky;
    top: 6.5rem;
}

.device-law-card .link-list {
    margin-top: 1.2rem;
}

.device-law-card .link-list a {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(29, 63, 109, 0.03);
    border: 1px solid rgba(18, 48, 79, 0.06);
}

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

.device-feature-card {
    min-height: 100%;
    padding: 1.5rem;
}

.device-feature-card p,
.device-spec-card p,
.device-usage-card li,
.device-process-card p {
    line-height: 1.82;
}

.device-spec-grid,
.device-trust-grid,
.device-sheet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.device-spec-grid {
    align-items: stretch;
}

.device-spec-card,
.device-process-card,
.device-sheet-card,
.device-usage-card,
.device-security-card {
    padding: 1.65rem;
}

.device-spec-card,
.device-process-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 251, 0.92));
}

.device-spec-card::after,
.device-process-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 170px;
    height: 170px;
    border-radius: 48px;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.12), rgba(29, 63, 109, 0.1));
    transform: rotate(16deg);
    pointer-events: none;
}

.device-hardware-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.device-part-chip {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 76px;
    text-align: center;
    font-weight: 700;
    border-color: rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 252, 0.78));
    box-shadow:
        0 12px 24px rgba(18, 48, 79, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.device-page .process-timeline {
    position: relative;
    z-index: 1;
    gap: 0.65rem;
}

.device-page .process-timeline li {
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(18, 48, 79, 0.07);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 12px 26px rgba(18, 48, 79, 0.05);
}

.device-tabs-shell {
    display: grid;
    gap: 1rem;
    padding: 1.65rem;
    border-radius: 34px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 252, 0.92));
    box-shadow:
        0 18px 42px rgba(18, 48, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.device-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.device-tab {
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 48, 79, 0.1);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: 180ms ease;
}

.device-tab:hover,
.device-tab.active {
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent;
    box-shadow: 0 18px 35px rgba(29, 63, 109, 0.18);
}

.device-tab-panel {
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 252, 0.9));
}

.device-tab-panel-head {
    margin-bottom: 1rem;
}

.device-tab-panel-head p {
    margin: 0;
    max-width: 62ch;
}

.device-tab-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.device-tab-item {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(18, 48, 79, 0.06);
    background: rgba(248, 251, 253, 0.9);
    color: var(--ink-soft);
    font-weight: 700;
}

.device-note-card {
    margin-top: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 245, 247, 0.9));
}

.device-note-card p {
    margin: 0;
}

.device-sheet-card {
    padding: 1.35rem;
}

.device-tech-shell {
    position: relative;
    overflow: hidden;
    padding: 1.65rem;
    border-radius: 40px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        radial-gradient(circle at 86% 14%, rgba(126, 224, 214, 0.18), transparent 28%),
        radial-gradient(circle at 4% 92%, rgba(29, 63, 109, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 250, 0.92));
    box-shadow:
        0 26px 68px rgba(18, 48, 79, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.device-tech-shell::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 46%;
    background-image:
        linear-gradient(rgba(18, 48, 79, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 48, 79, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.46), transparent 74%);
    pointer-events: none;
}

.device-tech-shell::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.13), transparent 70%);
    pointer-events: none;
}

.device-tech-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 1.4rem;
    align-items: end;
    margin-bottom: 1.25rem;
}

.device-tech-head .section-heading {
    margin-bottom: 0;
}

.device-tech-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.device-tech-metric {
    min-height: 116px;
    display: grid;
    align-content: end;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(18, 48, 79, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 249, 250, 0.72));
    box-shadow:
        0 16px 34px rgba(18, 48, 79, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.device-tech-metric strong {
    color: var(--ink);
    font-size: clamp(1.2rem, 1.6vw, 1.75rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.device-tech-metric span {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
}

.device-tech-shell .device-sheet-grid {
    position: relative;
    z-index: 1;
}

.device-tech-shell .device-sheet-card {
    padding: 1.5rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 252, 0.88));
}

.device-sheet-list {
    display: grid;
    gap: 0.75rem;
}

.device-sheet-row {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0.95rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(18, 48, 79, 0.07);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 251, 252, 0.64));
}

.device-sheet-row span {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-2);
}

.device-sheet-row p {
    margin: 0;
}

.device-security-card {
    background:
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(12, 37, 66, 0.98), rgba(18, 59, 95, 0.94) 58%, rgba(23, 137, 127, 0.92));
    box-shadow: 0 30px 70px rgba(12, 37, 66, 0.24);
}

.device-security-card .eyebrow,
.device-security-card h2,
.device-security-card li {
    color: white;
}

.device-detail-light li {
    position: relative;
    padding-left: 1.25rem;
}

.device-detail-light li::before {
    background: rgba(255, 255, 255, 0.92);
}

.device-gallery-slider {
    overflow: hidden;
    padding: 1rem;
    border-radius: 34px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 252, 0.88));
    box-shadow:
        0 18px 42px rgba(18, 48, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.device-gallery-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: logoSlide 28s linear infinite;
}

.device-gallery-card {
    width: 260px;
    flex: 0 0 260px;
    overflow: hidden;
    border-radius: 26px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.device-gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.device-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.device-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(9, 20, 35, 0.78);
    backdrop-filter: blur(8px);
    cursor: pointer;
    animation: deviceLightboxBackdropIn 320ms ease-out both;
}

.device-lightbox-shell {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    animation: deviceLightboxShellIn 420ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

.device-lightbox-frame {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(8, 18, 31, 0.94);
    box-shadow:
        0 28px 80px rgba(4, 11, 21, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform-origin: center center;
}

.device-lightbox-frame img {
    display: block;
    width: 100%;
    max-height: min(80vh, 860px);
    object-fit: contain;
    background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), rgba(8, 18, 31, 0) 56%);
    animation: deviceLightboxImageIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.device-lightbox-nav,
.device-lightbox-close {
    border: 0;
    color: #fff;
    cursor: pointer;
}

.device-lightbox-nav {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(4, 11, 21, 0.28);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.device-lightbox-nav:hover,
.device-lightbox-close:hover {
    transform: translateY(-2px);
}

.device-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(126, 224, 214, 0.24);
}

.device-lightbox-close {
    position: absolute;
    top: -0.9rem;
    right: -0.35rem;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(10, 24, 41, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(4, 11, 21, 0.32);
}

@keyframes deviceLightboxBackdropIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes deviceLightboxShellIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.965);
    }

    65% {
        opacity: 1;
        transform: translateY(0) scale(1.008);
    }

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

@keyframes deviceLightboxImageIn {
    0% {
        opacity: 0;
        transform: scale(0.92);
        filter: saturate(0.92) brightness(0.92);
    }

    72% {
        opacity: 1;
        transform: scale(1.018);
        filter: saturate(1.02) brightness(1.01);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: saturate(1) brightness(1);
    }
}

.stats-grid,
.card-grid,
.news-grid,
.logo-grid,
.gallery-grid,
.benefit-grid {
    display: grid;
    gap: 1rem;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.8rem;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card-grid.one {
    grid-template-columns: 1fr;
}

.stat-card,
.benefit-chip {
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 48, 79, 0.08);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.45rem;
}

.stat-card span {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}

.section {
    padding: 1.7rem 0;
}

.alt-section {
    position: relative;
}

.alt-section::before {
    content: "";
    position: absolute;
    inset: 1.2rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(126, 224, 214, 0.14));
    z-index: -1;
}

.section-heading {
    margin-bottom: 1.1rem;
}

.section-heading.compact {
    margin-bottom: 1.4rem;
}

.section-heading h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    max-width: 16ch;
}

.content-card {
    padding: 1.5rem;
}

.content-card h2,
.content-card h3 {
    margin-top: 0;
}

.content-card p,
.content-card li {
    color: var(--ink-soft);
    line-height: 1.8;
}

.accent-card {
    background: linear-gradient(160deg, rgba(29, 63, 109, 0.96), rgba(39, 165, 157, 0.92));
    color: white;
}

.accent-card p,
.accent-card a,
.accent-card h2 {
    color: white;
}

.accent-card .secondary-button {
    color: white;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.accent-card .secondary-button:hover,
.accent-card .secondary-button:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.48);
}

.media-card,
.statement-card,
.media-column {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.media-card img,
.media-column img,
.article-cover {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.statement-card {
    grid-template-columns: 220px 1fr;
}

.statement-card img {
    align-self: center;
}

.link-list,
.detail-list,
.stack-links {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.link-list a,
.stack-links a,
.text-link {
    color: var(--brand-2);
    font-weight: 800;
    text-decoration: none;
}

.detail-list li {
    position: relative;
    padding-left: 1.2rem;
}

.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--brand);
}

.news-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-card div {
    padding: 1.3rem;
}

.cta-section {
    padding-top: 2.2rem;
}

.cta-card {
    padding: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.narrative-layout,
.article-shell {
    display: grid;
    gap: 1rem;
}

.qa-card h3 {
    margin-bottom: 0.7rem;
}

.map-frame {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.map-frame iframe {
    min-height: 480px;
}

.city-details {
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.city-details summary {
    cursor: pointer;
    list-style: none;
    padding: 1.2rem 1.4rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.city-details > div {
    padding: 0 1rem 1rem;
}

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

.logo-card {
    padding: 1rem;
    display: grid;
    place-items: center;
    min-height: 140px;
}

.logo-card img {
    max-height: 80px;
    width: auto;
}

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

.gallery-card {
    overflow: hidden;
}

.gallery-card img {
    aspect-ratio: 1;
    object-fit: cover;
}

.policy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.contact-success-panel {
    margin-top: 0.9rem;
}

.contact-success-card {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.92));
    box-shadow: 0 24px 50px rgba(17, 48, 79, 0.08);
}

.contact-success-card h3 {
    margin: 0;
    font-size: clamp(1.35rem, 1.4vw, 1.75rem);
    line-height: 1.15;
}

.contact-success-card p {
    margin: 0;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(18, 48, 79, 0.12);
    background: rgba(255, 255, 255, 0.84);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(39, 165, 157, 0.42);
    box-shadow: 0 0 0 4px rgba(39, 165, 157, 0.12);
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.success-note,
.validation-message {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    font-size: 0.95rem;
}

.success-note {
    background: rgba(39, 165, 157, 0.12);
    color: #0e7b74;
}

.success-note-error {
    background: rgba(225, 64, 64, 0.1);
    color: #b42318;
}

.success-note-success {
    background:
        linear-gradient(135deg, rgba(39, 165, 157, 0.12), rgba(22, 84, 141, 0.1)),
        #fff;
}

.contact-status-shell {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: center;
}

.contact-status-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #27a59d, #1f5b92);
    box-shadow: 0 14px 28px rgba(31, 91, 146, 0.18);
}

.contact-status-icon i {
    color: white;
    font-size: 1.35rem;
    line-height: 1;
}

.contact-status-icon-error {
    background: linear-gradient(135deg, #d65a5a, #b42318);
    box-shadow: 0 14px 28px rgba(180, 35, 24, 0.18);
}

.contact-status-content {
    display: grid;
    gap: 0.3rem;
}

.contact-status-content strong {
    color: #12304f;
    font-size: 1rem;
    line-height: 1.2;
}

.contact-status-content p {
    margin: 0;
    color: inherit;
}

.contact-reset-button {
    justify-self: start;
}

.validation-message {
    background: rgba(225, 64, 64, 0.1);
    color: #b42318;
}

.support-assistant {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 1200;
    display: grid;
    justify-items: end;
    gap: 1rem;
}

.support-assistant-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.15rem;
    min-width: 216px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(39, 165, 157, 0.96), rgba(31, 91, 146, 0.98));
    box-shadow: 0 24px 50px rgba(17, 48, 79, 0.22);
    color: white;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.support-assistant-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(17, 48, 79, 0.28);
    filter: saturate(1.05);
}

.support-assistant-toggle-icon {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 1rem;
}

.support-assistant-toggle-copy {
    display: grid;
    text-align: left;
    line-height: 1.1;
}

.support-assistant-toggle-copy strong,
.support-assistant-toggle-copy small {
    color: inherit;
}

.support-assistant-toggle-copy small {
    opacity: 0.84;
}

.support-assistant-panel {
    width: min(390px, calc(100vw - 2rem));
    max-height: min(78vh, 720px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 1rem;
    padding: 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 250, 255, 0.95));
    box-shadow: 0 28px 80px rgba(17, 48, 79, 0.22);
    overflow: hidden;
}

.support-assistant-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.support-assistant-header h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.45rem;
}

.support-assistant-header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.support-assistant-close {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: rgba(255, 255, 255, 0.86);
    color: var(--navy);
}

.support-assistant-messages {
    min-height: 280px;
    max-height: 340px;
    overflow: auto;
    padding-right: 0.2rem;
    display: grid;
    gap: 0.85rem;
}

.support-message {
    display: flex;
}

.support-message-bot {
    justify-content: flex-start;
}

.support-message-user {
    justify-content: flex-end;
}

.support-message-bubble {
    max-width: 88%;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    line-height: 1.55;
    font-size: 0.96rem;
    white-space: pre-wrap;
}

.support-message-bot .support-message-bubble {
    background: rgba(241, 247, 252, 0.98);
    border: 1px solid rgba(18, 48, 79, 0.06);
    color: #284869;
    border-top-left-radius: 8px;
}

.support-message-user .support-message-bubble {
    background: linear-gradient(135deg, #27a59d, #1f5b92);
    color: white;
    box-shadow: 0 16px 32px rgba(17, 48, 79, 0.16);
    border-top-right-radius: 8px;
}

.support-assistant-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-content: start;
}

.support-reply-actions {
    display: grid;
    gap: 0.55rem;
    padding-top: 0.35rem;
}

.support-followup-toggle {
    justify-self: start;
    padding: 0.62rem 0.92rem;
    border-radius: 999px;
    border: 1px solid rgba(39, 165, 157, 0.2);
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.1), rgba(31, 91, 146, 0.08));
    color: #1f4f7a;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.support-followup-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 165, 157, 0.3);
    box-shadow: 0 12px 24px rgba(17, 48, 79, 0.08);
}

.support-followup-panel {
    display: grid;
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 20px;
    border: 1px solid rgba(18, 48, 79, 0.07);
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(241, 247, 252, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.support-followup-heading {
    display: grid;
    gap: 0.18rem;
}

.support-followup-heading strong {
    color: #12304f;
    font-size: 0.95rem;
}

.support-followup-heading span {
    color: #5c7897;
    font-size: 0.82rem;
    line-height: 1.45;
}

.support-followup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.support-suggestion-chip {
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: #345475;
    font-size: 0.88rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-suggestion-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 165, 157, 0.28);
    box-shadow: 0 12px 24px rgba(17, 48, 79, 0.1);
}

.support-suggestion-chip-block {
    width: 100%;
    text-align: left;
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.86);
}

.support-assistant-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.support-assistant-form input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(18, 48, 79, 0.12);
    background: rgba(255, 255, 255, 0.94);
    font: inherit;
}

.support-assistant-form input:focus {
    outline: none;
    border-color: rgba(39, 165, 157, 0.42);
    box-shadow: 0 0 0 4px rgba(39, 165, 157, 0.12);
}

.support-assistant-send {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #27a59d, #1f5b92);
    color: white;
    box-shadow: 0 14px 30px rgba(17, 48, 79, 0.16);
}

.support-assistant-send:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 780px) {
    .support-assistant {
        right: 0.9rem;
        left: auto;
        bottom: 0.9rem;
        justify-items: end;
    }

    .support-assistant-toggle {
        width: 4.25rem;
        min-width: 4.25rem;
        height: 4.25rem;
        padding: 0;
        border-radius: 999px;
        justify-content: center;
        box-shadow: 0 20px 42px rgba(17, 48, 79, 0.24);
    }

    .support-assistant-toggle-copy {
        display: none;
    }

    .support-assistant-toggle-icon {
        width: 100%;
        height: 100%;
        border-radius: 999px;
        background: transparent;
        border: none;
        font-size: 1.2rem;
    }

    .support-assistant.is-open {
        left: 0.9rem;
        right: 0.9rem;
        justify-items: stretch;
    }

    .support-assistant.is-open .support-assistant-toggle {
        display: none;
    }

    .support-assistant-panel {
        width: 100%;
        max-height: min(76vh, 720px);
        padding: 1rem;
        border-radius: 26px;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 0.85rem;
    }

    .support-assistant-messages {
        min-height: 180px;
        max-height: none;
        padding-right: 0;
    }

    .support-message-bubble {
        max-width: 100%;
        font-size: 0.94rem;
    }

    .support-assistant-suggestions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding-top: 0.15rem;
    }

    .support-suggestion-chip {
        width: 100%;
        text-align: left;
        padding: 0.78rem 0.9rem;
        border-radius: 16px;
        line-height: 1.35;
    }

    .support-followup-panel {
        padding: 0.85rem;
    }

    .support-followup-grid {
        gap: 0.5rem;
    }

    .support-assistant-form {
        grid-template-columns: minmax(0, 1fr) 3.35rem;
        gap: 0.65rem;
        position: sticky;
        bottom: 0;
        padding-top: 0.15rem;
        background: linear-gradient(180deg, rgba(245, 250, 255, 0), rgba(245, 250, 255, 0.94) 28%, rgba(245, 250, 255, 0.98));
    }

    .support-assistant-send {
        width: 3.35rem;
        height: 3.35rem;
    }
}

.article-shell {
    grid-template-columns: 360px 1fr;
    align-items: start;
}

.article-card h2 {
    margin-top: 1.7rem;
}

.site-footer {
    padding: 3rem 0 1.7rem;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.2), transparent 20%),
        linear-gradient(135deg, #0d2744, #123c5f 55%, #178b84);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1rem;
}

.site-footer a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.5rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.76);
}

.company-name-single-line,
.footer-company-name {
    white-space: nowrap;
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.08;
}

.company-name-single-line {
    font-size: clamp(1.08rem, 1.6vw, 1.56rem);
}

.footer-company-name {
    font-size: clamp(0.96rem, 1.12vw, 1.18rem);
}

.footer-bottom {
    margin-top: 1.7rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    z-index: 1500;
    width: min(1120px, calc(100% - 2rem));
    opacity: 0;
    transform: translate(-50%, 1.5rem);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.4rem;
    border-radius: 28px;
    border: 1px solid rgba(172, 215, 225, 0.24);
    background:
        radial-gradient(circle at top right, rgba(102, 215, 207, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(15, 36, 67, 0.96), rgba(30, 62, 102, 0.92));
    box-shadow: 0 26px 70px rgba(7, 18, 34, 0.34);
    backdrop-filter: blur(18px);
}

.cookie-banner-copy {
    display: grid;
    gap: 0.5rem;
}

.cookie-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(212, 244, 243, 0.12);
    color: rgba(236, 249, 250, 0.95);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-banner-copy p {
    margin: 0;
    max-width: 760px;
    color: rgba(234, 243, 248, 0.92);
    line-height: 1.65;
}

.cookie-banner-copy a {
    color: #9de8e2;
    font-weight: 700;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.cookie-banner-button {
    min-width: 150px;
    justify-content: center;
}

@media (max-width: 760px) {
    .cookie-banner {
        width: min(92vw, 360px);
        max-width: calc(100vw - 1rem);
        left: 50%;
        right: auto;
        bottom: calc(env(safe-area-inset-bottom) + 0.45rem);
        transform: translate(-50%, 1rem);
    }

    .cookie-banner.is-visible {
        transform: translate(-50%, 0);
    }

    .cookie-banner-inner {
        grid-template-columns: 1fr;
        display: grid;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.55rem 0.58rem;
        border-radius: 12px;
        box-shadow: 0 14px 28px rgba(7, 18, 34, 0.22);
        backdrop-filter: blur(14px);
    }

    .cookie-banner-actions {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cookie-banner-button {
        min-width: 156px;
        width: auto;
        min-height: 24px;
        padding-inline: 1.25rem;
        font-size: 0.74rem;
        border-radius: 999px;
        box-shadow: none;
    }

    .cookie-banner-copy p {
        font-size: 0.68rem;
        line-height: 1.26;
        max-width: none;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .cookie-banner-label {
        padding: 0.2rem 0.44rem;
        font-size: 0.48rem;
        letter-spacing: 0.08em;
    }

    .cookie-banner-copy {
        gap: 0.18rem;
    }
}

.blazor-error-boundary {
    margin: 1rem auto 0;
    width: min(1180px, calc(100% - 2rem));
    border-radius: 18px;
}

#blazor-error-ui {
    background: #b42318;
    bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    color: #fff;
    display: none;
    left: 1rem;
    padding: 1rem 1.4rem;
    position: fixed;
    right: 1rem;
    z-index: 1000;
    border-radius: 16px;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.header-spacer {
    height: 1rem;
}

.section-divider {
    padding: 2.65rem 0;
}

.home-page {
    position: relative;
    background:
        linear-gradient(180deg, rgba(246, 251, 252, 0.72) 0%, rgba(255, 255, 255, 0.96) 16%, rgba(244, 249, 252, 0.76) 48%, rgba(255, 255, 255, 0.98) 100%);
}

.home-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 920px;
    background:
        radial-gradient(circle at 10% 8%, rgba(126, 224, 214, 0.16), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(29, 63, 109, 0.12), transparent 22%);
    pointer-events: none;
    z-index: -1;
}

.home-page::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 58%;
    background:
        radial-gradient(circle at 18% 24%, rgba(126, 224, 214, 0.08), transparent 22%),
        radial-gradient(circle at 82% 36%, rgba(29, 63, 109, 0.06), transparent 24%);
    pointer-events: none;
    z-index: -1;
}

.home-page > section {
    position: relative;
    isolation: isolate;
}

.home-page > section .container {
    position: relative;
    z-index: 1;
}

.home-hero {
    padding-top: 1.4rem;
    padding-bottom: 2rem;
}

.hero-shell,
.about-premium-box,
.stat-premium-item,
.services-premium-hero,
.service-row,
.tests-card,
.process-card,
.why-box,
.regulation-text,
.regulation-logo-card,
.faq-item,
.company-slider {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    padding: 2.15rem 2rem;
    min-height: 74vh;
    display: grid;
    align-items: center;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 18%, rgba(126, 224, 214, 0.14), transparent 22%),
        radial-gradient(circle at 18% 78%, rgba(29, 63, 109, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(10, 27, 47, 0.92), rgba(18, 48, 79, 0.78));
    box-shadow: 0 36px 100px rgba(18, 48, 79, 0.18);
}

.hero-shell::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.22), transparent 68%);
}

.hero-shell::before {
    content: "";
    position: absolute;
    left: 46%;
    top: 6%;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    filter: blur(12px);
}

.hero-accent,
.hero-accent-grid,
.hero-accent-line {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-accent {
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.9;
}

.hero-accent-top {
    width: 220px;
    height: 220px;
    left: 8%;
    top: 2%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.28), transparent 68%);
}

.hero-accent-bottom {
    width: 320px;
    height: 220px;
    right: 10%;
    bottom: 2%;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.22), transparent 68%);
}

.hero-accent-grid {
    width: 230px;
    height: 110px;
    border-radius: 28px;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 18px 18px;
}

.hero-accent-grid-top {
    right: 14%;
    top: 6%;
    mask-image: linear-gradient(90deg, transparent 0, black 28%, black 100%);
}

.hero-accent-grid-bottom {
    left: 10%;
    bottom: 8%;
    mask-image: linear-gradient(90deg, black 0, black 72%, transparent 100%);
}

.hero-accent-line {
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0), rgba(126, 224, 214, 0.82), rgba(126, 224, 214, 0));
    opacity: 0.9;
}

.hero-accent-line-top {
    width: 220px;
    left: 28%;
    top: 10%;
}

.hero-accent-line-bottom {
    width: 260px;
    right: 24%;
    bottom: 11%;
}

.hero-grid-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.2rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: white;
    padding-left: 0.4rem;
    display: grid;
    justify-items: start;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-kicker-line {
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0.1), rgba(126, 224, 214, 0.92));
}

.hero-entry h1 {
    width: fit-content;
    margin-top: 0.2rem;
    margin-bottom: 0.85rem;
    font-size: clamp(2.7rem, 4.65vw, 4.55rem);
    line-height: 0.94;
    max-width: 8ch;
}

.hero-title-top,
.hero-title-bottom {
    display: block;
}

.hero-title-top {
    font-size: 0.92em;
    font-weight: 700;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 72%, rgba(126, 224, 214, 0.72) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-bottom {
    font-size: 1em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 72%, rgba(126, 224, 214, 0.72) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tagline {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(1.02rem, 1.45vw, 1.28rem);
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
    font-weight: 500;
}

.hero-actions {
    margin-top: 1.25rem;
}

.hero-tagline strong {
    color: white;
}

.hero-slider {
    inset: 0;
    position: absolute;
    opacity: 0.24;
    pointer-events: none;
}

.hero-slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: heroSlide 30s linear infinite;
}

.hero-slide {
    width: 480px;
    height: 100%;
    flex: 0 0 480px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-blob {
    position: absolute;
    border-radius: 38% 62% 58% 42% / 44% 34% 66% 56%;
    z-index: 1;
}

.hero-blob-a {
    width: 300px;
    height: 300px;
    right: 40px;
    top: 20px;
    background: linear-gradient(135deg, rgba(126, 224, 214, 0.42), rgba(39, 165, 157, 0.2));
}

.hero-blob-b {
    width: 220px;
    height: 220px;
    right: 180px;
    bottom: 30px;
    background: linear-gradient(135deg, rgba(29, 63, 109, 0.16), rgba(73, 203, 191, 0.24));
}

.hero-blob-c {
    width: 150px;
    height: 150px;
    right: 0;
    bottom: 90px;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.26), rgba(29, 63, 109, 0.1));
}

.hero-card {
    position: absolute;
    display: grid;
    gap: 0.45rem;
    padding: 1.4rem;
    border-radius: 28px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 22px 44px rgba(18, 48, 79, 0.12);
    backdrop-filter: blur(18px);
    z-index: 2;
}

.hero-card strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    color: var(--ink);
}

.hero-card span {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.96rem;
}

.hero-card-main {
    top: 70px;
    right: 110px;
    width: 290px;
}

.hero-card-side {
    bottom: 55px;
    right: 40px;
    width: 250px;
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 16px 24px rgba(29, 63, 109, 0.18);
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px dashed rgba(39, 165, 157, 0.3);
    z-index: 1;
}

.hero-orbit-1 {
    width: 330px;
    height: 330px;
    right: 50px;
    top: 45px;
}

.hero-orbit-2 {
    width: 220px;
    height: 220px;
    right: 150px;
    bottom: 20px;
}

.hero-dot {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 20px rgba(29, 63, 109, 0.18);
    z-index: 2;
}

.hero-dot-1 {
    width: 14px;
    height: 14px;
    right: 30px;
    top: 60px;
}

.hero-dot-2 {
    width: 20px;
    height: 20px;
    right: 320px;
    top: 140px;
}

.hero-dot-3 {
    width: 12px;
    height: 12px;
    right: 100px;
    bottom: 30px;
}

.btn-primary,
.btn-secondary,
.about-premium-btn,
.services-premium-cta,
.psiko-device-btn,
.tests-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 54px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary,
.about-premium-btn,
.services-premium-cta,
.psiko-device-btn,
.tests-btn {
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 20px 36px rgba(29, 63, 109, 0.22);
}

.btn-secondary,
.tests-btn.secondary {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-secondary:hover,
.about-premium-btn:hover,
.services-premium-cta:hover,
.psiko-device-btn:hover,
.tests-btn:hover {
    transform: translateY(-2px);
}

.hero-main-btn,
.hero-secondary-btn {
    min-width: 240px;
}

.hero-main-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    box-shadow:
        0 20px 36px rgba(29, 63, 109, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-main-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 18%,
        rgba(255, 255, 255, 0.06) 28%,
        rgba(255, 255, 255, 0.3) 38%,
        rgba(148, 241, 231, 0.24) 46%,
        rgba(255, 255, 255, 0.06) 54%,
        rgba(255, 255, 255, 0) 64%
    );
    background-size: 220% 220%;
    animation: heroBorderSweep 4.8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.35;
}

.hero-main-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.11) 45%,
        rgba(255, 255, 255, 0) 62%
    );
    transform: translateX(-145%);
    animation: heroButtonGlow 4.8s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.42;
}

@keyframes heroBorderSweep {
    0%,
    16% {
        background-position: 140% 50%;
        opacity: 0;
    }

    28%,
    44% {
        background-position: 72% 50%;
        opacity: 0.9;
    }

    58%,
    100% {
        background-position: -40% 50%;
        opacity: 0;
    }
}

@keyframes heroButtonGlow {
    0%,
    18% {
        transform: translateX(-145%);
        opacity: 0;
    }

    30%,
    48% {
        transform: translateX(18%);
        opacity: 0.46;
    }

    62%,
    100% {
        transform: translateX(145%);
        opacity: 0;
    }
}

.hero-side-panel {
    display: grid;
    gap: 1rem;
    align-self: stretch;
}

.hero-visual-stage {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 0.85rem;
    align-items: stretch;
}

.hero-visual-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-visual-orb-a {
    width: 140px;
    height: 140px;
    right: 120px;
    top: 28px;
    background: rgba(126, 224, 214, 0.14);
}

.hero-visual-orb-b {
    width: 92px;
    height: 92px;
    right: 64px;
    bottom: 34px;
    background: rgba(39, 165, 157, 0.12);
    border: 1px solid rgba(126, 224, 214, 0.18);
}

.hero-media-shell {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    align-items: stretch;
    padding: 0.45rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    box-shadow: 0 36px 80px rgba(7, 23, 42, 0.2);
    backdrop-filter: blur(12px);
}

.hero-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 2.02 / 1;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 48, 79, 0.06), rgba(18, 48, 79, 0.2));
}

.hero-photo-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(18, 48, 79, 0.88), rgba(24, 76, 112, 0.82));
}

.hero-photo-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 340ms ease;
}

.hero-photo-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-image: var(--hero-slide-bg);
    background-size: cover;
    background-position: center;
}

.hero-photo-slide::before {
    content: "";
    position: absolute;
    inset: -2%;
    background-image: var(--hero-slide-bg);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(0.9) brightness(0.78);
    transform: scale(1.08);
}

.hero-photo-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 22, 39, 0.08), rgba(8, 22, 39, 0.14)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 60%);
}

.hero-photo-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.015);
    filter: saturate(1.05) contrast(1.01) brightness(1.03);
}

.hero-photo-slide:nth-child(1) .hero-photo-visual {
    object-fit: contain;
    object-position: 50% 50%;
    transform: translateY(-6%) scale(1.05);
}

.hero-photo-slide:nth-child(2) .hero-photo-visual {
    object-position: 50% 50%;
    transform: scale(1);
}

.hero-photo-slide:nth-child(3) .hero-photo-visual {
    object-fit: contain;
    object-position: 50% 46%;
     transform: translateY(-4%) scale(1);
}

.hero-photo-slide:nth-child(4) .hero-photo-visual {
    object-fit: contain;
    object-position: 50% 25%;
    transform: translateY(-2.5%) scale(1);
}

.hero-photo-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(15, 36, 61, 0.54);
    color: #fff;
    transform: translateY(-50%);
    transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-photo-nav:hover {
    background: rgba(23, 55, 93, 0.78);
    border-color: rgba(126, 224, 214, 0.42);
}

.hero-photo-nav:focus-visible {
    outline: 2px solid rgba(126, 224, 214, 0.48);
    outline-offset: 2px;
}

.hero-photo-nav-prev {
    left: 6px;
}

.hero-photo-nav-next {
    right: 6px;
}

.hero-graphic-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 24%, rgba(126, 224, 214, 0.24), transparent 24%),
        radial-gradient(circle at 76% 22%, rgba(39, 165, 157, 0.22), transparent 18%),
        linear-gradient(140deg, rgba(18, 48, 79, 0.96), rgba(24, 76, 112, 0.88));
}

.hero-scene-glow,
.hero-scene-ring,
.hero-scene-panel,
.hero-scene-card,
.hero-scene-pillar,
.hero-scene-chip {
    position: absolute;
}

.hero-scene-glow {
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.9;
}

.hero-scene-glow-a {
    width: 260px;
    height: 260px;
    left: 8%;
    top: 8%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.34), transparent 68%);
    animation: heroFloatSlow 9s ease-in-out infinite;
}

.hero-scene-glow-b {
    width: 220px;
    height: 220px;
    right: 10%;
    bottom: 12%;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.34), transparent 68%);
    animation: heroFloatSlow 11s ease-in-out infinite reverse;
}

.hero-scene-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 96%);
    opacity: 0.3;
}

.hero-scene-ring {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-scene-ring-a {
    width: 340px;
    height: 340px;
    left: 15%;
    top: 16%;
    animation: heroFloatSlow 12s ease-in-out infinite;
}

.hero-scene-ring-b {
    width: 180px;
    height: 180px;
    right: 14%;
    top: 28%;
    border-color: rgba(126, 224, 214, 0.28);
    animation: heroFloatSlow 8s ease-in-out infinite reverse;
}

.hero-scene-panel {
    border-radius: 42px;
    background:
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 30px 60px rgba(5, 17, 31, 0.25);
    backdrop-filter: blur(8px);
}

.hero-scene-panel-main {
    width: 58%;
    height: 52%;
    left: 18%;
    top: 20%;
    transform: rotate(-8deg);
    animation: heroFloatPanel 10s ease-in-out infinite;
}

.hero-scene-node {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(126, 224, 214, 0.92), rgba(39, 165, 157, 0.8));
    box-shadow: 0 8px 18px rgba(39, 165, 157, 0.24);
}

.hero-scene-node-a {
    width: 20px;
    height: 20px;
    left: 16%;
    top: 18%;
}

.hero-scene-node-b {
    width: 24px;
    height: 24px;
    right: 18%;
    bottom: 20%;
}

.hero-scene-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(6, 18, 31, 0.18);
    backdrop-filter: blur(10px);
}

.hero-scene-card span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(126, 224, 214, 0.4));
}

.hero-scene-card-a {
    width: 150px;
    right: 14%;
    top: 17%;
    padding: 20px 18px;
    display: grid;
    gap: 12px;
    animation: heroFloatSlow 9s ease-in-out infinite reverse;
}

.hero-scene-card-a span:nth-child(1) { width: 72%; }
.hero-scene-card-a span:nth-child(2) { width: 100%; }
.hero-scene-card-a span:nth-child(3) { width: 58%; }

.hero-scene-card-b {
    width: 136px;
    left: 10%;
    bottom: 16%;
    padding: 18px 16px;
    display: grid;
    gap: 12px;
    animation: heroFloatSlow 10s ease-in-out infinite;
}

.hero-scene-card-b span:nth-child(1) { width: 100%; }
.hero-scene-card-b span:nth-child(2) { width: 62%; }

.hero-scene-pillar {
    width: 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.14);
    bottom: 16%;
    box-shadow: 0 18px 28px rgba(6, 18, 31, 0.16);
}

.hero-scene-pillar-a {
    height: 142px;
    right: 32%;
}

.hero-scene-pillar-b {
    height: 108px;
    right: 26%;
}

.hero-scene-pillar-c {
    height: 82px;
    right: 20%;
}

.hero-scene-chip {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(126, 224, 214, 0.86), rgba(39, 165, 157, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 28px rgba(6, 18, 31, 0.18);
}

.hero-scene-chip-a {
    right: 26%;
    top: 18%;
    transform: rotate(18deg);
    animation: heroFloatSlow 8s ease-in-out infinite;
}

.hero-scene-chip-b {
    left: 26%;
    bottom: 14%;
    transform: rotate(-16deg);
    animation: heroFloatSlow 7s ease-in-out infinite reverse;
}

@keyframes heroFloatSlow {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes heroFloatPanel {
    0%, 100% { transform: rotate(-8deg) translate3d(0, 0, 0); }
    50% { transform: rotate(-8deg) translate3d(0, -12px, 0); }
}

.hero-floating-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: 280px;
    z-index: 3;
}

.hero-metric-row {
    position: relative;
    z-index: 3;
    width: auto;
    align-content: stretch;
    justify-self: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-side-card,
.hero-side-mini {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 44px rgba(9, 23, 42, 0.16);
    backdrop-filter: blur(14px);
}

.hero-side-card {
    padding: 1.1rem 1.15rem;
    min-height: 132px;
    display: grid;
    align-content: end;
}

.hero-coverage-card {
    position: relative;
    gap: 0.8rem;
    min-height: 0;
    padding: 1.2rem 1.2rem 1.25rem;
    align-content: start;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.18), transparent 24%);
}

.hero-coverage-card::before {
    content: "";
    position: absolute;
    inset: 18px 20px auto auto;
    width: 88px;
    height: 64px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        repeating-linear-gradient(90deg, transparent 0 13px, rgba(255, 255, 255, 0.05) 13px 14px),
        repeating-linear-gradient(180deg, transparent 0 13px, rgba(255, 255, 255, 0.05) 13px 14px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-coverage-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    min-height: 36px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-coverage-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 224, 214, 0.96), rgba(255, 255, 255, 0.88));
    box-shadow: 0 0 0 6px rgba(126, 224, 214, 0.08);
}

.hero-coverage-card p {
    margin: 0;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.72;
}

.hero-coverage-card strong {
    color: #fff;
    font-weight: 800;
}

.hero-side-card span,
.hero-side-mini span {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.hero-side-stack {
    display: grid;
    gap: 1rem;
}

.hero-metric-row {
    display: grid;
    gap: 0.85rem;
}

.hero-metric-row .hero-side-mini {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-side-mini {
    padding: 0.95rem 0.85rem;
}

.hero-side-mini strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.42rem;
    color: white;
}

.hero-load-item {
    opacity: 0;
    transform: translateY(18px);
    animation: homeHeroReveal 650ms ease forwards;
}

.hero-load-1 { animation-delay: 60ms; }
.hero-load-2 { animation-delay: 150ms; }
.hero-load-3 { animation-delay: 240ms; }
.hero-load-4 { animation-delay: 330ms; }
.hero-load-5 { animation-delay: 420ms; }

.home-section-spacious {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.home-section-contrast {
    position: relative;
}

.home-section-contrast::before {
    content: "";
    position: absolute;
    inset: 0.35rem 0;
    background:
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.11), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(240, 248, 250, 0.16));
    z-index: -1;
}

.home-section-contrast::after,
.home-section-layered::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.66));
    pointer-events: none;
    z-index: -1;
}

.home-section-layered {
    position: relative;
}

.home-section-layered::before {
    content: "";
    position: absolute;
    inset: 0.25rem 0;
    background:
        radial-gradient(circle at 16% 28%, rgba(126, 224, 214, 0.09), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(126, 224, 214, 0.06) 50%, rgba(255, 255, 255, 0));
    z-index: -1;
}

.home-section-dark {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
}

.about-premium-box {
    padding: 2.15rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 252, 0.82)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.12), transparent 22%);
}

.about-bento {
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 252, 0.84)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.14), transparent 22%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.about-bento-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 1.2rem;
    align-items: stretch;
}

.about-bento-main {
    padding: 1.5rem 1.1rem 1.6rem 0.6rem;
    display: grid;
    align-content: center;
    gap: 1.05rem;
}

.about-bento-side {
    display: grid;
    gap: 1rem;
}

.about-bento-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-bento-card {
    padding: 1.25rem;
    border-radius: 26px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 42px rgba(18, 48, 79, 0.08);
}

.about-bento-card-wide {
    min-height: 180px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 249, 248, 0.9)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.1), transparent 24%);
}

.about-bento-label {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: var(--brand-2);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-bento-card strong {
    display: block;
    margin-bottom: 0.55rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    color: var(--ink);
}

.about-bento-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.about-premium-grid,
.services-premium-grid,
.psiko-device-grid,
.process-grid,
.regulation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.about-premium-content,
.services-premium-hero,
.psiko-device-text,
.regulation-text {
    padding: 1rem;
}

.about-premium-content,
.psiko-device-text {
    display: grid;
    align-content: center;
}

.about-eyebrow,
.services-premium-badge span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.about-bento-main h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3.1vw, 3.4rem);
    line-height: 1;
}

.about-lead {
    font-size: 1.08rem;
    line-height: 1.95;
    color: var(--ink-soft);
    margin: 0;
}

.about-premium-list,
.device-features,
.regulation-text ul {
    display: grid;
    gap: 1rem;
    margin: 0.4rem 0 0;
    padding: 0;
    list-style: none;
}

.about-premium-list li,
.device-features li,
.regulation-text li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--ink-soft);
    line-height: 1.9;
    font-size: 1.02rem;
}

.about-premium-list li::before,
.device-features li::before,
.regulation-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.about-bento-main .about-premium-btn {
    margin-top: 0.55rem;
    justify-self: start;
}

.psiko-device-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 252, 0.84)),
        radial-gradient(circle at 82% 26%, rgba(126, 224, 214, 0.16), transparent 22%);
    box-shadow: 0 28px 62px rgba(18, 48, 79, 0.12);
}

.psiko-device-shell::before {
    content: "";
    position: absolute;
    inset: auto auto -130px -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.2), transparent 68%);
    pointer-events: none;
}

.psiko-device-text {
    padding: 1.9rem 1.25rem 1.9rem 0.95rem;
    display: grid;
    align-content: center;
    gap: 1.35rem;
}

.psiko-device-text .section-title-lined {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.1rem, 3vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
    color: var(--ink);
}

.psiko-device-text p {
    margin: 0;
    max-width: 62ch;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.98;
    text-wrap: pretty;
}

.psiko-device-text p + p {
    margin-top: 0.2rem;
}

.psiko-device-text .device-features {
    margin-top: 0.35rem;
    gap: 1.05rem;
}

.psiko-device-main-btn {
    margin-top: 0.55rem;
    min-height: 58px;
    min-width: 252px;
    box-shadow: 0 24px 42px rgba(29, 63, 109, 0.24);
}

.psiko-device-visual {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: center;
    padding: 1.2rem 1.2rem 1.2rem 0;
}

.psiko-device-stage {
    position: relative;
    min-height: 500px;
    border-radius: 38px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(25, 58, 98, 0.95), rgba(36, 82, 122, 0.92)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.16), transparent 24%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 60px rgba(18, 48, 79, 0.18);
}

.psiko-device-stage::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.psiko-device-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.psiko-device-glow-1 {
    width: 220px;
    height: 220px;
    top: -24px;
    right: -12px;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.26), transparent 68%);
}

.psiko-device-glow-2 {
    width: 250px;
    height: 250px;
    bottom: -95px;
    left: -34px;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.34), transparent 72%);
}

.psiko-device-window {
    position: absolute;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        rgba(17, 37, 61, 0.52);
    box-shadow: 0 24px 54px rgba(8, 20, 35, 0.24);
    backdrop-filter: blur(14px);
}

.psiko-device-window-back {
    top: 64px;
    left: 44px;
    width: 56%;
    height: 44%;
    transform: rotate(-6deg);
    opacity: 0.82;
    animation: floatSoft 7.6s ease-in-out infinite;
}

.psiko-device-window-front {
    right: 40px;
    top: 82px;
    width: 64%;
    min-height: 332px;
    padding: 1rem;
    animation: floatSoftAlt 8.3s ease-in-out infinite;
}

.device-window-header {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    margin-bottom: 0.95rem;
}

.device-window-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.device-window-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0.9rem;
}

.device-metric-card,
.device-chart-card,
.device-bars-card {
    position: relative;
    min-height: 132px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    overflow: hidden;
}

.device-chart-card {
    min-height: 220px;
    grid-row: span 2;
}

.device-bars-card {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem;
}

.device-metric-value,
.device-window-bar,
.device-window-line,
.device-metric-line {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0.94), rgba(255, 255, 255, 0.62));
}

.device-metric-value {
    top: 1rem;
    left: 1rem;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: radial-gradient(circle at 35% 35%, rgba(126, 224, 214, 0.94), rgba(39, 165, 157, 0.4));
    box-shadow: 0 0 40px rgba(126, 224, 214, 0.24);
}

.device-metric-line {
    left: 1rem;
    top: 6.1rem;
    width: 56%;
    height: 10px;
    opacity: 0.8;
}

.device-metric-line-wide {
    top: 7.1rem;
    width: 72%;
    opacity: 0.55;
}

.device-window-bar {
    top: 1.4rem;
    left: 1.3rem;
    width: 42%;
    height: 12px;
}

.device-window-line {
    left: 1.3rem;
    width: 54%;
    height: 10px;
    opacity: 0.7;
}

.device-window-line-short {
    top: 3.1rem;
    width: 38%;
}

.device-window-line:not(.device-window-line-short):not(.device-window-line-long) {
    top: 4.2rem;
}

.device-window-line-long {
    top: 5.3rem;
    width: 68%;
    opacity: 0.5;
}

.device-chart-orbit {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-chart-point {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 1), rgba(126, 224, 214, 0.42));
    box-shadow: 0 0 20px rgba(126, 224, 214, 0.22);
}

.device-chart-point-a {
    top: 52px;
    left: 54px;
}

.device-chart-point-b {
    right: 54px;
    bottom: 56px;
}

.device-chart-line {
    position: absolute;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0.84), rgba(255, 255, 255, 0.22));
}

.device-chart-line-a {
    top: 61px;
    left: 64px;
    width: 120px;
    transform: rotate(9deg);
}

.device-chart-line-b {
    right: 66px;
    bottom: 64px;
    width: 120px;
    transform: rotate(-58deg);
}

.device-bar {
    width: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(126, 224, 214, 0.95), rgba(255, 255, 255, 0.16));
    box-shadow: 0 0 24px rgba(126, 224, 214, 0.12);
}

.device-bar-a { height: 58px; }
.device-bar-b { height: 94px; }
.device-bar-c { height: 124px; }
.device-bar-d { height: 76px; }

.psiko-device-float {
    position: absolute;
    display: flex;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 42px rgba(8, 20, 35, 0.18);
}

.psiko-device-float span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0.9), rgba(255, 255, 255, 0.35));
}

.psiko-device-float-top {
    top: 42px;
    right: 26px;
    animation: floatSoft 6.8s ease-in-out infinite;
}

.psiko-device-float-top span:nth-child(1) { width: 34px; }
.psiko-device-float-top span:nth-child(2) { width: 58px; }
.psiko-device-float-top span:nth-child(3) { width: 24px; }

.psiko-device-float-bottom {
    left: 42px;
    bottom: 48px;
    animation: floatSoftAlt 7.4s ease-in-out infinite;
}

.psiko-device-float-bottom span:nth-child(1) { width: 70px; }
.psiko-device-float-bottom span:nth-child(2) { width: 34px; }

.psiko-device-photo-slider {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    padding: clamp(1.05rem, 2.6vw, 1.85rem);
    border-radius: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 16%, rgba(126, 224, 214, 0.24), transparent 25%),
        radial-gradient(circle at 14% 88%, rgba(126, 224, 214, 0.14), transparent 30%),
        linear-gradient(145deg, rgba(12, 28, 48, 0.98), rgba(29, 63, 109, 0.96) 58%, rgba(42, 91, 121, 0.92));
    border: 1px solid rgba(126, 224, 214, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(126, 224, 214, 0.08),
        0 30px 66px rgba(18, 48, 79, 0.22);
}

.psiko-device-photo-slider::before,
.psiko-device-photo-slider::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.psiko-device-photo-slider::before {
    inset: 18px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 34%),
        radial-gradient(circle at 78% 14%, rgba(126, 224, 214, 0.08), transparent 32%);
}

.psiko-device-photo-slider::after {
    width: 58%;
    height: 58%;
    right: -14%;
    top: -18%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.16), transparent 70%);
    filter: blur(2px);
}

.psiko-device-photo-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 650px);
    height: clamp(430px, 42vw, 590px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 12%, rgba(126, 224, 214, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(9, 23, 40, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: 10px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 0 0 1px rgba(126, 224, 214, 0.1),
        inset 0 18px 42px rgba(255, 255, 255, 0.06),
        0 26px 58px rgba(8, 20, 35, 0.34);
}

.psiko-device-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 76%, rgba(8, 20, 35, 0.18)),
        linear-gradient(90deg, rgba(8, 20, 35, 0.22), transparent 18%, transparent 82%, rgba(8, 20, 35, 0.18));
}

.psiko-device-photo-frame img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
    filter: saturate(1.03) contrast(1.03);
    transform: scale(1.015);
}

.psiko-device-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 37, 61, 0.68);
    box-shadow: 0 16px 34px rgba(8, 20, 35, 0.26);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.psiko-device-nav:hover,
.psiko-device-nav:focus-visible {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 42px rgba(8, 20, 35, 0.32);
}

.psiko-device-nav:focus-visible {
    outline: 3px solid rgba(126, 224, 214, 0.45);
    outline-offset: 3px;
}

.psiko-device-nav-prev {
    left: clamp(1rem, 2vw, 1.6rem);
}

.psiko-device-nav-next {
    right: clamp(1rem, 2vw, 1.6rem);
}

.psiko-device-nav-prev:hover,
.psiko-device-nav-prev:focus-visible {
    transform: translate(-3px, -50%);
}

.psiko-device-nav-next:hover,
.psiko-device-nav-next:focus-visible {
    transform: translate(3px, -50%);
}

.psiko-device-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.72rem;
    border-radius: 999px;
    background: rgba(17, 37, 61, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(8, 20, 35, 0.2);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.psiko-device-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.psiko-device-dots button:hover,
.psiko-device-dots button:focus-visible {
    background: rgba(126, 224, 214, 0.9);
    transform: scale(1.18);
}

.psiko-device-dots button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.psiko-device-dots button.active {
    width: 30px;
    background: linear-gradient(90deg, #7ee0d6, #ffffff);
    box-shadow: 0 0 0 3px rgba(126, 224, 214, 0.18), 0 0 18px rgba(126, 224, 214, 0.55);
}

.about-system-right {
    display: grid;
    place-items: center;
}

.about-logo-box {
    width: 100%;
    min-height: 390px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.36), transparent 30%),
        linear-gradient(180deg, rgba(248, 251, 253, 0.86), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(18, 48, 79, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-logo-box img {
    width: min(100%, 430px);
}

.catalog-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.45rem 1.6rem;
    background:
        radial-gradient(circle at left top, rgba(126, 224, 214, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 253, 0.88));
}

.catalog-link {
    text-decoration: none;
    color: inherit;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalog-link:hover {
    transform: translateY(-3px);
    border-color: rgba(39, 165, 157, 0.22);
    box-shadow: 0 28px 64px rgba(18, 48, 79, 0.14);
}

.catalog-link:focus-visible {
    outline: 3px solid rgba(39, 165, 157, 0.34);
    outline-offset: 4px;
    border-color: rgba(39, 165, 157, 0.28);
    box-shadow: 0 0 0 6px rgba(39, 165, 157, 0.12);
}

.catalog-copy {
    max-width: 720px;
}

.catalog-copy h2 {
    margin: 0.45rem 0 0.5rem;
}

.catalog-copy p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.catalog-side {
    display: grid;
    justify-items: end;
    gap: 0.9rem;
    flex-shrink: 0;
}

.catalog-preview {
    display: grid;
    gap: 0.35rem;
    min-width: 250px;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 249, 0.92));
    box-shadow:
        0 18px 40px rgba(18, 48, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.catalog-preview-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 30px;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.catalog-preview strong {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.25;
}

.catalog-preview small {
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.55;
}

.catalog-cta {
    pointer-events: none;
}

.benefits-panel {
    padding: 1.8rem;
}

.benefits-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(248, 251, 253, 0.88);
    border: 1px solid rgba(18, 48, 79, 0.06);
}

.benefit-item i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 20px rgba(29, 63, 109, 0.12);
}

.benefit-item span {
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 700;
}

.stats-premium-head {
    text-align: center;
    margin-bottom: 1.4rem;
}

.stats-premium-head h2,
.services-premium-hero h2,
.tests-head h2,
.section-title-lined,
.refs-highlight h2 {
    margin: 0;
    font-size: clamp(2.1rem, 3vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.stats-premium-head p,
.tests-desc,
.refs-subtitle {
    max-width: 700px;
    margin: 0.85rem auto 0;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.85;
    text-wrap: pretty;
}

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

.stat-premium-item {
    padding: 1.9rem 1.45rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 253, 0.78)),
        radial-gradient(circle at top center, rgba(126, 224, 214, 0.1), transparent 24%);
}

.stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    color: var(--ink);
}

.stat-number span {
    font-size: 0.55em;
    color: var(--brand);
}

.stat-divider {
    width: 70px;
    height: 2px;
    margin: 0.9rem auto;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.stat-premium-item p {
    margin: 0;
    color: var(--ink-soft);
}

.services-premium-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 252, 0.96) 52%, rgba(233, 244, 247, 0.98) 100%),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.18), transparent 24%),
        radial-gradient(circle at left 68%, rgba(29, 63, 109, 0.08), transparent 32%);
    padding: 1.75rem;
    border: 1px solid rgba(29, 63, 109, 0.08);
    border-radius: 32px;
    box-shadow:
        0 28px 56px rgba(15, 37, 63, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.services-premium {
    position: relative;
}

.services-premium::before {
    content: "";
    position: absolute;
    inset: 4% 6% auto;
    height: 78%;
    border-radius: 42px;
    background:
        radial-gradient(circle at 18% 30%, rgba(126, 224, 214, 0.18), transparent 24%),
        radial-gradient(circle at 82% 72%, rgba(29, 63, 109, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(244, 249, 252, 0.14));
    pointer-events: none;
    z-index: -1;
}

.services-premium-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -18% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.24), transparent 68%);
    pointer-events: none;
}

.services-premium-hero::after {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 132px;
    height: 132px;
    border-radius: 28px;
    border: 1px solid rgba(29, 63, 109, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.02)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(29, 63, 109, 0.03) 16px 17px),
        repeating-linear-gradient(180deg, transparent 0 16px, rgba(29, 63, 109, 0.03) 16px 17px);
    opacity: 0.8;
    pointer-events: none;
}

.services-premium-hero > * {
    position: relative;
    z-index: 1;
}

.services-premium-hero h2 {
    margin-top: 0.5rem;
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 9ch;
}

.services-premium-hero p {
    max-width: 33ch;
    margin-top: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.82;
    font-size: 1.02rem;
}

.services-premium-points {
    display: grid;
    gap: 0.9rem;
    margin: 1.65rem 0 1.2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(29, 63, 109, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 249, 251, 0.9)),
        rgba(29, 63, 109, 0.04);
    box-shadow: 0 14px 28px rgba(18, 48, 79, 0.06);
    color: var(--ink);
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.point:hover {
    transform: translateY(-2px);
    border-color: rgba(126, 224, 214, 0.24);
    box-shadow: 0 18px 32px rgba(18, 48, 79, 0.09);
}

.point-icon-shell {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(126, 224, 214, 0.24), rgba(29, 63, 109, 0.14));
    border: 1px solid rgba(126, 224, 214, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.point i,
.service-row-icon i,
.why-box i,
.process-trust i {
    color: var(--brand);
}

.services-premium-note {
    display: grid;
    gap: 0.4rem;
    margin-top: 0.35rem;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(18, 48, 79, 0.94), rgba(29, 63, 109, 0.88));
    color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 40px rgba(18, 48, 79, 0.14);
}

.services-premium-note strong {
    color: #fff;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.services-premium-note span:last-child {
    line-height: 1.65;
    font-size: 0.94rem;
}

.services-premium-note-line {
    width: 56px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0.9), rgba(126, 224, 214, 0.1));
}

.services-premium-list {
    display: grid;
    gap: 1rem;
}

.services-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 1rem;
    align-items: stretch;
}

.service-feature-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    gap: 1.2rem;
    min-height: 100%;
    padding: 1.55rem;
    text-decoration: none;
    border-radius: 34px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    box-shadow: 0 24px 54px rgba(18, 48, 79, 0.1);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-feature-card::before {
    content: "";
    position: absolute;
    inset: auto auto -52px -34px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.22), transparent 72%);
    pointer-events: none;
}

.service-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%);
    pointer-events: none;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(18, 48, 79, 0.14);
    border-color: rgba(39, 165, 157, 0.18);
}

.service-feature-card:hover .service-row-arrow {
    transform: translateX(4px);
}

.service-feature-primary {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 248, 0.88)),
        radial-gradient(circle at top right, rgba(39, 165, 157, 0.18), transparent 26%);
}

.service-feature-secondary {
    background:
        linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(240, 245, 251, 0.9)),
        radial-gradient(circle at top right, rgba(29, 63, 109, 0.12), transparent 26%);
}

.service-feature-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.service-feature-visual {
    position: relative;
    z-index: 1;
    min-height: 118px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(29, 63, 109, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(233, 243, 248, 0.84), rgba(244, 249, 252, 0.98));
}

.service-feature-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 26%, rgba(126, 224, 214, 0.2), transparent 22%),
        radial-gradient(circle at 78% 72%, rgba(29, 63, 109, 0.1), transparent 24%);
    pointer-events: none;
}

.service-visual-grid {
    position: absolute;
    inset: 14px 18px auto auto;
    width: 94px;
    height: 72px;
    border-radius: 18px;
    border: 1px solid rgba(29, 63, 109, 0.06);
    background:
        repeating-linear-gradient(90deg, transparent 0 13px, rgba(29, 63, 109, 0.04) 13px 14px),
        repeating-linear-gradient(180deg, transparent 0 13px, rgba(29, 63, 109, 0.04) 13px 14px);
    opacity: 0.82;
}

.service-visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.service-visual-orb-a {
    width: 74px;
    height: 74px;
    right: 28px;
    bottom: 14px;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.26), transparent 70%);
}

.service-visual-orb-b {
    width: 46px;
    height: 46px;
    left: 22px;
    top: 22px;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.14), transparent 72%);
}

.service-visual-orb-c {
    width: 88px;
    height: 88px;
    right: 20px;
    top: 18px;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.22), transparent 70%);
}

.service-visual-chip {
    position: absolute;
    left: 28px;
    bottom: 22px;
    width: 78px;
    height: 58px;
    border-radius: 20px;
    background:
        linear-gradient(160deg, rgba(29, 63, 109, 0.16), rgba(126, 224, 214, 0.16)),
        rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(29, 63, 109, 0.08);
    box-shadow: 0 14px 24px rgba(18, 48, 79, 0.08);
}

.service-visual-chip::before,
.service-visual-chip::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    height: 4px;
    border-radius: 999px;
    background: rgba(126, 224, 214, 0.7);
}

.service-visual-chip::before {
    top: 18px;
}

.service-visual-chip::after {
    top: 30px;
    width: 38px;
}

.service-visual-bars {
    position: absolute;
    right: 34px;
    bottom: 22px;
    display: flex;
    align-items: end;
    gap: 8px;
}

.service-visual-bars span {
    width: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(126, 224, 214, 0.92), rgba(29, 63, 109, 0.58));
    box-shadow: 0 10px 18px rgba(29, 63, 109, 0.12);
}

.service-visual-bars span:nth-child(1) {
    height: 34px;
}

.service-visual-bars span:nth-child(2) {
    height: 54px;
}

.service-visual-bars span:nth-child(3) {
    height: 24px;
}

.service-visual-window {
    position: absolute;
    left: 24px;
    right: 92px;
    top: 28px;
    height: 46px;
    border-radius: 18px;
    border: 1px solid rgba(29, 63, 109, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 250, 0.9));
    box-shadow: 0 12px 20px rgba(18, 48, 79, 0.06);
}

.service-visual-window span {
    position: absolute;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(29, 63, 109, 0.24);
}

.service-visual-window span:nth-child(1) {
    left: 14px;
}

.service-visual-window span:nth-child(2) {
    left: 26px;
}

.service-visual-window span:nth-child(3) {
    left: 38px;
}

.service-visual-lines {
    position: absolute;
    left: 26px;
    bottom: 20px;
    display: grid;
    gap: 9px;
}

.service-visual-lines span {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(29, 63, 109, 0.22), rgba(126, 224, 214, 0.62));
}

.service-visual-lines span:nth-child(1) {
    width: 108px;
}

.service-visual-lines span:nth-child(2) {
    width: 86px;
}

.service-visual-lines span:nth-child(3) {
    width: 126px;
}

.service-feature-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-feature-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.7rem;
}

.service-feature-body h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.06;
    color: var(--ink);
}

.service-feature-body p {
    margin: 0;
    max-width: 34ch;
    color: var(--ink-soft);
    line-height: 1.85;
}

.service-feature-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.service-feature-link {
    color: var(--ink);
    font-weight: 800;
}

.service-row {
    display: grid;
    grid-template-columns: 68px 1fr 30px;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 253, 0.82));
}

.service-row-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.12), rgba(29, 63, 109, 0.08));
    flex-shrink: 0;
}

.service-row-body h3,
.tests-card h3,
.why-box h3 {
    margin: 0 0 0.45rem;
}

.service-row-body p,
.tests-card p,
.why-box p,
.process-trust p,
.regulation-text p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.8;
}

.service-row-arrow {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 48, 79, 0.08);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-feature-card:hover .service-row-arrow,
.service-row:hover .service-row-arrow {
    background: rgba(39, 165, 157, 0.12);
    border-color: rgba(39, 165, 157, 0.16);
}

.bg-soft {
    position: relative;
}

.bg-soft::before {
    content: "";
    position: absolute;
    inset: 1rem 0;
    background: linear-gradient(180deg, rgba(126, 224, 214, 0.12), rgba(255, 255, 255, 0));
    z-index: -1;
}

.psiko-device-carousel {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 253, 0.8)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.12), transparent 22%);
    box-shadow: 0 28px 62px rgba(18, 48, 79, 0.12);
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    padding: 1.1rem;
}

.auto-slide {
    animation: deviceSlide 26s linear infinite;
}

.carousel-item {
    width: 220px;
    flex: 0 0 220px;
}

.carousel-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
}

.tests-shell {
    position: relative;
    overflow: hidden;
    padding: 1.45rem;
    border-radius: 38px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 252, 0.86)),
        radial-gradient(circle at 14% 18%, rgba(126, 224, 214, 0.16), transparent 22%),
        radial-gradient(circle at 86% 82%, rgba(29, 63, 109, 0.09), transparent 28%);
    box-shadow: 0 30px 70px rgba(18, 48, 79, 0.12);
}

.tests-shell::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    pointer-events: none;
}

.tests-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    padding: 1.5rem 1.55rem;
    margin-bottom: 1.15rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 253, 0.7)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.12), transparent 24%);
    border: 1px solid rgba(18, 48, 79, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
    text-align: left;
}

.tests-graph-mark {
    position: absolute;
    top: 42px;
    right: 28px;
    width: 320px;
    height: 196px;
    pointer-events: none;
    opacity: 0.96;
}

.tests-graph-grid,
.tests-graph-line,
.tests-graph-point,
.tests-graph-bar {
    position: absolute;
    display: block;
}

.tests-graph-grid {
    inset: 12px 10px 10px 14px;
    border-radius: 24px;
    background:
        linear-gradient(rgba(16, 39, 67, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 39, 67, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.62;
}

.tests-graph-line {
    left: 48px;
    right: 42px;
    bottom: 46px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(14, 34, 58, 0.18), rgba(14, 34, 58, 0.46));
    transform: rotate(-13deg);
    transform-origin: left center;
}

.tests-graph-point {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(14, 34, 58, 0.78);
    box-shadow: 0 0 0 10px rgba(14, 34, 58, 0.08);
}

.tests-graph-point-a {
    left: 116px;
    bottom: 76px;
}

.tests-graph-point-b {
    right: 34px;
    top: 20px;
}

.tests-graph-bar {
    bottom: 18px;
    width: 30px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(23, 49, 79, 0.9), rgba(56, 89, 124, 0.52));
    box-shadow: 0 18px 30px rgba(18, 48, 79, 0.1);
}

.tests-graph-bar-a {
    left: 40px;
    height: 60px;
}

.tests-graph-bar-b {
    left: 92px;
    height: 100px;
}

.tests-graph-bar-c {
    left: 144px;
    height: 140px;
}

.tests-graph-bar-d {
    left: 196px;
    height: 182px;
}

.tests-label {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tests-head h2 {
    max-width: 12ch;
}

.tests-desc {
    max-width: 70ch;
    margin: 0;
}

.tests-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1rem;
    align-items: stretch;
}

.tests-panel {
    position: relative;
    overflow: hidden;
    padding: 1.7rem;
    border: 1px solid rgba(18, 48, 79, 0.08);
    border-radius: 32px;
    box-shadow: 0 24px 54px rgba(18, 48, 79, 0.1);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    display: grid;
    align-content: start;
    gap: 1.15rem;
}

.tests-panel::before {
    content: "";
    position: absolute;
    inset: auto -52px -72px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.18), transparent 70%);
    pointer-events: none;
}

.tests-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 62px rgba(18, 48, 79, 0.14);
    border-color: rgba(39, 165, 157, 0.18);
}

.tests-panel-capabilities {
    display: grid;
    gap: 1.15rem;
    grid-row: span 2;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 249, 0.9)),
        radial-gradient(circle at top right, rgba(39, 165, 157, 0.16), transparent 24%);
}

.tests-capability-visual {
    position: relative;
    min-height: 170px;
    margin-top: auto;
    border-radius: 24px;
    border: 1px solid rgba(18, 48, 79, 0.07);
    background:
        linear-gradient(180deg, rgba(29, 63, 109, 0.1), rgba(29, 63, 109, 0.04)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.14), transparent 24%);
    overflow: hidden;
}

.tests-capability-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    pointer-events: none;
}

.tests-capability-screen {
    position: absolute;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(19, 42, 71, 0.44);
    box-shadow: 0 20px 40px rgba(18, 48, 79, 0.14);
}

.tests-capability-screen-back {
    left: 28px;
    top: 28px;
    width: 44%;
    height: 96px;
    transform: rotate(-7deg);
}

.tests-capability-screen-back span,
.tests-capability-lines span {
    position: absolute;
    left: 18px;
    right: 18px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 224, 214, 0.82), rgba(255, 255, 255, 0.26));
}

.tests-capability-screen-back span:nth-child(1) { top: 22px; right: 46px; }
.tests-capability-screen-back span:nth-child(2) { top: 40px; }
.tests-capability-screen-back span:nth-child(3) { top: 58px; right: 68px; opacity: 0.7; }

.tests-capability-screen-front {
    right: 24px;
    bottom: 20px;
    width: 54%;
    height: 112px;
    padding: 16px;
}

.tests-capability-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 54px;
}

.tests-capability-bars span {
    display: block;
    width: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(126, 224, 214, 0.94), rgba(255, 255, 255, 0.18));
}

.tests-capability-bars span:nth-child(1) { height: 28px; }
.tests-capability-bars span:nth-child(2) { height: 44px; }
.tests-capability-bars span:nth-child(3) { height: 36px; }

.tests-capability-lines {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    height: 28px;
}

.tests-capability-lines span:nth-child(1) { top: 0; right: 26px; }
.tests-capability-lines span:nth-child(2) { top: 16px; right: 48px; opacity: 0.72; }

.tests-capability-node {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 1), rgba(126, 224, 214, 0.34));
    box-shadow: 0 0 18px rgba(126, 224, 214, 0.22);
}

.tests-panel-content,
.tests-panel-importance {
    display: grid;
    gap: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.88)),
        radial-gradient(circle at top right, rgba(29, 63, 109, 0.08), transparent 24%);
}

.tests-panel-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.12), rgba(29, 63, 109, 0.08));
    color: var(--brand);
    font-size: 1.35rem;
    transition: transform 220ms ease, background 220ms ease;
}

.tests-panel:hover .tests-panel-icon {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.18), rgba(29, 63, 109, 0.12));
}

.tests-panel-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.65rem;
}

.tests-panel-copy h3 {
    margin: 0;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    line-height: 1.08;
}

.tests-panel-copy p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.85;
}

.tests-panel-copy ul {
    margin: 0.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.tests-panel-copy li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

.tests-panel-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.82rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.tests-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
}

.tests-mini span {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.1);
    color: var(--brand-2);
    font-weight: 800;
    font-size: 0.88rem;
}

.tests-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.tests-footnote {
    margin: 1rem 0 0;
    padding: 0.95rem 1.15rem 0;
    color: var(--ink-soft);
}

.process-card {
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 253, 0.82)),
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.1), transparent 22%);
}

.process-intro {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.35rem;
}

.process-label {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-flow {
    display: grid;
    gap: 1rem;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-step-card {
    position: relative;
    display: grid;
    gap: 0.95rem;
    align-items: start;
    padding: 1.35rem;
    border: 1px solid rgba(18, 48, 79, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.88)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.1), transparent 24%);
    box-shadow: 0 18px 42px rgba(18, 48, 79, 0.08);
}

.process-connector {
    position: absolute;
    top: 41px;
    left: calc(100% - 10px);
    width: calc(100% + 4px);
    height: 2px;
    background: linear-gradient(90deg, rgba(39, 165, 157, 0.35), rgba(29, 63, 109, 0.16));
    pointer-events: none;
}

.step-badge {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 16px 32px rgba(29, 63, 109, 0.18);
}

.step-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(29, 63, 109, 0.05);
    color: var(--brand);
    font-size: 1.2rem;
}

.process-step-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.82;
}

.process-note {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background: rgba(29, 63, 109, 0.04);
}

.process-note i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.25rem;
    color: var(--brand-2);
    background: rgba(39, 165, 157, 0.12);
}

.process-note p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.8;
}

.why-shell {
    position: relative;
    overflow: hidden;
    padding: 1.45rem;
    border-radius: 38px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 252, 0.86)),
        radial-gradient(circle at 16% 18%, rgba(126, 224, 214, 0.16), transparent 22%),
        radial-gradient(circle at 88% 78%, rgba(29, 63, 109, 0.08), transparent 28%);
    box-shadow: 0 30px 70px rgba(18, 48, 79, 0.12);
}

.why-shell::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    pointer-events: none;
}

.why-intro {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.95rem;
    padding: 1.45rem 1.55rem;
    margin-bottom: 1.15rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 253, 0.7)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.12), transparent 24%);
    border: 1px solid rgba(18, 48, 79, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.why-label {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) repeat(3, minmax(0, 0.74fr));
    gap: 1rem;
}

.why-box {
    position: relative;
    overflow: hidden;
    padding: 1.7rem;
    border-radius: 30px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 253, 0.88)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.1), transparent 24%);
    box-shadow: 0 20px 48px rgba(18, 48, 79, 0.09);
    display: grid;
    align-content: start;
    gap: 0.9rem;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.why-box::before {
    content: "";
    position: absolute;
    inset: auto -44px -62px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.16), transparent 70%);
    pointer-events: none;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 58px rgba(18, 48, 79, 0.13);
    border-color: rgba(39, 165, 157, 0.18);
}

.why-box-primary {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 248, 0.92)),
        radial-gradient(circle at top right, rgba(39, 165, 157, 0.18), transparent 26%);
}

.why-icon-wrap {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.14), rgba(29, 63, 109, 0.08));
    color: var(--brand);
    font-size: 1.55rem;
    transition: transform 220ms ease, background 220ms ease;
}

.why-box:hover .why-icon-wrap {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.2), rgba(29, 63, 109, 0.12));
}

.why-box h3 {
    margin: 0;
    font-size: clamp(1.25rem, 1.7vw, 1.65rem);
    line-height: 1.08;
}

.why-box p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.82;
}

.regulation {
    color: white;
}

.bg-deep .regulation-text,
.bg-deep .regulation-logo-card {
    background: linear-gradient(180deg, rgba(15, 39, 67, 0.96), rgba(19, 60, 95, 0.92));
    border-color: rgba(255, 255, 255, 0.08);
}

.bg-deep .regulation-text h2,
.bg-deep .regulation-text p,
.bg-deep .regulation-text li {
    color: white;
}

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

.regulation-logo-card {
    min-height: 200px;
    display: grid;
    place-items: center;
    padding: 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.faq-section {
    padding: 2rem 0;
}

.faq-shell {
    position: relative;
    overflow: hidden;
    padding: 1.45rem;
    border-radius: 38px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 252, 0.88)),
        radial-gradient(circle at 14% 18%, rgba(126, 224, 214, 0.12), transparent 20%),
        radial-gradient(circle at 88% 82%, rgba(29, 63, 109, 0.06), transparent 26%);
    box-shadow: 0 22px 48px rgba(18, 48, 79, 0.08);
}

.faq-shell::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    pointer-events: none;
}

.faq-head {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

.faq-label {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    align-self: start;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 253, 0.84)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.08), transparent 24%);
    box-shadow: 0 16px 34px rgba(18, 48, 79, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(18, 48, 79, 0.09);
    border-color: rgba(39, 165, 157, 0.16);
}

.faq-question {
    position: relative;
    display: block;
    list-style: none;
    width: 100%;
    text-align: left;
    border: 0;
    padding: 1.35rem 4.3rem 1.35rem 1.35rem;
    background: transparent;
    font: inherit;
    font-weight: 800;
    line-height: 1.45;
    font-size: 1.03rem;
    color: var(--ink);
    cursor: pointer;
}

.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.45rem;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transform: translateY(-50%);
    transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 260ms ease;
}

.faq-answer > * {
    min-height: 0;
}

.faq-answer {
    padding: 0 1.35rem;
}

.faq-item[open] {
    border-color: rgba(39, 165, 157, 0.16);
    box-shadow: 0 24px 44px rgba(18, 48, 79, 0.1);
}

.faq-item[open] .faq-question::before,
.faq-item[open] .faq-question::after {
    background: var(--brand-2);
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 1.35rem;
}

.faq-answer p,
.faq-answer li {
    color: var(--ink-soft);
    line-height: 1.8;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer ul {
    margin: 0.8rem 0 0;
    padding-left: 1.15rem;
}

.refs-highlight {
    padding-bottom: 2.4rem;
}

.refs-shell {
    position: relative;
    overflow: hidden;
    padding: 1.45rem;
    border-radius: 38px;
    border: 1px solid rgba(18, 48, 79, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 252, 0.88)),
        radial-gradient(circle at 14% 22%, rgba(126, 224, 214, 0.14), transparent 22%),
        radial-gradient(circle at 88% 76%, rgba(29, 63, 109, 0.07), transparent 28%);
    box-shadow: 0 24px 54px rgba(18, 48, 79, 0.09);
}

.refs-shell::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    pointer-events: none;
}

.refs-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
    padding: 1.3rem 1.45rem 0.2rem;
}

.refs-label {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.refs-head .refs-subtitle {
    margin: 0;
    max-width: 56ch;
}

.stats-premium-head {
    margin-bottom: 1.75rem;
}

.stats-premium-grid {
    gap: 1.15rem;
}

.company-slider {
    overflow: hidden;
    position: relative;
    padding: 1.15rem 0 0.4rem;
    margin-top: 0.8rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.08), transparent 24%);
    border: 1px solid rgba(18, 48, 79, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.slide-track {
    display: flex;
    gap: 0.8rem;
    width: max-content;
    animation: logoSlide 28s linear infinite;
}

.company-slider:hover .slide-track {
    animation-play-state: paused;
}

.slide {
    width: 190px;
    height: 92px;
    flex: 0 0 190px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(18, 48, 79, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.slide:hover {
    transform: translateY(-3px) scale(1.01);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(39, 165, 157, 0.14);
    box-shadow: 0 14px 28px rgba(18, 48, 79, 0.08);
}

.slide img {
    max-width: 84%;
    max-height: 54px;
    object-fit: contain;
}

.refs-large-slider .slide-track {
    gap: 1.25rem;
}

.slide-large {
    width: 280px;
    height: 150px;
    flex-basis: 280px;
}

.slide-large img {
    max-width: 84%;
    max-height: 82px;
}

.brand-slide img {
    max-height: 96px;
}

.refs-page-slider {
    padding: 1.35rem 0 0.7rem;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 251, 253, 0.72)),
        radial-gradient(circle at 12% 18%, rgba(126, 224, 214, 0.08), transparent 22%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 20px 44px rgba(18, 48, 79, 0.06);
}

.refs-page-slider .slide-track {
    gap: 1.1rem;
    animation-duration: 68s;
}

.refs-page-slider .slide {
    width: 240px;
    height: 118px;
    flex-basis: 240px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.88)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.08), transparent 24%);
    border: 1px solid rgba(18, 48, 79, 0.06);
}

.refs-page-slider .slide img {
    max-width: 82%;
    max-height: 62px;
}

.refs-page-slider-logos .slide-track {
    animation-duration: 74s;
}

.refs-page-slider-brands .slide-track {
    animation-duration: 82s;
}

.refs-page-slider-brands .slide {
    width: 260px;
    height: 132px;
    flex-basis: 260px;
}

.refs-page-slider-brands .slide img {
    max-height: 84px;
}

.refs-showcase-shell {
    position: relative;
    padding: 1.35rem 1.35rem 0.95rem;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 251, 253, 0.78)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.12), transparent 30%),
        radial-gradient(circle at left center, rgba(33, 106, 169, 0.06), transparent 28%);
    border: 1px solid rgba(18, 48, 79, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 24px 48px rgba(18, 48, 79, 0.07);
}

.refs-showcase-shell::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    pointer-events: none;
}

.refs-showcase-controls {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: flex-end;
    margin-bottom: 0.95rem;
}

.refs-showcase-btn {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(18, 48, 79, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 252, 0.88)),
        radial-gradient(circle at top left, rgba(126, 224, 214, 0.16), transparent 60%);
    color: var(--ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 14px 28px rgba(18, 48, 79, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.refs-showcase-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 165, 157, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 32px rgba(18, 48, 79, 0.11);
}

.refs-showcase-btn span {
    font-size: 1.15rem;
    line-height: 1;
}

.refs-logo-rail {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.2rem 0.1rem 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(39, 165, 157, 0.32) transparent;
}

.refs-logo-track {
    display: flex;
    gap: 1.15rem;
    width: max-content;
}

.refs-logo-rail::-webkit-scrollbar {
    height: 9px;
}

.refs-logo-rail::-webkit-scrollbar-track {
    background: transparent;
}

.refs-logo-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(39, 165, 157, 0.34), rgba(33, 106, 169, 0.28));
}

.refs-rail-card {
    flex: 0 0 280px;
}

.refs-logo-rail .slide-large {
    width: 280px;
    flex-basis: 280px;
}

.site-fab-stack {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 30;
    display: grid;
    justify-items: end;
    gap: 0.75rem;
    align-items: center;
}

.quick-pay-fab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    width: auto;
    min-width: 0;
    height: 62px;
    padding: 0.5rem 0.58rem 0.5rem 0.5rem;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(38, 176, 167, 0.98), rgba(31, 87, 152, 0.96));
    box-shadow:
        0 20px 40px rgba(17, 44, 73, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        filter 220ms ease;
}

.quick-pay-fab::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.quick-pay-fab::after {
    content: "";
    position: absolute;
    inset: -120% auto auto -30%;
    width: 42%;
    height: 260%;
    transform: rotate(22deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    opacity: 0.5;
    animation: quickPaySweep 5.8s ease-in-out infinite;
    pointer-events: none;
}

.quick-pay-fab:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 46px rgba(17, 44, 73, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    filter: saturate(1.03);
}

.quick-pay-fab-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 18px rgba(17, 44, 73, 0.14);
    font-size: 0.96rem;
}

.quick-pay-fab-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.96);
    white-space: nowrap;
    opacity: 1;
    overflow: visible;
    max-width: none;
    transform-origin: left center;
    transition: opacity 220ms ease;
}

.scroll-top-btn {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    box-shadow: 0 18px 32px rgba(29, 63, 109, 0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 180ms ease;
    z-index: 25;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 721px) {
    .quick-pay-fab {
        gap: 0.68rem;
        height: 66px;
        padding: 0.5rem 1.12rem 0.5rem 0.54rem;
        background:
            radial-gradient(circle at 14% 24%, rgba(126, 224, 214, 0.28), transparent 28%),
            linear-gradient(135deg, rgba(38, 184, 173, 0.98), rgba(32, 103, 170, 0.97) 68%, rgba(28, 76, 136, 0.98));
        box-shadow:
            0 22px 44px rgba(13, 40, 68, 0.28),
            0 0 0 1px rgba(78, 210, 205, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    .quick-pay-fab::before {
        inset: 1.5px;
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .quick-pay-fab::after {
        inset: -132% auto auto -18%;
        width: 36%;
        opacity: 0.62;
        animation-duration: 4.8s;
    }

    .quick-pay-fab:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow:
            0 28px 52px rgba(13, 40, 68, 0.34),
            0 0 0 1px rgba(95, 227, 219, 0.26),
            0 0 24px rgba(76, 216, 207, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.32);
        filter: saturate(1.08);
    }

    .quick-pay-fab-icon {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
            radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.16), transparent 52%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.22),
            0 10px 20px rgba(13, 40, 68, 0.18);
        font-size: 1rem;
    }

    .quick-pay-fab-label {
        font-size: 0.96rem;
        font-weight: 800;
        letter-spacing: -0.025em;
        text-shadow: 0 1px 16px rgba(11, 37, 67, 0.28);
    }
}

@keyframes quickPaySweep {
    0%,
    22% {
        transform: translateX(0) rotate(22deg);
        opacity: 0;
    }
    30% {
        opacity: 0.45;
    }
    52% {
        transform: translateX(260%) rotate(22deg);
        opacity: 0;
    }
    100% {
        transform: translateX(260%) rotate(22deg);
        opacity: 0;
    }
}

.reveal {
    will-change: transform, opacity;
    transform-origin: center center;
    backface-visibility: hidden;
}

@keyframes homeHeroReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-enhanced .reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.988);
    transition:
        opacity 1960ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 2320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enhanced .reveal-left {
    transform: translate3d(-46px, 0, 0) scale(0.988);
}

.js-enhanced .reveal-right {
    transform: translate3d(46px, 0, 0) scale(0.988);
}

.js-enhanced .reveal-up {
    transform: translate3d(0, 34px, 0) scale(0.988);
}

.js-enhanced .reveal.visible,
.js-enhanced .reveal-left.visible,
.js-enhanced .reveal-right.visible,
.js-enhanced .reveal-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-delay-1 { transition-delay: 260ms; }
.reveal-delay-2 { transition-delay: 540ms; }
.reveal-delay-3 { transition-delay: 820ms; }
.reveal-delay-4 { transition-delay: 1100ms; }

.js-enhanced .home-page .reveal,
.js-enhanced .home-page .reveal-left,
.js-enhanced .home-page .reveal-right,
.js-enhanced .home-page .reveal-up {
    opacity: 0;
    transition:
        opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 920ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-enhanced .home-page .reveal {
    transform: translate3d(0, 22px, 0);
}

.js-enhanced .home-page .reveal-left {
    transform: translate3d(-38px, 0, 0);
}

.js-enhanced .home-page .reveal-right {
    transform: translate3d(38px, 0, 0);
}

.js-enhanced .home-page .reveal-up {
    transform: translate3d(0, 30px, 0);
}

.js-enhanced .home-page .reveal.visible,
.js-enhanced .home-page .reveal-left.visible,
.js-enhanced .home-page .reveal-right.visible,
.js-enhanced .home-page .reveal-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.home-page .reveal,
.home-page .reveal-left,
.home-page .reveal-right,
.home-page .reveal-up {
    will-change: transform, opacity;
}

.js-enhanced .home-page .reveal,
.js-enhanced .home-page .reveal-left,
.js-enhanced .home-page .reveal-right,
.js-enhanced .home-page .reveal-up {
    opacity: 0;
    transition:
        opacity 1560ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 1960ms cubic-bezier(0.19, 1, 0.22, 1);
}

.js-enhanced .home-page .reveal {
    transform: translate3d(0, 16px, 0);
}

.js-enhanced .home-page .reveal-left {
    transform: translate3d(-26px, 0, 0);
}

.js-enhanced .home-page .reveal-right {
    transform: translate3d(26px, 0, 0);
}

.js-enhanced .home-page .reveal-up {
    transform: translate3d(0, 20px, 0);
}

.js-enhanced .home-page .reveal.visible,
.js-enhanced .home-page .reveal-left.visible,
.js-enhanced .home-page .reveal-right.visible,
.js-enhanced .home-page .reveal-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.home-page .reveal-delay-1 { transition-delay: 320ms; }
.home-page .reveal-delay-2 { transition-delay: 580ms; }
.home-page .reveal-delay-3 { transition-delay: 840ms; }
.home-page .reveal-delay-4 { transition-delay: 1100ms; }

@keyframes deviceSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes logoSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes heroSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes floatSoft {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes floatSoftAlt {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 10px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-load-item,
    .js-enhanced .reveal,
    .js-enhanced .reveal-left,
    .js-enhanced .reveal-right,
    .js-enhanced .reveal-up,
    .auto-slide,
    .hero-slider-track,
    .slide-track,
    .device-gallery-track {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.device-page .device-security-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(126, 224, 214, 0.22), transparent 26%),
        linear-gradient(135deg, rgba(12, 37, 66, 0.98), rgba(18, 59, 95, 0.94) 58%, rgba(23, 137, 127, 0.92)) !important;
}

.device-page .device-security-card::after {
    content: "";
    position: absolute;
    inset: auto -70px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 224, 214, 0.22), transparent 70%);
    pointer-events: none;
}

.device-page .device-security-card .section-heading,
.device-page .device-security-card .detail-list {
    position: relative;
    z-index: 1;
}

.device-page .device-security-card .eyebrow,
.device-page .device-security-card h2,
.device-page .device-security-card li {
    color: #ffffff !important;
}

.device-page .device-security-card .eyebrow {
    opacity: 0.9;
}

@media (max-width: 1080px) {
    .site-nav-inner,
    .hero-grid,
    .split-section,
    .article-shell,
    .footer-grid,
    .cta-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .card-grid.three,
    .card-grid.two,
    .news-grid,
    .logo-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-premium-grid,
    .services-premium-grid,
    .psiko-device-grid,
    .process-grid,
    .regulation-grid,
    .tests-grid,
    .stats-premium-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-list-grid {
        grid-template-columns: 1fr;
    }

    .about-bento-grid,
    .about-bento-metrics,
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .device-fact-grid,
    .device-hardware-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid-layout,
    .hero-side-stack {
        grid-template-columns: 1fr;
    }

    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hero-shell {
        min-height: unset;
    }

    .hero-visual-stage {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-media-shell {
        min-height: 100%;
    }

    .hero-media-frame {
        min-height: auto;
    }

    .hero-accent-grid-bottom {
        left: 6%;
    }

    .company-name-single-line {
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: -0.04em;
        line-height: 1.02;
    }

    .footer-company-name {
        font-size: 0.98rem;
        font-weight: 850;
    }

    .hero-metric-row {
        width: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .device-hero-shell,
    .device-editorial-panel,
    .device-spec-grid,
    .device-trust-grid,
    .device-sheet-grid,
    .device-tab-items,
    .device-purpose-grid,
    .device-feature-grid {
        grid-template-columns: 1fr;
    }

    .device-law-card {
        position: static;
    }

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

    .device-hero-visual {
        min-height: 500px;
    }

    .device-visual-panel {
        inset: 36px 0 102px 0;
    }

    .device-visual-floating {
        width: min(250px, 54%);
    }

    .regulation-logos {
        grid-template-columns: 1fr;
    }

    .statement-card {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-visual-composition {
        min-height: 360px;
    }

    .hero-slide {
        width: 300px;
        flex-basis: 300px;
    }

    .hero-card-main {
        right: 80px;
        width: 250px;
    }

    .hero-card-side {
        right: 20px;
        width: 220px;
    }
}

@media (max-width: 720px) {
    .site-fab-stack {
        right: 0.95rem;
        bottom: 0.95rem;
        gap: 0.6rem;
    }

    .quick-pay-fab {
        justify-content: center;
        width: 144px;
        height: 58px;
        padding: 0.4rem 0.5rem;
        gap: 0.34rem;
    }

    .quick-pay-fab-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .quick-pay-fab-label {
        max-width: none;
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        text-shadow: 0 1px 10px rgba(12, 45, 78, 0.18);
    }

    .scroll-top-btn {
        width: 58px;
        height: 58px;
    }

    .device-page .device-page-hero {
        padding-top: 1.2rem;
        padding-bottom: 1.5rem;
    }

    .device-heading h2 {
        max-width: none;
        font-size: clamp(1.8rem, 7vw, 2.35rem);
    }

    .device-hero-shell {
        gap: 1.35rem;
        padding: 1.25rem;
        border-radius: 28px;
    }

    .device-hero-copy {
        gap: 1rem;
    }

    .device-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3.25rem);
    }

    .device-fact-grid,
    .device-sheet-grid,
    .device-trust-grid,
    .device-feature-grid {
        grid-template-columns: 1fr;
    }

    .device-hero-visual {
        min-height: 360px;
    }

    .device-visual-panel {
        inset: 14px 0 72px 0;
        border-radius: 26px;
    }

    .device-visual-panel-inner {
        inset: 12px;
        border-radius: 20px;
    }

    .device-visual-orbit {
        display: none;
    }

    .device-visual-floating {
        width: calc(100% - 20px);
    }

    .device-visual-floating-top {
        top: 0;
        right: 10px;
        width: min(190px, 58%);
    }

    .device-visual-floating-bottom {
        left: 10px;
        bottom: 0;
    }

    .device-highlight-card {
        padding: 0.9rem 0.95rem;
        border-radius: 20px;
    }

    .device-purpose-card,
    .device-feature-card,
    .device-spec-card,
    .device-process-card,
    .device-sheet-card,
    .device-usage-card,
    .device-security-card,
    .device-tab-panel,
    .device-editorial-copy,
    .device-law-card {
        padding: 1.2rem;
    }

    .device-tabs-shell,
    .device-gallery-slider {
        padding: 1rem;
        border-radius: 26px;
    }

    .device-gallery-card {
        width: 220px;
        flex-basis: 220px;
    }

    .hero,
    .page-hero {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }

    .page-hero h1 {
        margin-bottom: 0.45rem;
    }

    .page-hero + .section {
        padding-top: 0.75rem;
    }

    .site-nav-inner {
        padding: 0.9rem 0;
    }

    .brand {
        flex-direction: row;
        align-items: center;
        padding: 0.8rem 0.9rem;
        border-radius: 20px;
    }

    .brand img {
        width: 140px;
    }

    .stats-grid,
    .card-grid.three,
    .card-grid.two,
    .news-grid,
    .logo-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        padding: 1.4rem;
        min-height: unset;
        border-radius: 26px;
    }

    .home-hero {
        padding-top: 3.8rem;
        padding-bottom: 1.8rem;
    }

    .section-divider,
    .home-section-spacious,
    .home-section-dark {
        padding-top: 1.7rem;
        padding-bottom: 1.7rem;
    }

    .about-bento {
        padding: 1.35rem;
        border-radius: 26px;
    }

    .about-bento-main {
        padding: 0.4rem 0.2rem 0.8rem;
        gap: 1.15rem;
    }

    .about-bento-main h2 {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 1rem;
        line-height: 1.85;
    }

    .about-premium-list {
        gap: 1.05rem;
    }

    .about-premium-list li {
        font-size: 0.98rem;
        line-height: 1.85;
    }

    .about-bento-main .about-premium-btn {
        width: 100%;
        justify-self: stretch;
    }

    .hero-grid-layout {
        gap: 1rem;
    }

    .hero-content {
        max-width: none;
        text-align: center;
        padding-left: 0;
        justify-items: center;
    }

    .hero-entry h1 {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-kicker {
        justify-content: center;
        gap: 0.65rem;
        text-align: center;
    }

    .hero-kicker-line {
        width: 38px;
    }

    .hero-visual-stage {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero-main-btn,
    .hero-secondary-btn {
        min-width: 100%;
    }

    .hero-side-card {
        min-height: unset;
    }

    .hero-side-stack {
        grid-template-columns: 1fr;
    }

    .hero-tagline {
        max-width: none;
        width: fit-content;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-floating-copy {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: none;
        order: 2;
    }

    .hero-media-shell {
        min-height: unset;
        padding: 0.85rem;
        border-radius: 24px;
        order: 1;
    }

    .hero-media-frame {
        min-height: auto;
        border-radius: 22px;
        aspect-ratio: 1.82 / 1;
    }

    .hero-photo-visual {
        object-position: center center;
        transform: scale(1.02);
    }

    .hero-photo-slide:nth-child(1) .hero-photo-visual {
        object-fit: contain;
        object-position: 50% 50%;
        transform: translateY(-5%) scale(1.03);
    }

    .hero-photo-slide:nth-child(2) .hero-photo-visual {
        object-position: 50% 50%;
        object-fit: contain;
        transform: scale(1);
    }

    .hero-photo-slide:nth-child(3) .hero-photo-visual {
        object-position: 50% 56%;
        object-fit: contain;
        transform: scale(1);
    }

    .hero-photo-slide:nth-child(4) .hero-photo-visual {
        object-fit: contain;
        object-position: 50% 56%;
        transform: scale(1);
    }

    .hero-photo-nav {
        width: 34px;
        height: 34px;
    }

    .hero-photo-nav-prev {
        left: 4px;
    }

    .hero-photo-nav-next {
        right: 4px;
    }

    .hero-accent-grid,
    .hero-accent-line {
        display: none;
    }

    .hero-accent-top {
        width: 120px;
        height: 120px;
        left: -2%;
        top: 4%;
    }

    .hero-accent-bottom {
        width: 180px;
        height: 120px;
        right: -4%;
        bottom: 6%;
    }

    .hero-scene-ring-a {
        width: 220px;
        height: 220px;
        left: 16%;
        top: 20%;
    }

    .hero-scene-ring-b {
        width: 120px;
        height: 120px;
        right: 10%;
        top: 24%;
    }

    .hero-scene-card-a {
        width: 118px;
        right: 8%;
        top: 14%;
        padding: 14px 12px;
        gap: 10px;
    }

    .hero-scene-card-b {
        width: 108px;
        left: 8%;
        bottom: 12%;
        padding: 14px 12px;
        gap: 10px;
    }

    .hero-scene-pillar {
        width: 18px;
        bottom: 14%;
    }

    .hero-scene-pillar-a {
        height: 88px;
        right: 28%;
    }

    .hero-scene-pillar-b {
        height: 66px;
        right: 22%;
    }

    .hero-scene-pillar-c {
        height: 48px;
        right: 16%;
    }

    .hero-scene-chip {
        width: 42px;
        height: 42px;
        border-radius: 16px;
    }

    .hero-metric-row {
        order: 3;
        grid-template-columns: 1fr;
        margin-left: 0;
        position: static;
        width: auto;
    }

    .hero-coverage-card {
        order: 2;
    }

    .hero-side-mini,
    .hero-side-card {
        border-radius: 22px;
    }

    .hero-coverage-card {
        padding: 1.15rem 1rem 1.2rem;
    }

    .hero-coverage-card::before {
        width: 72px;
        height: 52px;
        top: 16px;
        right: 16px;
    }

    .about-logo-box {
        min-height: 280px;
    }

    .device-fact-grid,
    .device-hardware-grid {
        grid-template-columns: 1fr;
    }

    .device-page .device-page-hero {
        padding-top: 1rem;
        padding-bottom: 1.3rem;
    }

    .device-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .device-hero-shell {
        padding: 1.25rem;
        border-radius: 26px;
    }

    .device-hero-copy h1 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 2.9rem);
    }

    .device-hero-visual {
        min-height: 360px;
    }

    .device-visual-panel {
        inset: 10px 0 70px 0;
        border-radius: 24px;
    }

    .device-tab-items,
    .device-spec-grid,
    .device-trust-grid,
    .device-sheet-grid,
    .device-purpose-grid,
    .device-feature-grid {
        grid-template-columns: 1fr;
    }

    .device-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .device-tab {
        width: 100%;
        justify-content: center;
    }

    .device-tab-panel,
    .device-purpose-card,
    .device-feature-card,
    .device-spec-card,
    .device-process-card,
    .device-sheet-card,
    .device-usage-card,
    .device-security-card,
    .device-editorial-copy,
    .device-law-card {
        padding: 1.2rem;
    }

    .device-visual-orbit {
        display: none;
    }

    .device-visual-floating {
        width: calc(100% - 20px);
    }

    .device-visual-floating-top {
        top: 0;
        right: 10px;
        width: min(190px, 58%);
    }

    .device-visual-floating-bottom {
        left: 10px;
        bottom: 0;
    }

    .device-sheet-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .device-gallery-card {
        width: 210px;
        flex-basis: 210px;
    }

    .device-lightbox {
        padding: 1rem;
    }

    .device-lightbox-shell {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .device-lightbox-frame {
        border-radius: 24px;
    }

    .device-lightbox-frame img {
        max-height: 68vh;
    }

    .device-lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 48px;
        height: 48px;
        transform: translateY(-50%);
    }

    .device-lightbox-nav:hover {
        transform: translateY(calc(-50% - 2px));
    }

    .device-lightbox-nav-prev {
        left: 0.7rem;
    }

    .device-lightbox-nav-next {
        right: 0.7rem;
    }

    .device-lightbox-close {
        top: 0.65rem;
        right: 0.65rem;
        width: 42px;
        height: 42px;
    }

    .about-premium-grid,
    .services-premium-grid,
    .psiko-device-grid,
    .regulation-grid,
    .tests-grid,
    .tests-showcase,
    .stats-premium-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 56px 1fr 20px;
    }

    .services-showcase {
        gap: 1rem;
    }

    .services-premium-hero {
        padding: 1.45rem;
        border-radius: 28px;
    }

    .services-premium-hero h2 {
        max-width: none;
        font-size: clamp(1.85rem, 7vw, 2.4rem);
    }

    .services-premium-hero p {
        max-width: none;
        font-size: 0.98rem;
    }

    .point {
        padding: 0.95rem 0.95rem;
    }

    .point-icon-shell {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .services-premium-note {
        padding: 0.95rem 0.95rem 1rem;
        border-radius: 20px;
    }

    .service-feature-card {
        min-height: 0;
        padding: 1.35rem;
        border-radius: 28px;
    }

    .service-feature-visual {
        min-height: 108px;
        border-radius: 22px;
    }

    .service-feature-body p {
        max-width: none;
    }

    .psiko-device-shell {
        border-radius: 28px;
    }

    .psiko-device-text {
        padding: 1.35rem 1.15rem 0;
        gap: 1.1rem;
    }

    .psiko-device-text .section-title-lined {
        max-width: none;
        font-size: clamp(2.2rem, 9vw, 3.3rem);
    }

    .psiko-device-main-btn {
        width: 100%;
        min-width: 0;
        margin-top: 0.35rem;
    }

    .psiko-device-visual {
        min-height: 420px;
        padding: 0 1rem 1rem;
    }

    .psiko-device-photo-slider {
        min-height: 390px;
        border-radius: 28px;
        padding: 1rem;
    }

    .psiko-device-photo-slider::before {
        inset: 14px;
        border-radius: 22px;
    }

    .psiko-device-photo-frame {
        width: 100%;
        border-radius: 26px;
        height: min(86vw, 420px);
        outline-width: 7px;
    }

    .psiko-device-nav {
        width: 46px;
        height: 46px;
    }

    .psiko-device-nav-prev {
        left: 0.78rem;
    }

    .psiko-device-nav-next {
        right: 0.78rem;
    }

    .psiko-device-dots {
        bottom: 0.82rem;
    }

    .psiko-device-stage {
        min-height: 390px;
        border-radius: 28px;
    }

    .psiko-device-window-back {
        left: 18px;
        top: 58px;
        width: 50%;
        height: 38%;
    }

    .psiko-device-window-front {
        right: 14px;
        top: 66px;
        width: 62%;
        min-height: 236px;
        padding: 0.82rem;
    }

    .device-window-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .device-chart-card {
        min-height: 152px;
        grid-row: auto;
    }

    .device-metric-card,
    .device-bars-card {
        min-height: 96px;
    }

    .device-window-header {
        margin-bottom: 0.65rem;
    }

    .device-metric-value {
        width: 52px;
        height: 52px;
        border-radius: 18px;
    }

    .device-metric-line {
        top: 4.8rem;
        height: 8px;
    }

    .device-metric-line-wide {
        top: 5.55rem;
    }

    .device-window-bar,
    .device-window-line {
        height: 8px;
    }

    .device-window-bar {
        top: 1rem;
    }

    .device-window-line-short {
        top: 2.35rem;
    }

    .device-window-line:not(.device-window-line-short):not(.device-window-line-long) {
        top: 3.2rem;
    }

    .device-window-line-long {
        top: 4.05rem;
    }

    .device-chart-orbit {
        inset: 16px;
    }

    .device-chart-point {
        width: 14px;
        height: 14px;
    }

    .device-chart-point-a {
        top: 34px;
        left: 34px;
    }

    .device-chart-point-b {
        right: 34px;
        bottom: 36px;
    }

    .device-chart-line-a {
        top: 41px;
        left: 42px;
        width: 86px;
    }

    .device-chart-line-b {
        right: 42px;
        bottom: 42px;
        width: 82px;
    }

    .device-bar {
        width: 18px;
    }

    .device-bar-a { height: 40px; }
    .device-bar-b { height: 64px; }
    .device-bar-c { height: 82px; }
    .device-bar-d { height: 54px; }

    .psiko-device-float-top {
        right: 12px;
        top: 18px;
        padding: 0.7rem 0.8rem;
    }

    .psiko-device-float-bottom {
        left: 14px;
        bottom: 18px;
        padding: 0.7rem 0.8rem;
    }

    .services-premium-hero,
    .service-row,
    .tests-card,
    .tests-panel,
    .why-box,
    .process-card,
    .regulation-text,
    .regulation-logo-card,
    .faq-item,
    .about-premium-box,
    .stat-premium-item {
        border-radius: 24px;
    }

    .catalog-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-side,
    .catalog-preview {
        width: 100%;
    }

    .catalog-side {
        justify-items: stretch;
    }

    .catalog-cta {
        width: 100%;
        justify-content: center;
    }

    .tests-panel {
        padding: 1.35rem;
        border-radius: 26px;
    }

    .tests-panel-capabilities {
        grid-row: auto;
    }

    .tests-capability-visual {
        min-height: 138px;
    }

    .tests-capability-screen-back {
        left: 18px;
        top: 22px;
        width: 42%;
        height: 78px;
    }

    .tests-capability-screen-front {
        right: 18px;
        bottom: 16px;
        width: 56%;
        height: 94px;
        padding: 12px;
    }

    .tests-shell {
        padding: 1rem;
        border-radius: 28px;
    }

    .tests-head {
        padding: 1.2rem 1.1rem;
        border-radius: 24px;
    }

    .tests-head h2,
    .tests-desc {
        max-width: none;
    }

    .tests-graph-mark {
        display: none;
    }

    .tests-actions .tests-btn {
        width: 100%;
    }

    .why-shell {
        padding: 1rem;
        border-radius: 28px;
    }

    .why-intro {
        padding: 1.2rem 1.1rem;
        border-radius: 24px;
    }

    .why-box {
        padding: 1.35rem;
        border-radius: 24px;
    }

    .faq {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.2rem 4rem 1.2rem 1.15rem;
    }

    .refs-showcase-shell {
        padding: 1.2rem 1.05rem 0.85rem;
        border-radius: 28px;
    }

    .refs-showcase-controls {
        justify-content: flex-end;
        margin-bottom: 0.85rem;
    }

    .refs-showcase-btn {
        width: 46px;
        height: 46px;
    }

    .refs-logo-rail {
        padding-bottom: 0.4rem;
    }

    .refs-logo-track {
        gap: 0.9rem;
    }

    .refs-logo-rail .slide-large,
    .refs-rail-card {
        width: 220px;
        height: 116px;
        flex-basis: 220px;
    }

    .refs-shell {
        padding: 1rem;
        border-radius: 28px;
    }

    .refs-head {
        padding: 1.1rem 1.1rem 0;
    }

    .refs-showcase-shell {
        padding: 1.2rem;
        border-radius: 28px;
    }

    .refs-showcase-head {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .refs-showcase-controls {
        justify-content: flex-start;
    }

    .refs-showcase-btn {
        width: 46px;
        height: 46px;
    }

    .refs-logo-rail {
        grid-auto-columns: minmax(220px, 74vw);
        gap: 0.9rem;
        padding-bottom: 0.4rem;
    }

    .refs-logo-rail .slide-large {
        width: auto;
        height: 116px;
        flex-basis: auto;
    }

    .faq-shell {
        padding: 1rem;
        border-radius: 28px;
    }

    .faq-head {
        margin-bottom: 1rem;
    }

    .process-card {
        padding: 1.4rem;
    }

    .process-intro {
        justify-items: center;
        text-align: center;
    }

    .process-label {
        justify-self: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .process-step-card {
        justify-items: center;
        padding: 1.15rem;
        border-radius: 24px;
        text-align: center;
    }

    .process-connector {
        top: calc(100% - 10px);
        left: 50%;
        width: 2px;
        height: 28px;
        background: linear-gradient(180deg, rgba(39, 165, 157, 0.35), rgba(29, 63, 109, 0.16));
        transform: translateX(-50%);
    }

    .process-note {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .carousel-item,
    .slide {
        width: 160px;
        flex-basis: 160px;
    }

    .slide-large {
        width: 220px;
        flex-basis: 220px;
    }

    .hero-visual-composition {
        min-height: 290px;
    }

    .hero-slider {
        inset: 10px;
        border-radius: 22px;
    }

    .hero-slide {
        width: 220px;
        flex-basis: 220px;
    }

    .hero-card {
        padding: 1.1rem;
        border-radius: 22px;
    }

    .hero-card-main {
        top: 30px;
        right: 50px;
        width: 210px;
    }

    .hero-card-side {
        bottom: 15px;
        right: 10px;
        width: 190px;
    }

    .policy-card,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

.content-card,
.cta-card,
.logo-card,
.gallery-card,
.hero-surface {
        border-radius: 22px;
    }
}

/* Tests Page */
.tests-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(39, 165, 157, 0.12), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(29, 63, 109, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbfc 0%, #f4f8fb 34%, #f8fbfd 100%);
}

.tests-page::before,
.tests-page::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

.tests-page::before {
    top: 120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.13), transparent 68%);
    filter: blur(14px);
}

.tests-page::after {
    bottom: 220px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 63, 109, 0.12), transparent 70%);
    filter: blur(18px);
}

.tests-page > .section-divider {
    position: relative;
    z-index: 1;
}

.testsdoc-section {
    position: relative;
}

.testsdoc-section.testsdoc-surface-a {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.testsdoc-section.testsdoc-surface-b {
    background:
        linear-gradient(180deg, rgba(229, 242, 247, 0.34), rgba(255, 255, 255, 0));
}

.testsdoc-hero {
    padding-top: 2rem;
}

.testsdoc-hero-shell,
.testsdoc-shell,
.testsdoc-feature-shell,
.testsdoc-closing-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 67, 106, 0.08);
    border-radius: 38px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.92));
    box-shadow:
        0 20px 60px rgba(28, 52, 85, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.testsdoc-hero-shell::before,
.testsdoc-shell::before,
.testsdoc-feature-shell::before,
.testsdoc-closing-shell::before {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.1), transparent 68%);
}

.testsdoc-hero-shell::before {
    top: -80px;
    right: -30px;
    width: 260px;
    height: 260px;
}

.testsdoc-shell::before,
.testsdoc-feature-shell::before,
.testsdoc-closing-shell::before {
    right: -80px;
    bottom: -100px;
    width: 280px;
    height: 280px;
}

.testsdoc-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 2rem;
    padding: 2.8rem;
}

.testsdoc-hero-copy {
    display: grid;
    gap: 1.2rem;
    max-width: 700px;
}

.testsdoc-hero-copy h1 {
    margin: 0;
    color: var(--brand-navy, #1d3f6d);
    font-size: clamp(2.8rem, 5.1vw, 4.75rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.testsdoc-hero-copy .lead {
    max-width: 62ch;
    margin: 0;
    color: rgba(41, 72, 110, 0.8);
    font-size: clamp(1.02rem, 1.45vw, 1.18rem);
    line-height: 1.82;
}

.testsdoc-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding-top: 0.35rem;
}

.testsdoc-chip,
.testsdoc-legal-chip,
.testsdoc-pill,
.testsdoc-subnote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(38, 88, 122, 0.1);
    border-radius: 999px;
    background: rgba(239, 247, 250, 0.92);
    color: rgba(29, 63, 109, 0.88);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
}

.testsdoc-hero-visual {
    display: flex;
    justify-content: center;
}

.testsdoc-visual-stage {
    position: relative;
    width: min(100%, 490px);
    aspect-ratio: 1.12 / 1;
    overflow: hidden;
    border: 1px solid rgba(166, 195, 214, 0.18);
    border-radius: 42px;
    background:
        radial-gradient(circle at 28% 22%, rgba(123, 227, 217, 0.32), transparent 18%),
        radial-gradient(circle at 74% 78%, rgba(39, 165, 157, 0.26), transparent 20%),
        linear-gradient(145deg, #1f3758 0%, #274769 48%, #1e3552 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 28px 54px rgba(14, 32, 54, 0.2);
}

.testsdoc-visual-stage::before,
.testsdoc-visual-stage::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(186, 218, 233, 0.15);
}

.testsdoc-visual-stage::before {
    width: 72%;
    height: 72%;
    top: 16%;
    left: 17%;
}

.testsdoc-visual-stage::after {
    width: 44%;
    height: 44%;
    top: 28%;
    left: 38%;
}

.testsdoc-visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.testsdoc-visual-glow-a {
    top: 7%;
    left: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(100, 213, 202, 0.42), transparent 70%);
}

.testsdoc-visual-glow-b {
    right: 10%;
    bottom: 12%;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.26), transparent 70%);
}

.testsdoc-visual-panel {
    position: absolute;
    display: grid;
    gap: 0.8rem;
    border: 1px solid rgba(210, 229, 241, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.testsdoc-visual-panel span,
.testsdoc-visual-bars span {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(123, 227, 217, 0.78), rgba(243, 249, 255, 0.56));
}

.testsdoc-visual-panel-main {
    top: 18%;
    left: 14%;
    width: 54%;
    height: 45%;
    padding: 1.2rem;
    border-radius: 28px;
    transform: rotate(-7deg);
}

.testsdoc-visual-panel-main span:nth-child(1) {
    width: 72%;
    height: 14px;
}

.testsdoc-visual-panel-main span:nth-child(2) {
    width: 84%;
    height: 14px;
}

.testsdoc-visual-panel-main span:nth-child(3) {
    width: 58%;
    height: 14px;
}

.testsdoc-visual-panel-side {
    top: 24%;
    right: 10%;
    width: 28%;
    height: 20%;
    padding: 1rem;
    border-radius: 24px;
}

.testsdoc-visual-panel-side span {
    height: 12px;
}

.testsdoc-visual-bars {
    position: absolute;
    right: 14%;
    bottom: 18%;
    display: flex;
    align-items: flex-end;
    gap: 0.85rem;
    width: 32%;
    height: 34%;
}

.testsdoc-visual-bars span {
    width: 22%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testsdoc-visual-bars span:nth-child(1) {
    height: 48%;
}

.testsdoc-visual-bars span:nth-child(2) {
    height: 72%;
}

.testsdoc-visual-bars span:nth-child(3) {
    height: 58%;
}

.testsdoc-visual-bars span:nth-child(4) {
    height: 86%;
}

.testsdoc-visual-ring {
    position: absolute;
    left: 16%;
    bottom: 18%;
    width: 26%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 10px solid rgba(130, 225, 214, 0.32);
    border-right-color: rgba(255, 255, 255, 0.22);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.04);
}

.testsdoc-intro-grid,
.testsdoc-dual-grid,
.testsdoc-closing-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.testsdoc-editorial-card,
.testsdoc-panel,
.testsdoc-category-card,
.testsdoc-highlight-card,
.testsdoc-feature-card,
.testsdoc-process-card,
.testsdoc-closing-card,
.testsdoc-contact-card,
.testsdoc-detail-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 67, 106, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.94));
    box-shadow:
        0 14px 34px rgba(29, 63, 109, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease,
        background-color 200ms ease;
}

.testsdoc-editorial-card:hover,
.testsdoc-panel:hover,
.testsdoc-category-card:hover,
.testsdoc-highlight-card:hover,
.testsdoc-feature-card:hover,
.testsdoc-process-card:hover,
.testsdoc-closing-card:hover,
.testsdoc-contact-card:hover,
.testsdoc-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 165, 157, 0.18);
    box-shadow:
        0 22px 44px rgba(29, 63, 109, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.testsdoc-editorial-card,
.testsdoc-panel,
.testsdoc-closing-copy,
.testsdoc-closing-card,
.testsdoc-contact-card {
    display: grid;
    gap: 1.05rem;
    padding: 2rem;
}

.testsdoc-editorial-card p,
.testsdoc-panel p,
.testsdoc-section-head p,
.testsdoc-closing-copy p,
.testsdoc-contact-card p,
.testsdoc-process-card p,
.testsdoc-detail-body p,
.testsdoc-highlight-card p,
.testsdoc-feature-card p {
    margin: 0;
    color: rgba(41, 72, 110, 0.82);
    line-height: 1.82;
}

.testsdoc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(227, 242, 244, 0.95);
    color: var(--brand-navy, #1d3f6d);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    justify-self: start;
}

.testsdoc-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.95), rgba(29, 63, 109, 0.86));
    box-shadow: 0 0 0 6px rgba(39, 165, 157, 0.08);
}

.testsdoc-editorial-card h2,
.testsdoc-section-head h2,
.testsdoc-panel h2,
.testsdoc-closing-copy h2 {
    margin: 1rem 0 0;
    color: var(--brand-navy, #1d3f6d);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.testsdoc-section-head {
    display: grid;
    gap: 1rem;
    max-width: 760px;
    margin-bottom: 1.8rem;
}

.testsdoc-shell,
.testsdoc-feature-shell {
    padding: 2.4rem;
}

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

.testsdoc-highlight-card {
    min-height: 100%;
    padding: 1.6rem;
}

.testsdoc-highlight-label {
    display: inline-flex;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(234, 245, 247, 0.95);
    color: rgba(39, 89, 126, 0.88);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testsdoc-highlight-card h3,
.testsdoc-category-card h3,
.testsdoc-panel h2,
.testsdoc-process-card h3,
.testsdoc-closing-card h3 {
    color: var(--brand-navy, #1d3f6d);
}

.testsdoc-highlight-card h3,
.testsdoc-category-card h3,
.testsdoc-process-card h3,
.testsdoc-closing-card h3 {
    margin: 1rem 0 0.7rem;
    font-size: 1.42rem;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

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

.testsdoc-feature-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testsdoc-feature-card {
    padding: 1.4rem 1.35rem;
    min-height: 100%;
}

.testsdoc-pill-grid,
.testsdoc-legal-list,
.testsdoc-subnote-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.testsdoc-note-text {
    margin-top: 1.25rem !important;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(235, 244, 248, 0.8);
}

.testsdoc-stack-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.15rem;
}

.testsdoc-single-panel-wrap {
    display: grid;
    justify-items: center;
}

.testsdoc-panel-centered {
    width: min(100%, 1080px);
}

.testsdoc-dual-grid .testsdoc-panel h2 {
    max-width: 10.5ch;
    margin-top: 0.35rem;
    font-size: clamp(1.85rem, 2.4vw, 2.55rem);
    line-height: 1.08;
}

.testsdoc-stack-item {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(36, 89, 127, 0.08);
    background: rgba(245, 250, 252, 0.95);
    color: rgba(41, 72, 110, 0.84);
    line-height: 1.75;
}

.testsdoc-category-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.testsdoc-category-card {
    padding: 1.7rem;
}

.testsdoc-category-card ul,
.testsdoc-closing-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: rgba(41, 72, 110, 0.84);
    line-height: 1.82;
}

.testsdoc-category-card li,
.testsdoc-closing-card li {
    margin-bottom: 0.5rem;
}

.testsdoc-subnote-grid {
    margin-top: 1.1rem;
}

.testsdoc-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testsdoc-process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, rgba(39, 165, 157, 0.16), rgba(29, 63, 109, 0.2), rgba(39, 165, 157, 0.16));
}

.testsdoc-process-card {
    padding: 1.55rem;
}

.testsdoc-process-step {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(39, 165, 157, 0.16), rgba(29, 63, 109, 0.14));
    color: var(--brand-navy, #1d3f6d);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.testsdoc-accordion {
    display: grid;
    gap: 0.9rem;
}

.testsdoc-detail-card {
    padding: 0;
}

.testsdoc-detail-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.45rem;
    cursor: pointer;
    list-style: none;
    color: var(--brand-navy, #1d3f6d);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testsdoc-detail-card summary::-webkit-details-marker {
    display: none;
}

.testsdoc-detail-card summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(231, 242, 247, 0.96);
    color: var(--brand-navy, #1d3f6d);
    font-size: 1.3rem;
    font-weight: 500;
    transition: transform 180ms ease, background-color 180ms ease;
    flex-shrink: 0;
}

.testsdoc-detail-card[open] summary::after {
    transform: rotate(45deg);
    background: rgba(210, 237, 234, 0.98);
}

.testsdoc-detail-body {
    padding: 0 1.45rem 1.35rem;
}

.testsdoc-closing-shell {
    align-items: start;
    padding: 2.2rem;
}

.testsdoc-closing-copy {
    display: grid;
    gap: 1rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(34, 67, 106, 0.07);
}

.testsdoc-closing-side {
    display: grid;
    gap: 1rem;
}

.testsdoc-contact-card {
    display: grid;
    gap: 1rem;
}

.testsdoc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.testsdoc-secondary-btn {
    min-height: 52px;
}

.testsdoc-thanks {
    color: rgba(29, 63, 109, 0.68);
    font-weight: 700;
}

.testsdoc-cta-shell {
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: 2.2rem;
    border-radius: 32px;
    border: 1px solid rgba(34, 67, 106, 0.08);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.94)),
        radial-gradient(circle at top right, rgba(126, 224, 214, 0.12), transparent 22%);
    box-shadow:
        0 14px 34px rgba(29, 63, 109, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.testsdoc-cta-shell h2 {
    margin: 0.2rem 0 0;
    color: var(--brand-navy, #1d3f6d);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    max-width: 14ch;
}

.testsdoc-cta-shell p {
    margin: 0;
    color: rgba(41, 72, 110, 0.82);
    line-height: 1.82;
    max-width: 58ch;
}

/* Blog */
.blog-page,
.blog-post-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(39, 165, 157, 0.11), transparent 24%),
        radial-gradient(circle at 88% 16%, rgba(29, 63, 109, 0.1), transparent 22%),
        linear-gradient(180deg, #f8fbfc 0%, #f4f8fb 42%, #f8fbfd 100%);
}

.blog-hero,
.blog-post-hero {
    padding-top: 2rem;
}

.blog-hero-shell,
.blog-post-hero-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1.2rem;
    border: 1px solid rgba(34, 67, 106, 0.08);
    border-radius: 40px;
    background:
        radial-gradient(circle at 84% 18%, rgba(39, 165, 157, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 251, 0.92));
    box-shadow:
        0 24px 70px rgba(18, 48, 79, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.blog-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
    align-items: center;
    padding: 2.6rem;
}

.blog-post-hero-shell {
    padding: 2.6rem;
}

.blog-hero-copy {
    max-width: 820px;
}

.blog-hero-copy h1,
.blog-post-hero-shell h1 {
    margin: 0.9rem 0 1rem;
    color: var(--ink);
    font-size: clamp(2.5rem, 4.8vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.blog-hero-copy .lead,
.blog-post-hero-shell .lead {
    max-width: 760px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.45vw, 1.18rem);
    line-height: 1.85;
}

.blog-hero-aside {
    position: relative;
    min-height: 230px;
}

.blog-orbit-card {
    position: absolute;
    right: 0;
    top: 20px;
    display: grid;
    place-items: center;
    align-content: center;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid rgba(39, 165, 157, 0.18);
    background:
        radial-gradient(circle at 35% 25%, rgba(126, 224, 214, 0.34), transparent 28%),
        linear-gradient(135deg, rgba(29, 63, 109, 0.96), rgba(39, 165, 157, 0.88));
    color: #fff;
    box-shadow: 0 24px 54px rgba(18, 48, 79, 0.18);
}

.blog-orbit-card strong {
    font-size: 3.5rem;
    line-height: 1;
}

.blog-orbit-card span {
    font-weight: 800;
    opacity: 0.9;
}

.blog-orbit-line {
    position: absolute;
    right: 36px;
    top: 6px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(29, 63, 109, 0.12);
}

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

.blog-card {
    min-height: 100%;
}

.blog-card a {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    min-height: 100%;
    padding: 1.55rem;
    border: 1px solid rgba(34, 67, 106, 0.08);
    border-radius: 30px;
    text-decoration: none;
    color: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.92));
    box-shadow:
        0 16px 38px rgba(18, 48, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.blog-card a::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 165, 157, 0.12), transparent 70%);
}

.blog-card a:hover,
.blog-card a:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(39, 165, 157, 0.22);
    box-shadow: 0 24px 54px rgba(18, 48, 79, 0.12);
}

.blog-card a:focus-visible {
    outline: 3px solid rgba(39, 165, 157, 0.25);
    outline-offset: 4px;
}

.blog-card-featured {
    grid-column: span 2;
}

.blog-card-featured a {
    min-height: 340px;
    padding: 2rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(126, 224, 214, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.94));
}

.blog-card-category {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(39, 165, 157, 0.12);
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 1rem 0 0.75rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.2vw, 2.1rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.blog-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.78;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.blog-card-footer strong {
    color: var(--brand-2);
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(236, 246, 248, 0.9);
    color: var(--ink-soft);
    font-weight: 800;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
    gap: 1.4rem;
    align-items: start;
}

.blog-post-aside {
    position: sticky;
    top: 6.5rem;
}

.blog-post-aside-card,
.blog-post-body,
.blog-post-cta {
    border: 1px solid rgba(34, 67, 106, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.92));
    box-shadow:
        0 18px 42px rgba(18, 48, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.blog-post-aside-card {
    padding: 1.5rem;
}

.blog-post-aside-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

.blog-post-aside-card li {
    margin-bottom: 0.75rem;
}

.blog-post-body {
    padding: clamp(1.5rem, 3vw, 2.6rem);
}

.blog-post-body > p {
    max-width: 78ch;
    margin: 0 0 1.25rem;
    color: rgba(41, 72, 110, 0.88);
    font-size: 1.05rem;
    line-height: 1.95;
}

.blog-post-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background:
        radial-gradient(circle at right, rgba(39, 165, 157, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 250, 0.94));
}

.blog-post-cta h2 {
    margin: 0.6rem 0 0.5rem;
    color: var(--ink);
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    letter-spacing: -0.035em;
}

.blog-post-cta p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.72;
}

@media (max-width: 1180px) {
    .testsdoc-hero-shell,
    .testsdoc-closing-shell {
        grid-template-columns: 1fr;
    }

    .testsdoc-highlight-grid,
    .testsdoc-feature-grid,
    .testsdoc-category-grid,
    .testsdoc-process-grid,
    .testsdoc-feature-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testsdoc-category-card-wide {
        grid-column: 1 / -1;
    }

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

    .blog-post-layout,
    .blog-post-cta {
        grid-template-columns: 1fr;
    }

    .blog-post-aside {
        position: static;
    }
}

@media (max-width: 920px) {
    .testsdoc-intro-grid,
    .testsdoc-dual-grid,
    .testsdoc-highlight-grid,
    .testsdoc-feature-grid,
    .testsdoc-feature-grid-compact,
    .testsdoc-category-grid,
    .testsdoc-process-grid {
        grid-template-columns: 1fr;
    }

    .testsdoc-process-grid::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(39, 165, 157, 0.16), rgba(29, 63, 109, 0.2), rgba(39, 165, 157, 0.16));
    }

    .testsdoc-hero-shell,
    .testsdoc-shell,
    .testsdoc-feature-shell,
    .testsdoc-closing-shell,
    .testsdoc-cta-shell {
        border-radius: 32px;
    }

    .testsdoc-hero-shell,
    .testsdoc-shell,
    .testsdoc-feature-shell,
    .testsdoc-cta-shell {
        padding: 1.8rem;
    }

    .testsdoc-closing-shell {
        padding: 1.8rem;
    }

    .testsdoc-hero-copy h1 {
        font-size: clamp(2.35rem, 8vw, 3.5rem);
    }

    .testsdoc-editorial-card h2,
    .testsdoc-section-head h2,
    .testsdoc-panel h2,
    .testsdoc-closing-copy h2 {
        font-size: clamp(1.7rem, 5vw, 2.35rem);
    }

    .testsdoc-visual-stage {
        width: 100%;
        max-width: 560px;
    }

    .blog-hero-shell {
        grid-template-columns: 1fr;
    }

    .blog-hero-aside {
        display: none;
    }
}

@media (max-width: 640px) {
    body {
        background:
            radial-gradient(circle at top left, rgba(126, 224, 214, 0.16), transparent 24%),
            radial-gradient(circle at top right, rgba(29, 63, 109, 0.08), transparent 20%),
            linear-gradient(180deg, #fbfdfe 0%, #f5f9fc 48%, #f7fafc 100%);
    }

    body:has(.home-page) {
        background:
            radial-gradient(circle at top left, rgba(126, 224, 214, 0.38), transparent 28%),
            radial-gradient(circle at top right, rgba(29, 63, 109, 0.14), transparent 22%),
            linear-gradient(180deg, #f8fbfd 0%, var(--bg) 100%);
    }

    .site-topbar {
        display: none;
    }

    .page-hero {
        position: relative;
        isolation: isolate;
    }

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background:
            radial-gradient(circle at 18% 10%, rgba(126, 224, 214, 0.12), transparent 22%),
            radial-gradient(circle at 82% 8%, rgba(29, 63, 109, 0.05), transparent 18%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.05));
        pointer-events: none;
    }

    .testsdoc-hero {
        padding-top: 1.4rem;
    }

    .testsdoc-hero-shell,
    .testsdoc-shell,
    .testsdoc-feature-shell,
    .testsdoc-closing-shell,
    .testsdoc-cta-shell {
        padding: 1.25rem;
        border-radius: 26px;
    }

    .testsdoc-editorial-card,
    .testsdoc-panel,
    .testsdoc-closing-copy,
    .testsdoc-closing-card,
    .testsdoc-contact-card {
        padding: 1.4rem 1.3rem;
        border-radius: 24px;
    }

    .testsdoc-highlight-card,
    .testsdoc-category-card,
    .testsdoc-feature-card,
    .testsdoc-process-card {
        padding: 1.25rem 1.2rem;
        border-radius: 24px;
    }

    .testsdoc-editorial-card,
    .testsdoc-panel,
    .testsdoc-section-head,
    .testsdoc-highlight-card,
    .testsdoc-category-card,
    .testsdoc-feature-card,
    .testsdoc-process-card,
    .testsdoc-closing-copy,
    .testsdoc-contact-card,
    .testsdoc-detail-body {
        display: grid;
        gap: 0.95rem;
    }

    .testsdoc-editorial-card h2,
    .testsdoc-section-head h2,
    .testsdoc-panel h2,
    .testsdoc-cta-shell h2,
    .testsdoc-closing-copy h2,
    .testsdoc-highlight-card h3,
    .testsdoc-category-card h3,
    .testsdoc-process-card h3,
    .testsdoc-closing-card h3 {
        margin: 0.2rem 0 0;
    }

    .testsdoc-editorial-card p + p,
    .testsdoc-section-head p + p,
    .testsdoc-panel p + p,
    .testsdoc-process-card p + p,
    .testsdoc-detail-body p + p {
        margin-top: 0.35rem;
    }

    .testsdoc-legal-list,
    .testsdoc-stack-list,
    .testsdoc-subnote-grid {
        margin-top: 0.35rem;
    }

    .testsdoc-chip,
    .testsdoc-legal-chip,
    .testsdoc-pill,
    .testsdoc-subnote {
        width: 100%;
        justify-content: flex-start;
        min-height: 42px;
        font-size: 0.9rem;
    }

    .testsdoc-hero-points,
    .testsdoc-pill-grid,
    .testsdoc-legal-list,
    .testsdoc-subnote-grid,
    .testsdoc-actions {
        gap: 0.7rem;
    }

    .testsdoc-visual-stage {
        aspect-ratio: 1 / 1.05;
        border-radius: 28px;
    }

    .testsdoc-detail-card summary {
        padding: 1rem 1rem;
        font-size: 1rem;
    }

    .testsdoc-detail-body {
        padding: 0 1rem 1rem;
    }

    .blog-hero,
    .blog-post-hero {
        padding-top: 1.3rem;
    }

    .blog-hero-shell,
    .blog-post-hero-shell,
    .blog-post-body,
    .blog-post-cta,
    .blog-post-aside-card {
        padding: 1.25rem;
        border-radius: 26px;
    }

    .blog-hero-copy h1,
    .blog-post-hero-shell h1 {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .blog-feature-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-featured {
        grid-column: auto;
    }

    .blog-card-featured a,
    .blog-card a {
        min-height: unset;
        padding: 1.25rem;
        border-radius: 24px;
    }

    .blog-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-post-meta {
        display: grid;
    }

    .blog-post-cta .hero-actions {
        width: 100%;
    }

    .blog-post-cta .primary-button,
    .blog-post-cta .secondary-button {
        width: 100%;
    }
}

@media (max-width: 1080px) {
    .device-tech-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .device-tech-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .device-tech-shell {
        padding: 1rem;
        border-radius: 28px;
    }

    .device-tech-shell::before {
        width: 100%;
        height: 180px;
    }

    .device-tech-metrics {
        grid-template-columns: 1fr;
    }

    .device-tech-metric {
        min-height: 92px;
    }

    .device-tech-shell .device-sheet-card {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .device-sheet-row {
        grid-template-columns: 1fr;
    }

    .device-visual-panel-inner img {
        padding: 0;
    }
}

@media (max-width: 1080px) {
    .site-nav-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        padding-inline: 1rem;
    }

    .brand img {
        width: 152px;
    }
}

@media (max-width: 420px) {
    .brand img {
        width: 142px;
    }

    .app-loader {
        padding: 1rem;
    }

    .app-loader-shell {
        width: min(214px, calc(100vw - 2.4rem));
        min-height: min(214px, calc(100vw - 2.4rem));
        gap: 0;
        padding: 1rem;
        border-radius: 50%;
    }

    .app-loader::before,
    .app-loader::after {
        width: min(232px, calc(100vw - 1.3rem));
        height: min(232px, calc(100vw - 1.3rem));
    }

    .app-loader-mark {
        width: 118px;
        height: 118px;
    }

    .app-loader-mark img {
        width: 92px;
    }
}
