:root {
    color-scheme: dark;
    --bg: #07111f;
    --bg-2: #0d1728;
    --panel: rgba(255, 255, 255, 0.07);
    --panel-strong: rgba(255, 255, 255, 0.11);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f7fbff;
    --muted: #a8b3c7;
    --blue: #00c2ff;
    --violet: #6d3bff;
    --green: #00d26a;
    --amber: #ffb800;
    --pink: #ff4d6d;
    --radius: 14px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 194, 255, 0.16), transparent 32rem),
        radial-gradient(circle at 80% 10%, rgba(109, 59, 255, 0.16), transparent 30rem),
        linear-gradient(180deg, #07111f 0%, #091421 46%, #050910 100%);
    color: var(--text);
}

.admin-body {
    background: #f7fbff;
    color: #102034;
}

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

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

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.home-shell {
    width: min(1220px, calc(100% - 24px));
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.site-header__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: min(400px, 48vw);
    max-width: 100%;
}

.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(rgba(10, 20, 38, 0.72), rgba(10, 20, 38, 0.72)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.48), rgba(109, 59, 255, 0.44), rgba(142, 77, 255, 0.28)) border-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 0 1px rgba(0, 194, 255, 0.055),
        0 14px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.site-nav::before,
.site-nav::after {
    content: "";
    position: absolute;
    inset: 3px;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid transparent;
}

.site-nav::before {
    border-top-color: rgba(0, 194, 255, 0.24);
    border-left-color: rgba(0, 194, 255, 0.11);
}

.site-nav::after {
    inset: 5px;
    border-right-color: rgba(109, 59, 255, 0.2);
    border-bottom-color: rgba(142, 77, 255, 0.16);
}

.site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher,
.currency-switcher {
    flex: 0 0 auto;
}

.language-reset {
    min-width: 46px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 999px;
    color: var(--text);
    background: rgba(10, 20, 38, 0.78);
    font-size: 13px;
    font-weight: 900;
}

.language-reset:hover {
    border-color: rgba(0, 194, 255, 0.46);
    background: rgba(0, 194, 255, 0.12);
}

.language-switcher select,
.currency-switcher select {
    width: auto;
    min-width: 94px;
    min-height: 44px;
    border-radius: 999px;
    border-color: rgba(0, 194, 255, 0.22);
    padding: 0 32px 0 14px;
    color: var(--text);
    background: rgba(10, 20, 38, 0.78);
    font-size: 13px;
    font-weight: 900;
}

.currency-switcher select {
    min-width: 82px;
}

.language-switcher option,
.currency-switcher option {
    color: #102034;
    background: #ffffff;
}

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

.hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 34px;
    padding: 46px 0 54px;
}

.home-hero-band {
    position: relative;
    overflow: hidden;
    margin: 24px calc(50% - 50vw) 0;
    padding: 42px max(24px, calc((100vw - 1180px) / 2)) 38px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.16);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% -12%, rgba(0, 194, 255, 0.24), transparent 44%),
        radial-gradient(ellipse at 76% 12%, rgba(109, 59, 255, 0.2), transparent 38%),
        linear-gradient(180deg, rgba(13, 22, 42, 0.92), rgba(7, 17, 31, 0.98));
}

.home-hero-band::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.75), rgba(109, 59, 255, 0.65), transparent);
    box-shadow: 0 0 24px rgba(0, 194, 255, 0.42);
}

.home-hero-band::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: min(920px, 78vw);
    height: 140px;
    border-radius: 50%;
    border-top: 1px solid rgba(0, 194, 255, 0.2);
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 194, 255, 0.09), transparent 62%);
    pointer-events: none;
}

.home-hero-band .hero-copy {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    margin: 0 auto;
}

.home-hero-band .hero-copy > p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.home-hero-band .hero-actions {
    justify-content: center;
}

.home-hero-band .hero-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    margin: 22px auto 0;
}

.eyebrow,
.service-category {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

h1 {
    margin: 14px 0 18px;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
}

.balanced-title {
    text-wrap: balance;
}

.balanced-title span {
    display: block;
}

h2 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.08;
}

h3 {
    margin: 9px 0 10px;
    font-size: 21px;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

.hero-copy > p {
    max-width: 680px;
    font-size: 19px;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn,
.btn-secondary,
.icon-link,
button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.btn,
button {
    color: #03101a;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 18px 40px rgba(0, 194, 255, 0.16);
}

.btn-secondary,
.icon-link {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
}

.hero-panel,
.glass-panel,
.checkout-panel {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.hero-panel {
    padding: 28px;
}

.home-hero-band .hero-panel {
    padding: 16px;
    border-radius: 16px;
    background:
        linear-gradient(rgba(19, 31, 50, 0.86), rgba(19, 31, 50, 0.86)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.34), rgba(109, 59, 255, 0.32)) border-box;
}

.hero-panel__screen {
    min-height: 390px;
    display: grid;
    align-content: stretch;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.3), transparent 36%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.35), transparent 34%),
        #091521;
}

.home-hero-band .hero-panel__screen {
    min-height: 300px;
    text-align: left;
}

.workflow-visual {
    position: relative;
    overflow: hidden;
}

.workflow-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 86%);
}

.workflow-visual__header,
.workflow-map {
    position: relative;
    z-index: 1;
}

.workflow-visual__header h2 {
    max-width: 480px;
}

.workflow-visual__header p {
    max-width: 560px;
    margin-bottom: 0;
}

.workflow-map {
    min-height: 270px;
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px 16px;
    align-items: center;
}

.workflow-map::before,
.workflow-map::after {
    content: "";
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.62), rgba(109, 59, 255, 0.28));
    transform-origin: left center;
}

.workflow-map::before {
    width: 31%;
    left: 20%;
    top: 50%;
}

.workflow-map::after {
    width: 30%;
    left: 51%;
    top: 50%;
    box-shadow:
        0 -78px 0 rgba(0, 194, 255, 0.18),
        0 78px 0 rgba(109, 59, 255, 0.2);
}

.workflow-node,
.workflow-hub,
.workflow-output {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(6, 14, 25, 0.78);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.workflow-node,
.workflow-output {
    padding: 16px;
}

.workflow-node {
    grid-column: 1;
    grid-row: 2;
    border-color: rgba(0, 194, 255, 0.34);
}

.workflow-hub {
    grid-column: 2;
    grid-row: 2;
    min-height: 126px;
    place-items: center;
    text-align: center;
    border-color: rgba(0, 194, 255, 0.38);
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 194, 255, 0.18), transparent 58%),
        rgba(6, 14, 25, 0.84);
}

.workflow-output {
    grid-column: 3;
}

.workflow-output--audio {
    grid-row: 1;
    border-color: rgba(0, 194, 255, 0.3);
}

.workflow-output--sos {
    grid-row: 2;
    border-color: rgba(0, 210, 106, 0.28);
}

.workflow-output--scrape {
    grid-row: 3;
    border-color: rgba(142, 77, 255, 0.32);
}

.workflow-node span,
.workflow-hub span,
.workflow-output span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.workflow-node strong,
.workflow-hub strong,
.workflow-output strong {
    color: var(--text);
    font-size: 17px;
}

.workflow-output small {
    color: var(--muted);
    font-weight: 700;
}

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

.metric {
    min-height: 86px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
}

.metric strong {
    display: block;
    font-size: 22px;
}

.metric span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 72px 0;
}

.discount-cta {
    position: relative;
    overflow: hidden;
    width: min(1040px, 100%);
    margin: 18px auto 0;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 28px;
    align-items: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 28% 50%, rgba(0, 194, 255, 0.18), transparent 40%),
        radial-gradient(ellipse at 78% 50%, rgba(109, 59, 255, 0.24), transparent 42%),
        linear-gradient(180deg, rgba(18, 28, 48, 0.88), rgba(8, 16, 31, 0.96));
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.36),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.discount-cta::before,
.discount-cta::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.55), rgba(109, 59, 255, 0.48), transparent);
}

.discount-cta::before {
    top: 0;
}

.discount-cta::after {
    bottom: 0;
}

.discount-cta h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 4vw, 42px);
}

.discount-cta p {
    max-width: 640px;
    margin: 0 auto;
}

.discount-cta__form {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.discount-cta__form input {
    min-height: 54px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    padding: 0 16px;
    color: var(--text);
    background: rgba(9, 17, 31, 0.78);
    font: inherit;
    font-weight: 750;
    box-shadow: inset 0 0 0 1px rgba(0, 194, 255, 0.035);
}

.discount-cta__form button {
    min-height: 54px;
    border-radius: 10px;
    padding: 0 20px;
    color: #03101a;
    background: linear-gradient(135deg, #18d7ff, #7c4dff);
    box-shadow: 0 0 28px rgba(0, 194, 255, 0.34);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}

.section-heading p {
    max-width: 560px;
    margin: 0;
}

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

.home-products {
    position: relative;
    margin: 24px auto 0;
    padding: 46px min(36px, 4vw);
    border: 1px solid rgba(0, 194, 255, 0.17);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(20, 30, 50, 0.82), rgba(9, 17, 31, 0.94)),
        radial-gradient(ellipse at 50% 0%, rgba(0, 194, 255, 0.16), transparent 54%);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.34),
        -42px 0 90px rgba(0, 194, 255, 0.05),
        42px 0 90px rgba(109, 59, 255, 0.07);
}

.home-products::before {
    content: "";
    position: absolute;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    top: -18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.58), rgba(109, 59, 255, 0.42), transparent);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.34);
}

.home-products .section-heading {
    align-items: start;
    text-align: left;
}

.home-products .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
}

.home-products .service-card {
    min-height: 0;
    border-radius: 10px;
    background: rgba(245, 250, 255, 0.965);
    color: #101b2a;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.home-products .service-card h3,
.home-products .service-card__footer strong {
    color: #101b2a;
}

.home-products .service-category {
    color: #0077bd;
}

.home-products .service-card p {
    color: #425066;
}

.home-products .service-card__body,
.home-products .service-card__footer {
    padding: 14px;
}

.home-products .service-card__footer {
    border-top-color: rgba(16, 27, 42, 0.1);
}

.home-products .icon-link {
    min-height: 38px;
    border-color: rgba(0, 119, 189, 0.2);
    color: #07111f;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.16), rgba(109, 59, 255, 0.12));
}

.home-products .service-precheck-link {
    color: #0077bd;
}

.service-art {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.service-image-button,
.checkout-image-button {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
    cursor: zoom-in;
}

.service-image-button {
    height: 100%;
}

.service-image-button img,
.service-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-button__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--text);
    background: rgba(5, 13, 24, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    font-size: 24px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.service-image-button:hover .service-image-button__zoom,
.service-image-button:focus-visible .service-image-button__zoom,
.checkout-image-button:hover .service-image-button__zoom,
.checkout-image-button:focus-visible .service-image-button__zoom {
    opacity: 1;
    transform: translateY(0);
}

.service-art > span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 24px;
    font-weight: 900;
}

.service-card__body,
.service-card__footer {
    padding: 20px;
}

.service-card__body p {
    margin-bottom: 0;
}

.service-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.service-card__footer strong {
    white-space: nowrap;
}

.service-card__actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.service-precheck-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 999px;
    padding: 0 13px;
    color: #cbeeff;
    background: rgba(0, 194, 255, 0.06);
    font-size: 12px;
    font-weight: 900;
}

.spotlight-service__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

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

.spotlight-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.13), transparent 34%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.13), transparent 34%),
        rgba(255, 255, 255, 0.065);
}

.spotlight-service p {
    max-width: 720px;
    margin-bottom: 0;
}

.step {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.step span {
    color: var(--blue);
    font-weight: 900;
}

.checkout-panel {
    max-width: 920px;
    margin: 42px auto 80px;
    padding: 28px;
}

.checkout-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.checkout-intro h1 {
    font-size: clamp(46px, 6.4vw, 76px);
}

.selected-service {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.checkout-empty-image {
    width: 100%;
    margin-top: 18px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.consult-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 42px auto 80px;
}

.consult-hero,
.consult-results {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 22px;
    align-items: start;
}

.consult-hero {
    margin-bottom: 24px;
}

.consult-card,
.consult-score-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.consult-card {
    display: grid;
    gap: 20px;
    padding: 22px;
}

.consult-wizard {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: clamp(18px, 4vw, 34px);
    background:
        radial-gradient(circle at 82% 18%, rgba(163, 95, 255, 0.18), transparent 32%),
        radial-gradient(circle at 18% 82%, rgba(0, 229, 255, 0.15), transparent 34%),
        rgba(255, 255, 255, 0.055);
}

.consult-wizard__stage {
    position: relative;
    min-height: 410px;
    display: grid;
    align-items: center;
}

.consult-bot-orb {
    position: absolute;
    left: var(--bot-x, calc(100% - 118px));
    top: var(--bot-y, 64%);
    z-index: 2;
    width: clamp(76px, 9vw, 112px);
    aspect-ratio: 92 / 140;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition: left 0.42s cubic-bezier(.2,.8,.2,1), top 0.42s cubic-bezier(.2,.8,.2,1), transform 0.42s cubic-bezier(.2,.8,.2,1);
}

.consult-bot-orb::before,
.consult-bot-orb::after {
    display: none;
}

.consult-bot-orb::before {
    inset: 16% 12% 8%;
    z-index: -1;
    border: 1px solid rgba(163, 95, 255, 0.18);
    border-radius: 36px;
    background: rgba(5, 14, 27, 0.58);
    filter: blur(1px);
}

.consult-bot-orb::after {
    width: 54%;
    height: 10px;
    right: 12%;
    bottom: -18px;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.32);
    filter: blur(13px);
}

.consult-bot-orb picture,
.consult-bot-orb img {
    width: 100%;
    height: 100%;
}

.consult-bot-orb picture {
    display: block;
}

.consult-bot-orb img {
    object-fit: contain;
    filter: none;
}

.consult-progress {
    position: absolute;
    left: clamp(16px, 4vw, 34px);
    top: 24px;
    display: flex;
    gap: 8px;
}

.consult-progress span {
    width: 26px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    transition: width 0.25s ease, background 0.25s ease;
}

.consult-progress span.is-active {
    width: 42px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.consult-step {
    width: min(760px, 100%);
    display: grid;
    gap: 24px;
    padding-top: 54px;
}

.consult-step[hidden] {
    display: none;
}

.consult-step.is-active {
    animation: consult-step-in 0.34s ease both;
}

.consult-step.is-shaking {
    animation: consult-shake 0.34s ease both;
}

.consult-bubble {
    position: relative;
    display: grid;
    gap: 11px;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 30px 30px 30px 10px;
    background:
        linear-gradient(145deg, rgba(12, 30, 54, 0.9), rgba(9, 18, 34, 0.9)),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.consult-bubble::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -14px;
    width: 26px;
    height: 26px;
    border-left: 1px solid rgba(0, 229, 255, 0.28);
    border-bottom: 1px solid rgba(0, 229, 255, 0.28);
    background: #09182d;
    transform: rotate(-45deg);
}

.consult-bubble span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.consult-bubble h2 {
    max-width: 640px;
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.95;
}

.consult-bubble p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.consult-answer {
    position: relative;
    width: min(640px, calc(100% - 142px));
    margin-left: clamp(104px, 13vw, 150px);
    display: grid;
    gap: 9px;
}

.consult-answer::before {
    display: none;
}

.consult-answer label {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.consult-answer input {
    min-height: 64px;
    border-radius: 18px;
    padding: 15px 18px;
    font-size: 20px;
    font-weight: 850;
    background: rgba(0, 0, 0, 0.3);
}

.consult-wizard__actions {
    position: relative;
    z-index: 3;
    width: min(640px, calc(100% - 142px));
    margin-left: clamp(104px, 13vw, 150px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.consult-wizard__actions [hidden] {
    display: none;
}

.consult-wizard__actions button {
    width: 100%;
}

.consult-wizard__actions button:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.consult-wizard__services {
    width: min(260px, calc(100% - 142px));
    margin-left: clamp(104px, 13vw, 150px);
    justify-self: start;
}

.consult-bot-line {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 16px;
    background: rgba(0, 194, 255, 0.08);
}

.consult-bot-line span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06111d;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    font-weight: 950;
}

.consult-bot-line p {
    margin: 0;
    color: var(--text);
    font-weight: 850;
}

.consult-snapshot {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.28);
    border-radius: 18px;
    background: #07111f;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.consult-browser-bar {
    min-height: 46px;
    display: grid;
    grid-template-columns: 10px 10px 10px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.consult-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--cyan);
}

.consult-browser-bar span:nth-child(2) {
    background: var(--violet);
}

.consult-browser-bar span:nth-child(3) {
    background: #00d26a;
}

.consult-browser-bar strong {
    overflow: hidden;
    margin-left: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.22);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.consult-snapshot img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.24);
}

.consult-snapshot.is-empty img {
    display: none;
}

.consult-snapshot__fallback {
    min-height: 360px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 34px;
    text-align: center;
    background:
        radial-gradient(circle at 28% 22%, rgba(0, 194, 255, 0.2), transparent 34%),
        radial-gradient(circle at 74% 72%, rgba(111, 58, 255, 0.18), transparent 36%),
        #07111f;
}

.consult-snapshot__fallback[hidden] {
    display: none;
}

.consult-snapshot__fallback strong {
    color: var(--text);
    font-size: 24px;
    font-weight: 950;
}

.consult-snapshot__fallback span {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.6;
}

.consult-snapshot__fallback a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(0, 194, 255, 0.42);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
}

.consult-score-card {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.consult-score-card h2 {
    margin: 0;
    font-size: 54px;
}

.consult-live-analyser {
    display: grid;
    gap: 10px;
}

.consult-live-analyser__track {
    position: relative;
    overflow: hidden;
    height: 16px;
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.consult-live-analyser__track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.34) 48%, transparent 64% 100%);
    transform: translateX(-100%);
    animation: analyser-sheen 1.1s linear infinite;
}

.consult-live-analyser__track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00e5ff, #3d7dff 34%, #7c4dff 68%, #00d26a);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.34);
    transition: width 0.42s cubic-bezier(.2,.8,.2,1);
}

.consult-live-analyser strong {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.consult-score-bar {
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.consult-score-bar span {
    display: block;
    width: var(--score);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    animation: consult-bar 1.15s ease-out both;
}

.consult-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.consult-checks span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 900;
}

.consult-checks .is-ok {
    color: #cffff0;
    background: rgba(0, 210, 106, 0.12);
}

.consult-checks .is-missing {
    color: #ffd7e0;
    background: rgba(255, 77, 109, 0.13);
}

.consult-automation {
    display: grid;
    gap: 10px;
}

.consult-automation span {
    position: relative;
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 850;
}

.consult-automation span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.7);
    animation: consult-pulse 1.4s ease-in-out infinite;
}

.consult-decision {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 194, 255, 0.18);
}

.consult-decision::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 1px;
    height: calc(100% + 1px);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.48), rgba(124, 77, 255, 0.08));
}

.consult-decision__option {
    min-height: 82px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 16px;
    color: var(--text);
    text-align: center;
}

.consult-decision__option strong {
    font-size: 30px;
    line-height: 1;
}

.consult-decision__option span {
    font-size: 13px;
    font-weight: 900;
}

.consult-decision__option--yes {
    color: #04170b;
    border-color: rgba(0, 210, 106, 0.42);
    background: linear-gradient(135deg, #00d26a, #66ef86);
    box-shadow: 0 18px 42px rgba(0, 210, 106, 0.14);
}

.consult-decision__option--no {
    border-color: rgba(255, 77, 109, 0.42);
    background: rgba(255, 77, 109, 0.12);
}

.consult-decision__option--no strong,
.consult-decision__option--no span {
    color: #ffdce4;
}

@keyframes consult-bar {
    from { width: 0; }
}

@keyframes analyser-sheen {
    to { transform: translateX(100%); }
}

@keyframes consult-pulse {
    0%, 100% { transform: scale(0.82); opacity: 0.65; }
    50% { transform: scale(1.18); opacity: 1; }
}

@keyframes consult-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes consult-input-hover {
    0%, 100% { transform: translateY(0); opacity: 0.75; }
    50% { transform: translateY(-8px); opacity: 1; }
}

@keyframes consult-step-in {
    from { opacity: 0; transform: translateY(14px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes consult-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

.checkout-service-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.checkout-image-button {
    margin-bottom: 16px;
    border-radius: 12px;
}

.checkout-image-button .checkout-service-image {
    margin-bottom: 0;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: min(5vw, 48px);
    background: rgba(2, 7, 13, 0.88);
    backdrop-filter: blur(18px);
}

.image-viewer[hidden] {
    display: none;
}

.image-viewer img {
    max-width: min(1180px, 96vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: #07111f;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.image-viewer__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 46px;
    min-height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--text);
    background: rgba(10, 20, 38, 0.84);
    box-shadow: none;
    font-size: 30px;
}

.image-viewer-open {
    overflow: hidden;
}

.checkout-payment-structure {
    position: relative;
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.checkout-payment-structure--summary {
    margin-top: 26px;
    border-color: rgba(0, 194, 255, 0.24);
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 194, 255, 0.16), transparent 34%),
        radial-gradient(circle at 82% 22%, rgba(109, 59, 255, 0.18), transparent 42%),
        linear-gradient(135deg, rgba(24, 42, 58, 0.86), rgba(26, 23, 55, 0.88));
    box-shadow:
        0 22px 65px rgba(0, 0, 0, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.checkout-payment-structure--summary::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 10px;
    height: 1px;
    background:
        linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.44), rgba(109, 59, 255, 0.42), transparent);
    box-shadow: 0 0 24px rgba(0, 194, 255, 0.34);
}

.checkout-payment-structure--summary::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: min(760px, 78vw);
    height: 140px;
    border-radius: 50%;
    border-top: 1px solid rgba(0, 194, 255, 0.18);
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 194, 255, 0.08), transparent 62%);
    pointer-events: none;
}

.checkout-payment-structure--in-form {
    margin-top: 22px;
    margin-bottom: 0;
}

.checkout-price-box {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 26px 20px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.checkout-price-box span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.checkout-price-box strong {
    color: var(--text);
    font-size: 26px;
}

.checkout-price-box small {
    color: var(--muted);
    font-weight: 850;
}

.checkout-price-box p {
    margin: 0;
    color: #d6e8f4;
    font-weight: 800;
}

.checkout-price-box--compact {
    padding: 20px;
}

.payment-method-list {
    display: grid;
    gap: 10px;
    padding: 18px 20px 22px;
}

.payment-method-option {
    min-height: 50px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
}

.payment-method-option.is-disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

.payment-method-option:has(input:checked) {
    border-color: rgba(0, 194, 255, 0.54);
    background: rgba(0, 194, 255, 0.1);
}

.payment-method-option:has(input:disabled) {
    opacity: 0.48;
    cursor: not-allowed;
}

.payment-method-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-option__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06111d;
    background: var(--method-accent);
    font-size: 14px;
    font-weight: 950;
}

.payment-method-option__name {
    color: var(--text);
    font-weight: 850;
}

.payment-method-option__code {
    color: var(--muted);
    font-weight: 850;
    letter-spacing: 0.04em;
}

.payment-method-option__hint {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.35;
}

.payment-method-option__icon--card {
    box-shadow: 0 0 18px rgba(34, 199, 255, 0.34);
}

.wallet-choice-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
    padding: 18px 20px 22px;
}

.wallet-choice-shell[hidden] {
    display: none;
}

.stripe-choice-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 18px 20px 22px;
}

.stripe-choice-shell[hidden] {
    display: none;
}

.stripe-choice-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 16px;
    background: rgba(0, 194, 255, 0.08);
}

.stripe-choice-card__mark {
    width: 42px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06111d;
    background: linear-gradient(135deg, #22c7ff, #6d3bff);
    font-weight: 950;
}

.stripe-choice-card strong {
    color: var(--text);
}

.stripe-choice-card p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.stripe-choice-badges {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
    gap: 8px;
}

.stripe-choice-badges span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0 11px;
    color: #dff8ff;
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 900;
}

.wallet-choice-control {
    display: grid;
    align-content: start;
    gap: 12px;
}

.wallet-native-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.wallet-native-select {
    min-height: 56px;
    border-radius: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    font-weight: 900;
}

.wallet-native-select option {
    color: #102034;
    background: #ffffff;
}

.wallet-selected-card {
    min-height: 66px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.wallet-selected-card strong,
.wallet-selected-card small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wallet-selected-card strong {
    color: var(--text);
}

.wallet-selected-card small {
    color: var(--muted);
    font-size: 12px;
}

.wallet-choice-preview {
    display: grid;
    grid-template-columns: 106px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.wallet-choice-preview img {
    width: 106px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    background: #ffffff;
}

.wallet-choice-preview strong,
.wallet-choice-preview span {
    display: block;
}

.wallet-choice-preview span {
    color: var(--muted);
    font-size: 12px;
}

.wallet-choice-preview button {
    min-height: 36px;
    margin-top: 10px;
    padding: 0 13px;
    font-size: 13px;
}

.jason-payment-session {
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #142236;
}

.jason-payment-session__head {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-bottom: 1px solid #d8e1ee;
}

.jason-payment-session__head h2 {
    margin: 4px 0 0;
    color: #102034;
    font-size: 25px;
}

.payment-countdown {
    min-width: 86px;
    color: #102034;
    font-size: 20px;
    font-weight: 900;
    text-align: right;
}

.jason-payment-session__body {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 28px;
    padding: 30px 22px;
}

.payment-qr {
    width: min(260px, 72vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    padding: 14px;
    border: 1px solid #d8e1ee;
    border-radius: 14px;
    background: #ffffff;
}

.payment-qr img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    image-rendering: crisp-edges;
}

.payment-instruction {
    display: grid;
    justify-items: center;
    gap: 12px;
    color: #44566d;
    text-align: center;
}

.payment-instruction strong {
    max-width: 280px;
    color: #304157;
    line-height: 1.45;
}

.payment-instruction small {
    color: #66778c;
}

.payment-guidance {
    padding: 16px 22px;
    border-top: 1px solid #d8e1ee;
    color: #44566d;
    background: #f5f8fc;
    line-height: 1.55;
    font-weight: 750;
}

.payment-detail-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-top: 1px solid #d8e1ee;
}

.payment-detail-row span {
    color: #66778c;
}

.payment-detail-row code {
    overflow: hidden;
    color: #142236;
    font-family: inherit;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-detail-row button {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
}

.payment-detail-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    color: #06111d;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-size: 13px;
    font-weight: 900;
}

.payment-detail-row--wide code {
    white-space: normal;
}

.payment-expired {
    margin: 0;
    padding: 16px 22px;
    border-top: 1px solid rgba(255, 77, 109, 0.35);
    color: #7d1128;
    background: rgba(255, 77, 109, 0.11);
    font-weight: 800;
}

.jason-payment-session.is-expired .payment-countdown {
    color: #b51435;
}

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

.field {
    display: grid;
    gap: 7px;
}

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

label {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 13px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.22);
    font: inherit;
}

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

.notice {
    margin: 18px 0;
    padding: 14px 16px;
    border: 1px solid rgba(0, 210, 106, 0.35);
    border-radius: 14px;
    color: #ccffe4;
    background: rgba(0, 210, 106, 0.09);
}

.notice--error {
    border-color: rgba(255, 77, 109, 0.42);
    color: #ffe0e7;
    background: rgba(255, 77, 109, 0.1);
}

.stripe-result-card {
    display: grid;
    gap: 18px;
    max-width: 780px;
    margin: 28px auto;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 194, 255, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(26, 43, 61, 0.92), rgba(22, 20, 48, 0.9));
}

.stripe-result-card--paid {
    border-color: rgba(67, 226, 139, 0.46);
    box-shadow: 0 0 34px rgba(67, 226, 139, 0.14);
}

.stripe-result-card h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(36px, 7vw, 72px);
    line-height: 0.95;
}

.stripe-result-card p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.contact-page {
    padding: 34px 0 82px;
}

.contact-panel {
    width: min(940px, 100%);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(0, 194, 255, 0.26);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 194, 255, 0.18), transparent 38%),
        radial-gradient(circle at 82% 22%, rgba(109, 59, 255, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(13, 24, 43, 0.94), rgba(7, 14, 27, 0.98));
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.38),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.contact-panel__intro {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-panel__intro h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 72px);
}

.contact-panel__intro p {
    max-width: 720px;
    margin: 0;
}

.contact-code {
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 10px 14px;
    align-items: center;
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 14px;
    background: rgba(0, 194, 255, 0.08);
}

.contact-code span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-code strong {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 16px;
    color: #06111d;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-weight: 950;
    letter-spacing: 0.08em;
}

.contact-code p {
    grid-column: 1 / -1;
    margin: 0;
    color: #c6d6ec;
    font-size: 13px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form textarea {
    min-height: 190px;
}

.contact-form__footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.contact-form__footer p {
    max-width: 620px;
    margin: 0;
    color: #c6d6ec;
    font-size: 13px;
    font-weight: 750;
}

.contact-form__footer button {
    min-width: 190px;
}

.admin-login {
    min-height: 58vh;
    display: grid;
    place-items: center;
    padding: 36px 0 80px;
}

.admin-console {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 248px 1fr;
    background: #f8fbff;
    color: #102034;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    padding: 28px 14px;
    border-right: 1px solid #d8e1ee;
    background: #ffffff;
}

.admin-sidebar__brand {
    display: block;
    padding: 0 2px 24px;
}

.admin-sidebar__brand img {
    width: 132px;
}

.admin-menu {
    display: grid;
    align-content: start;
    gap: 8px;
}

.admin-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 14px;
    border-right: 3px solid transparent;
    color: #142236;
    font-weight: 800;
}

.admin-menu a span {
    width: 24px;
    color: #00a8d8;
    font-size: 22px;
}

.admin-menu a.is-active {
    color: #00a8d8;
    border-right-color: #00c2ff;
    background: rgba(0, 194, 255, 0.07);
}

.admin-create {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #00b7d8, #6d3bff);
    font-weight: 900;
}

.admin-workspace {
    width: min(920px, calc(100% - 44px));
    margin: 0 auto;
    padding: 30px 0 72px;
}

.admin-workspace--wide {
    width: min(1120px, calc(100% - 44px));
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.admin-topbar h1 {
    margin: 6px 0 0;
    color: #102034;
    font-size: 42px;
}

.admin-user--compact {
    min-width: 230px;
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    color: #102034;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 32, 52, 0.07);
    backdrop-filter: none;
}

.admin-user--compact span {
    color: #66778c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-user--compact strong {
    color: #102034;
}

.admin-user--compact div {
    display: flex;
    gap: 10px;
}

.admin-user--compact a {
    color: #007fa8;
    font-size: 13px;
    font-weight: 900;
}

.admin-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.admin-mini-stats article {
    padding: 16px;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    background: #ffffff;
}

.admin-mini-stats strong {
    display: block;
    color: #102034;
    font-size: 28px;
}

.admin-mini-stats span {
    color: #5e6d82;
    font-weight: 800;
}

.checkout-list-panel {
    border-top: 1px solid #d6dfeb;
    background: #ffffff;
}

.checkout-row {
    min-height: 64px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 160px 92px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #d6dfeb;
    color: #102034;
}

.checkout-row:hover {
    background: rgba(0, 194, 255, 0.05);
}

.checkout-row__number {
    color: #6b7888;
    text-align: right;
}

.checkout-row__title {
    min-width: 0;
}

.checkout-row__title strong,
.checkout-row__title small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-row__title small,
.checkout-row__template {
    color: #68778a;
    font-size: 13px;
}

.checkout-row__price {
    color: #33485f;
    text-align: right;
    font-weight: 800;
}

.admin-panel--flat {
    margin-top: 34px;
    border: 1px solid #dce5f0;
    color: #102034;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(16, 32, 52, 0.08);
    backdrop-filter: none;
}

.admin-panel--flat .admin-panel__head {
    border-bottom-color: #dce5f0;
    background: #ffffff;
}

.admin-panel--flat .admin-panel__head h2 {
    color: #102034;
}

.admin-panel--flat .admin-panel__head span {
    color: #5b6b80;
}

.admin-panel--flat .admin-search-row {
    border-bottom-color: #dce5f0;
    background: #ffffff;
}

.admin-panel--flat .admin-table-wrap,
.admin-panel--flat .enquiry-board {
    background: #ffffff;
}

.admin-panel--flat .admin-table th {
    color: #6b7b91;
}

.admin-panel--flat .admin-table td {
    color: #102034;
}

.admin-panel--flat .admin-table small {
    color: #66778c;
}

.admin-panel--flat .admin-table tbody tr {
    border-top-color: #e3ebf4;
}

.admin-panel--flat .admin-address-link {
    color: #005f82;
    font-weight: 900;
}

.admin-panel--flat .status-pill--payment {
    color: #6b4700;
    border-color: rgba(246, 166, 35, 0.42);
    background: rgba(246, 166, 35, 0.13);
}

.admin-panel--flat .status-pill--enquiry {
    color: #7a4d00;
    border-color: rgba(246, 166, 35, 0.36);
    background: rgba(246, 166, 35, 0.1);
}

.admin-panel--flat .status-dot {
    background: #f6a623;
}

.notice--admin {
    color: #0a2637;
}

.settings-editor {
    display: grid;
    gap: 20px;
}

.settings-section {
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
    gap: 28px;
    padding: 26px 0;
    border-top: 1px solid #d6dfeb;
}

.settings-section__intro h2 {
    margin: 0 0 8px;
    color: #102034;
    font-size: 22px;
}

.settings-section__intro p {
    margin: 0;
    color: #53647a;
    line-height: 1.55;
}

.settings-section__fields {
    display: grid;
    gap: 16px;
}

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

.settings-field {
    display: grid;
    gap: 8px;
}

.settings-field label,
.settings-toggle strong {
    color: #102034;
    font-weight: 900;
}

.settings-field input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ccd8e5;
    border-radius: 8px;
    padding: 0 14px;
    color: #16283d;
    background: #f4f9fc;
    font: inherit;
}

.settings-field input:focus {
    outline: 2px solid rgba(0, 194, 255, 0.28);
    border-color: #00a8d8;
    background: #ffffff;
}

.settings-toggle {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid #ccd8e5;
    border-radius: 10px;
    background: #ffffff;
}

.settings-toggle span {
    display: grid;
    gap: 4px;
}

.settings-toggle small {
    color: #5c6e83;
    line-height: 1.4;
}

.settings-toggle input {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    accent-color: #00a8d8;
}

.settings-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 0;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0), #f8fbff 28%);
}

.settings-actions button {
    min-height: 44px;
    min-width: 190px;
}

.admin-card,
.admin-panel,
.admin-stats article,
.admin-user {
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.08), transparent 42%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.11), transparent 42%),
        rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.admin-card {
    width: min(460px, 100%);
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 20px;
}

.admin-card h1 {
    margin: 6px 0 2px;
    font-size: 44px;
}

.admin-shell {
    padding: 36px 0 82px;
}

.admin-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-title h1 {
    margin-bottom: 10px;
}

.admin-title p {
    max-width: 680px;
    margin: 0;
}

.admin-user {
    min-width: 230px;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
}

.admin-stats,
.admin-columns {
    display: grid;
    gap: 16px;
}

.admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.admin-stats article {
    min-height: 116px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 20px;
    border-radius: 16px;
}

.admin-stats strong {
    font-size: 38px;
    line-height: 1;
}

.admin-stats span,
.admin-panel__head span,
.admin-table small {
    color: var(--muted);
}

.admin-panel {
    overflow: hidden;
    border-radius: 18px;
}

.admin-panel + .admin-panel,
.admin-columns {
    margin-top: 18px;
}

.admin-columns {
    grid-template-columns: 1.1fr 0.9fr;
}

.admin-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.admin-panel__head > div {
    display: grid;
    gap: 4px;
}

.admin-panel__head h2 {
    margin: 0;
    font-size: 24px;
}

.admin-search-row {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-search-row input {
    width: 100%;
    min-height: 46px;
    border-color: #d4dee9;
    color: #102034;
    background: #f5f9fc;
}

.admin-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.admin-bulk-actions label {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #304157;
    font-weight: 900;
}

.admin-bulk-actions button {
    min-height: 38px;
    border-radius: 999px;
    padding: 0 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff4775, #b61749);
    font-size: 13px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.admin-transactions-table {
    min-width: 860px;
}

.admin-address-link {
    color: #102034;
    font-weight: 900;
}

.admin-address-link:hover {
    color: #00a8d8;
}

.status-pill {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 999px;
    padding: 0 10px;
    color: #dff8ff;
    background: rgba(0, 194, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-pill--payment {
    border-color: rgba(109, 59, 255, 0.28);
    background: rgba(109, 59, 255, 0.12);
}

.status-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 999px;
    background: #f6a400;
}

.status-pill--method {
    border-color: rgba(0, 194, 255, 0.28);
    color: #dff8ff;
    background: rgba(0, 194, 255, 0.12);
}

.status-pill--enquiry {
    border-color: rgba(255, 180, 70, 0.32);
    color: #fff1d4;
    background: rgba(255, 180, 70, 0.12);
}

.enquiry-board {
    display: grid;
    gap: 14px;
    padding: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 194, 255, 0.05), transparent 32%),
        #f8fbff;
}

.enquiry-card {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #dce5f0;
    border-left: 4px solid #00c2ff;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 32, 52, 0.08);
}

.enquiry-card__select {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #d8e1ee;
    border-radius: 999px;
    padding: 0 10px;
    color: #304157;
    background: #f5f8fc;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.enquiry-card__select + .enquiry-card__head {
    padding-right: 100px;
}

.enquiry-card[hidden] {
    display: none;
}

.enquiry-card__head,
.enquiry-card__foot,
.enquiry-card__contact,
.enquiry-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.enquiry-card__head {
    justify-content: space-between;
    gap: 14px;
}

.enquiry-card__head h3 {
    margin: 3px 0;
    color: #102034;
    font-size: 22px;
}

.enquiry-card__head small,
.enquiry-card__date,
.enquiry-card__foot {
    color: #66778c;
    font-size: 12px;
    font-weight: 800;
}

.enquiry-card__meta span,
.enquiry-card__contact span,
.enquiry-card__foot span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8e1ee;
    border-radius: 999px;
    padding: 0 11px;
    color: #304157;
    background: #f5f8fc;
    font-size: 12px;
    font-weight: 900;
}

.enquiry-card__meta .enquiry-code {
    color: #06111d;
    border-color: rgba(0, 194, 255, 0.38);
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.28), rgba(109, 59, 255, 0.18));
    letter-spacing: 0.08em;
}

.enquiry-card__message {
    margin: 0;
    padding: 14px;
    border: 1px solid #e3ebf4;
    border-radius: 12px;
    color: #304157;
    background: #f8fbff;
    line-height: 1.58;
}

.spam-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.enquiry-empty {
    padding: 28px;
    border: 1px dashed #c9d7e6;
    border-radius: 14px;
    color: #66778c;
    background: #ffffff;
    text-align: center;
    font-weight: 900;
}

.table-action {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--text);
    background: rgba(0, 194, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.admin-editor {
    display: grid;
    gap: 18px;
}

.admin-editor__panel {
    overflow: visible;
}

.admin-form-grid,
.admin-image-grid {
    display: grid;
    gap: 16px;
    padding: 20px;
}

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

.admin-form-grid--single {
    grid-template-columns: 1fr;
    padding: 0;
}

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

.translation-panel {
    display: grid;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.translation-panel__head,
.admin-language-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.translation-panel__head strong,
.admin-language-label {
    color: var(--text);
    font-weight: 900;
}

.translation-panel__head span {
    min-width: 38px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(0, 194, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.admin-language-label {
    padding: 18px 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    font-size: 12px;
}

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

.image-upload-box {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.image-upload-box--focused {
    border-color: rgba(0, 194, 255, 0.62);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.12), 0 0 38px rgba(0, 194, 255, 0.16);
}

.image-upload-box strong {
    color: var(--text);
}

.image-upload-box img,
.admin-gallery-item img {
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.24);
}

.image-upload-box--square img {
    max-width: 170px;
    aspect-ratio: 1;
}

.image-upload-box--landscape img {
    max-width: 320px;
    aspect-ratio: 16 / 9;
}

.admin-image-preview--empty {
    opacity: 0.28;
}

.image-upload-box small {
    color: var(--muted);
    line-height: 1.5;
}

.admin-image-upload-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.admin-image-upload-row input[type="file"] {
    flex: 1 1 230px;
}

.admin-image-update {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(0, 210, 106, 0.34);
    border-radius: 11px;
    color: #d8ffe9;
    background: rgba(0, 210, 106, 0.12);
    box-shadow: none;
    font-size: 13px;
    font-weight: 900;
}

.admin-image-update:hover {
    border-color: rgba(0, 210, 106, 0.64);
    background: rgba(0, 210, 106, 0.2);
}

.admin-gallery-open {
    width: max-content;
    min-height: 38px;
}

.admin-gallery-open.is-active {
    color: #06111d;
    border-color: rgba(0, 194, 255, 0.58);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}

.has-admin-modal {
    overflow: hidden;
}

.admin-media-manager {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    padding: 30px;
}

.admin-media-manager.is-open {
    display: grid;
    place-items: center;
}

.admin-media-manager__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 8, 18, 0.78);
    backdrop-filter: blur(14px);
}

.admin-media-manager__dialog {
    position: relative;
    width: min(1040px, 100%);
    max-height: min(780px, calc(100vh - 60px));
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(16, 30, 45, 0.98), rgba(8, 12, 28, 0.98));
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.52), 0 0 55px rgba(0, 194, 255, 0.12);
}

.admin-media-manager__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.admin-media-manager__head h2,
.admin-media-manager__head p {
    margin: 0;
}

.admin-media-manager__head h2 {
    margin-top: 4px;
    color: var(--text);
    font-size: clamp(24px, 3vw, 34px);
}

.admin-media-manager__head p {
    margin-top: 7px;
    color: var(--muted);
    font-weight: 800;
}

.admin-media-close {
    width: 44px;
    height: 44px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 30px;
    line-height: 1;
    box-shadow: none;
}

.admin-media-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
}

.admin-media-tool {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
    font-size: 13px;
}

.admin-media-tool.is-active,
.admin-media-tool:hover {
    border-color: rgba(0, 194, 255, 0.48);
    background: rgba(0, 194, 255, 0.12);
}

.admin-media-search {
    min-width: min(360px, 100%);
    margin-left: auto;
}

.admin-media-search input {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.2);
}

.admin-gallery-panel {
    overflow: visible;
}

.admin-gallery-status {
    margin: 16px 20px 0;
    padding: 12px 14px;
    border: 1px solid rgba(0, 194, 255, 0.18);
    border-radius: 12px;
    color: var(--muted);
    background: rgba(0, 194, 255, 0.06);
    font-weight: 800;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    padding: 20px;
}

.admin-gallery-grid--manager {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    align-content: start;
    overflow: auto;
}

.admin-gallery-item {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.admin-gallery-choice {
    width: 100%;
    min-height: 0;
    display: grid;
    gap: 8px;
    border: 0;
    border-radius: 0;
    padding: 10px;
    color: var(--text);
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.admin-gallery-item:hover,
.admin-gallery-item:has(.admin-gallery-choice.is-selected) {
    border-color: rgba(0, 194, 255, 0.48);
    background: rgba(0, 194, 255, 0.1);
}

.admin-gallery-choice img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.admin-gallery-choice span {
    overflow: hidden;
    color: var(--text);
    font-size: 12px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-gallery-choice small {
    color: var(--muted);
    font-size: 11px;
}

.admin-gallery-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 77, 109, 0.72);
    border-radius: 999px;
    color: #fff;
    background: rgba(190, 15, 45, 0.9);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
    z-index: 2;
}

.admin-gallery-delete:hover {
    border-color: rgba(255, 77, 109, 0.78);
    background: #ff315c;
}

.admin-media-page {
    padding-bottom: 50px;
}

.admin-media-uploader form,
.admin-media-library__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
}

.admin-media-uploader input[type="file"] {
    flex: 1 1 280px;
}

.admin-media-service-select {
    min-width: min(280px, 100%);
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-media-service-select select,
.admin-media-library__toolbar select {
    min-height: 44px;
    padding: 0 42px 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background-color: rgba(0, 0, 0, 0.2);
}

.admin-media-library__toolbar {
    border-bottom: 1px solid var(--line);
}

.admin-media-library__toolbar input[type="search"] {
    flex: 1 1 280px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.2);
}

.admin-media-checkall,
.admin-gallery-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-gallery-delete-selected {
    min-height: 40px;
    border: 1px solid rgba(255, 77, 109, 0.42);
    color: #ffd6df;
    background: rgba(255, 77, 109, 0.12);
}

.admin-gallery-grid--standalone {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.admin-gallery-item--standalone {
    min-height: 220px;
}

.admin-gallery-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    width: 28px;
    height: 28px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.58);
}

.admin-gallery-checkbox input {
    width: 16px;
    height: 16px;
}

.admin-editor__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 42px;
    display: grid;
    justify-items: center;
    gap: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.footer-brand {
    display: grid;
    justify-items: center;
    gap: 6px;
}

.footer-brand img {
    width: min(270px, 72vw);
}

.footer-brand p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-payments {
    min-width: min(100%, 470px);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(rgba(10, 20, 38, 0.74), rgba(10, 20, 38, 0.74)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.34), rgba(109, 59, 255, 0.28)) border-box;
}

.footer-payments p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-payments__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    justify-content: center;
}

.payment-icon,
.payment-token {
    width: 46px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.payment-icon img {
    max-width: 29px;
    max-height: 22px;
    object-fit: contain;
}

.payment-token {
    color: #dff8ff;
    border-color: rgba(0, 194, 255, 0.2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.payment-token--invoice {
    width: auto;
    padding: 0 12px;
    border-color: rgba(109, 59, 255, 0.25);
}

.jai-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    justify-items: end;
    gap: 18px;
}

.jai-whatsapp__launcher,
.jai-whatsapp__cta {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 194, 255, 0.32);
    border-radius: 999px;
    color: var(--text);
    background:
        linear-gradient(rgba(10, 20, 38, 0.78), rgba(10, 20, 38, 0.78)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.62), rgba(109, 59, 255, 0.48)) border-box;
    box-shadow: 0 18px 46px rgba(0, 194, 255, 0.12);
    font-size: 16px;
    font-weight: 800;
}

.jai-whatsapp__launcher {
    padding: 0 24px 0 16px;
}

.jai-whatsapp__icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--green);
    border: 1px solid rgba(0, 210, 106, 0.36);
}

.jai-whatsapp__icon svg {
    width: 25px;
    height: 25px;
    fill: #06120a;
}

.jai-whatsapp__panel {
    width: min(380px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.14), transparent 42%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.18), transparent 42%),
        rgba(5, 13, 20, 0.96);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(109, 59, 255, 0.09);
    backdrop-filter: blur(22px);
}

.jai-whatsapp__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(109, 59, 255, 0.1)),
        rgba(8, 18, 32, 0.72);
}

.jai-whatsapp__eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.jai-whatsapp__header h2 {
    margin: 4px 0 0;
    font-size: 24px;
}

.jai-whatsapp__close {
    width: 40px;
    min-height: 40px;
    padding: 0;
    color: var(--text);
    border: 1px solid rgba(0, 194, 255, 0.2);
    background: rgba(11, 23, 34, 0.72);
    box-shadow: none;
    font-size: 28px;
    line-height: 1;
}

.jai-whatsapp__body {
    padding: 19px;
}

.jai-whatsapp__message {
    padding: 16px;
    border: 1px solid rgba(0, 194, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.jai-whatsapp__message strong {
    color: var(--text);
}

.jai-whatsapp__message p {
    margin: 7px 0 0;
    color: #d6e0e8;
    line-height: 1.5;
}

.jai-whatsapp__form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.jai-whatsapp__form label {
    display: grid;
    gap: 6px;
}

.jai-whatsapp__form label span {
    color: #d6e0e8;
    font-size: 12px;
    font-weight: 900;
}

.jai-whatsapp__form input,
.jai-whatsapp__form textarea {
    min-height: 42px;
    border-color: rgba(0, 194, 255, 0.18);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.jai-whatsapp__form textarea {
    min-height: 92px;
    resize: vertical;
}

.jai-whatsapp__cta {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 17px;
    color: #03101a;
    background:
        linear-gradient(135deg, var(--blue), var(--violet)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.68), rgba(109, 59, 255, 0.54)) border-box;
    box-shadow: 0 16px 36px rgba(0, 194, 255, 0.16);
}

.jai-whatsapp__form .jai-whatsapp__cta {
    margin-top: 4px;
}

.jai-whatsapp__status {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(0, 210, 106, 0.26);
    border-radius: 12px;
    color: #dfffea;
    background: rgba(0, 210, 106, 0.1);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.jai-whatsapp__status.is-error {
    border-color: rgba(255, 77, 109, 0.34);
    color: #ffe0e7;
    background: rgba(255, 77, 109, 0.12);
}

.jai-whatsapp__fallback {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.payment-row {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 8px;
}

.payment-row span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 920px) {
    .hero,
    .checkout-intro,
    .consult-hero,
    .consult-results,
    .discount-cta {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .home-products .service-grid,
    .step-grid,
    .admin-stats,
    .admin-columns,
    .admin-form-grid,
    .admin-translation-grid,
    .admin-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    h1 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .checkout-intro h1 {
        font-size: clamp(38px, 11vw, 46px);
        line-height: 1;
    }

    .site-header,
    .section-heading,
    .admin-title,
    .spotlight-service,
    .service-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .site-header__controls {
        width: 100%;
        align-items: stretch;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
    }

    .language-switcher select,
    .currency-switcher select {
        width: 94px;
    }

    .hero {
        min-height: 0;
        padding-top: 22px;
    }

    .home-hero-band {
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        padding: 30px 16px 28px;
    }

    .home-hero-band .hero-panel {
        padding: 10px;
    }

    .home-hero-band .hero-panel__screen {
        min-height: 0;
        padding: 18px;
    }

    .discount-cta {
        margin-top: 14px;
        padding: 24px 16px;
        text-align: center;
    }

    .discount-cta__form {
        grid-template-columns: 1fr;
    }

    .discount-cta__form button {
        width: 100%;
    }

    .contact-code {
        grid-template-columns: 1fr;
    }

    .contact-code strong {
        justify-self: start;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__footer button {
        width: 100%;
    }

    .home-products {
        padding: 26px 14px;
    }

    h1 {
        font-size: 52px;
    }

    .service-grid,
    .home-products .service-grid,
    .step-grid,
    .form-grid,
    .metric-grid,
    .workflow-map {
        grid-template-columns: 1fr;
    }

    .workflow-map {
        min-height: 0;
        grid-template-rows: none;
    }

    .workflow-map::before,
    .workflow-map::after {
        display: none;
    }

    .workflow-node,
    .workflow-hub,
    .workflow-output,
    .workflow-output--audio,
    .workflow-output--sos,
    .workflow-output--scrape {
        grid-column: 1;
        grid-row: auto;
    }

    .admin-stats,
    .admin-columns,
    .admin-form-grid,
    .admin-translation-grid,
    .admin-image-grid {
        grid-template-columns: 1fr;
    }

    .admin-media-manager {
        padding: 12px;
    }

    .admin-media-manager__dialog {
        max-height: calc(100vh - 24px);
    }

    .admin-media-manager__head,
    .admin-media-toolbar {
        padding: 16px;
    }

    .admin-media-toolbar {
        flex-wrap: wrap;
    }

    .admin-media-search {
        flex-basis: 100%;
        margin-left: 0;
    }

    .admin-gallery-grid--manager {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
    }

    .jason-payment-session__body,
    .wallet-choice-shell,
    .stripe-choice-shell {
        grid-template-columns: 1fr;
    }

    .checkout-payment-structure {
        border-radius: 14px;
    }

    .checkout-price-box {
        padding: 20px 14px;
    }

    .payment-method-list,
    .stripe-choice-shell,
    .wallet-choice-shell {
        padding: 14px;
    }

    .payment-method-option {
        min-height: 58px;
        grid-template-columns: 30px minmax(0, 1fr);
        border-radius: 18px;
        padding: 10px 12px;
    }

    .payment-method-option__code {
        grid-column: 2;
        font-size: 12px;
    }

    .stripe-choice-card {
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: start;
        padding: 14px;
    }

    .stripe-choice-card p {
        font-size: 14px;
    }

    .stripe-choice-badges {
        justify-content: flex-start;
    }

    .stripe-choice-badges span {
        min-height: 28px;
        font-size: 11px;
    }

    .wallet-choice-preview {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .wallet-choice-preview img {
        width: 92px;
    }

    .payment-qr {
        width: min(280px, 86vw);
    }

    .consult-wizard {
        min-height: 0;
        padding: 18px;
    }

    .consult-wizard__stage {
        min-height: 0;
        padding-top: 104px;
    }

    .consult-bot-orb {
        left: var(--bot-x, 18px);
        top: var(--bot-y, 14px);
        width: 76px;
        transform: translate3d(0, 0, 0);
    }

    .consult-progress {
        left: 136px;
        right: 18px;
        top: 42px;
    }

    .consult-progress span {
        flex: 1;
        width: auto;
    }

    .consult-progress span.is-active {
        width: auto;
    }

    .consult-step {
        padding-top: 0;
        gap: 34px;
    }

    .consult-answer {
        width: calc(100% - 92px);
        margin-left: 92px;
    }

    .consult-wizard__actions {
        width: calc(100% - 92px);
        margin-left: 92px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .consult-wizard__actions button,
    .consult-wizard__services {
        min-height: 46px;
        padding: 0 12px;
        font-size: 13px;
    }

    .consult-wizard__actions button[data-consult-submit] {
        grid-column: 1 / -1;
    }

    .consult-wizard__services {
        width: calc(100% - 92px);
        margin-left: 92px;
        justify-self: start;
    }

    .consult-bubble {
        border-radius: 22px 22px 22px 8px;
        padding: 22px;
    }

    .consult-bubble h2 {
        font-size: 34px;
    }

    .consult-answer input {
        min-height: 58px;
        font-size: 17px;
    }

    .consult-decision {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .consult-decision__option {
        min-height: 74px;
        padding: 13px 8px;
        border-radius: 16px;
    }

    .consult-decision__option strong {
        font-size: 23px;
    }

    .consult-decision__option span {
        font-size: 11px;
    }

    .consult-score-card {
        padding-bottom: 92px;
    }
}
