:root {
    --bg: #04101b;
    --bg-soft: #091c2c;
    --surface: rgba(8, 18, 30, 0.82);
    --surface-strong: #0b1623;
    --surface-light: rgba(255, 255, 255, 0.05);
    --text: #f2f7fb;
    --text-soft: #a9b7c8;
    --white: #ffffff;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --success: #24c96b;
    --info: #0ea5e9;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow-xl: 0 34px 80px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 24px 48px rgba(0, 0, 0, 0.22);
    --container: min(1380px, calc(100vw - 48px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.18), transparent 26%),
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 22%),
        linear-gradient(180deg, #03101a 0%, #07131f 36%, #040b14 100%);
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(22px);
    background: rgba(3, 12, 20, 0.72);
    border-bottom: 1px solid var(--line);
}

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

.site-brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.site-brand strong,
.admin-brand strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.site-brand small,
.admin-brand small {
    color: var(--text-soft);
}

.site-brand__mark,
.admin-brand__logo {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    background: linear-gradient(135deg, #24c96b, #0ea5e9);
    color: #03101b;
    box-shadow: 0 14px 36px rgba(36, 201, 107, 0.34);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 20px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #04101b;
    background: linear-gradient(135deg, #24c96b, #79f570 52%, #0ea5e9);
    box-shadow: 0 18px 34px rgba(20, 171, 104, 0.28);
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.btn-muted {
    color: var(--white);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.07);
}

.btn-danger {
    color: var(--white);
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.24);
}

.btn-lg {
    padding: 16px 26px;
}

.btn-sm {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.77rem;
    color: #7dddb1;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #24c96b, transparent);
}

.hero-section,
.section,
.auth-section {
    padding: 88px 0;
}

.hero-grid,
.product-hero__grid,
.checkout-grid,
.auth-grid,
.details-grid,
.order-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.hero-copy h1,
.product-hero__copy h1,
.auth-copy h1,
.install-card h1 {
    margin: 0 0 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    line-height: 0.98;
}

.hero-subtitle,
.auth-copy p,
.product-hero__copy p,
.checkout-notice,
.glass-card p,
.install-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.06rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 34px;
}

.hero-proof,
.summary-list,
.stacked-points,
.admin-stat-grid {
    display: grid;
    gap: 14px;
}

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

.proof-card,
.glass-card,
.auth-card,
.order-card,
.admin-card,
.table-card,
.checkout-product,
.checkout-summary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.proof-card {
    padding: 20px;
}

.proof-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.proof-card span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hero-stage__panel {
    position: relative;
    padding: 30px;
    min-height: 680px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.2), transparent 28%),
        radial-gradient(circle at center left, rgba(14, 165, 233, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(8, 16, 29, 0.95), rgba(6, 12, 20, 0.96));
    overflow: hidden;
}

.hero-stage__badge,
.product-card__badge,
.product-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-device {
    position: absolute;
    width: min(420px, 72%);
    padding: 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(4, 14, 24, 0.96), rgba(6, 17, 29, 0.72));
    box-shadow: var(--shadow-xl);
    animation: floatCard 8s ease-in-out infinite;
}

.hero-device:nth-of-type(1) {
    top: 108px;
    right: 0;
}

.hero-device:nth-of-type(2) {
    left: 0;
    bottom: 32px;
    animation-delay: -4s;
}

.hero-device::after {
    content: "";
    position: absolute;
    inset: auto 16px -18px 16px;
    height: 70px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent), transparent 48%), transparent 72%);
    filter: blur(24px);
    z-index: -1;
}

.hero-device__copy {
    display: grid;
    gap: 5px;
    margin-bottom: 12px;
}

.hero-device__copy small {
    color: color-mix(in srgb, var(--accent), white 35%);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-device__copy strong {
    font-size: 1.34rem;
    font-family: "Space Grotesk", sans-serif;
}

.hero-device__copy span {
    color: var(--text-soft);
}

.hero-device img {
    border-radius: 20px;
    aspect-ratio: 10 / 16;
    object-fit: cover;
}

.info-band {
    padding: 42px 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.info-band__grid,
.cta-banner,
.admin-preview,
.dashboard-head,
.admin-hero,
.admin-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.info-band h2,
.section-heading h2,
.cta-banner h2,
.admin-hero h1,
.admin-card h2,
.checkout-summary h2,
.checkout-product h1,
.dashboard-head h1,
.order-detail h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    line-height: 1.08;
}

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

.stacked-points span {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.stacked-points--compact {
    grid-template-columns: 1fr;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading--light h2 {
    color: var(--white);
}

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

.glass-card,
.checkout-product,
.checkout-summary,
.auth-card,
.admin-card,
.table-card {
    padding: 28px;
}

.glass-card strong,
.admin-card h2,
.checkout-summary h2 {
    font-size: 1.18rem;
    display: block;
    margin-bottom: 14px;
}

.product-grid {
    align-items: stretch;
}

.product-card {
    display: grid;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--surface);
    box-shadow: var(--shadow-card);
}

.product-card__visual {
    position: relative;
    padding: 20px;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--accent), transparent 78%), transparent 28%),
        radial-gradient(circle at left center, color-mix(in srgb, var(--accent-soft), transparent 72%), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.product-card__visual img {
    width: 100%;
    aspect-ratio: 10 / 15;
    border-radius: 24px;
    object-fit: cover;
}

.product-card__glow {
    position: absolute;
    inset: auto 40px -26px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent), transparent 34%), transparent 72%);
    filter: blur(28px);
}

.product-card__body {
    padding: 0 22px 22px;
}

.product-card__heading h3 {
    margin: 20px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
}

.product-card__heading p,
.product-card__description,
.detail-list li,
.admin-mini-list span {
    color: var(--text-soft);
    line-height: 1.72;
}

.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 16px;
}

.price-row strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.9rem;
    margin: 0;
}

.price-row-lg strong {
    font-size: 2.4rem;
}

.price-old {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: line-through;
}

.feature-pills,
.detail-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pills li,
.product-card__highlights span,
.status-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.product-card__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.product-card__actions,
.order-card__actions,
.cta-banner__actions,
.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.section-dark {
    background: linear-gradient(180deg, rgba(2, 8, 13, 0.9), rgba(6, 15, 24, 0.96));
}

.admin-preview__list {
    display: grid;
    gap: 12px;
    min-width: min(100%, 420px);
}

.admin-preview__list span {
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
}

.admin-preview__window {
    min-width: 340px;
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.window-top {
    display: flex;
    gap: 8px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
}

.window-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.window-body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

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

.window-stat strong {
    font-size: 1.6rem;
}

.window-stat small,
.admin-sidebar__footer p,
.form-note,
.install-list li,
.table-card small {
    color: var(--text-soft);
}

.window-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(36, 201, 107, 0.4), transparent);
}

.cta-banner {
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at right, rgba(36, 201, 107, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(6, 20, 31, 0.98), rgba(9, 29, 42, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
    padding: 72px 0 90px;
    border-top: 1px solid var(--line);
}

.site-footer__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__grid h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.footer-contact-card {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.footer-contact-card a {
    font-size: 1.8rem;
    font-family: "Space Grotesk", sans-serif;
}

.footer-contact-card span,
.footer-contact-card p {
    color: var(--text-soft);
    margin: 0;
}

.product-hero__visual,
.checkout-product__image,
.gallery-card,
.image-preview,
.gallery-admin-card {
    overflow: hidden;
    border-radius: 28px;
}

.product-hero__visual {
    position: relative;
    padding: 18px;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--accent), transparent 72%), transparent 28%),
        radial-gradient(circle at bottom left, color-mix(in srgb, var(--soft), transparent 70%), transparent 24%),
        linear-gradient(180deg, rgba(4, 14, 24, 0.98), rgba(8, 18, 31, 0.92));
    border: 1px solid var(--line);
}

.product-hero__visual img {
    border-radius: 24px;
    aspect-ratio: 10 / 16;
    object-fit: cover;
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-list li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

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

.gallery-card,
.gallery-admin-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

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

.auth-copy {
    max-width: 520px;
}

.auth-card {
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

.form-field,
.checkbox-inline {
    display: grid;
    gap: 10px;
}

.auth-card,
.field-grid,
.admin-form-grid,
.summary-list,
.order-card__body,
.install-card {
    gap: 18px;
}

.form-field span {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.form-field input,
.form-field textarea,
.form-field select,
.status-form select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 9, 14, 0.88);
    color: var(--white);
    padding: 14px 16px;
    outline: none;
}

.form-field textarea {
    resize: vertical;
}

.status-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.summary-list div:last-child {
    border-bottom: 0;
}

.summary-list span {
    color: var(--text-soft);
}

.checkout-product__image {
    margin-top: 20px;
    border: 1px solid var(--line);
}

.order-grid,
.gallery-admin-grid {
    display: grid;
    gap: 22px;
}

.order-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    overflow: hidden;
}

.order-card img {
    height: 100%;
    object-fit: cover;
}

.order-card__body {
    display: grid;
    padding: 24px;
}

.order-card__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.order-card__top small {
    display: block;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.status-pending {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
}

.status-paid {
    color: #69f0a3;
    background: rgba(36, 201, 107, 0.12);
}

.status-cancelled {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
}

.empty-state {
    text-align: center;
}

.container-flash {
    padding-top: 16px;
}

.flash {
    padding: 16px 18px;
    border-radius: 18px;
    margin: 0 auto 14px;
    width: var(--container);
    border: 1px solid transparent;
}

.flash-success {
    color: #d7fee8;
    background: rgba(36, 201, 107, 0.14);
    border-color: rgba(36, 201, 107, 0.24);
}

.flash-error {
    color: #ffd7d7;
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.24);
}

.flash-warning {
    color: #ffefc8;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.24);
}

.admin-body {
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.12), transparent 20%),
        linear-gradient(180deg, #04101b 0%, #09131e 100%);
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 28px 22px;
    border-right: 1px solid var(--line);
    background: rgba(4, 13, 21, 0.86);
    backdrop-filter: blur(18px);
}

.admin-nav {
    display: grid;
    gap: 8px;
    margin: 28px 0;
}

.admin-nav__link {
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--text-soft);
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar__footer {
    margin-top: auto;
    display: grid;
    gap: 14px;
}

.admin-main {
    padding: 32px;
}

.admin-panel {
    display: grid;
    gap: 24px;
}

.admin-hero p,
.admin-card p {
    color: var(--text-soft);
    margin: 0;
}

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

.admin-stat-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.admin-stat-card small {
    color: var(--text-soft);
}

.admin-stat-card strong {
    display: block;
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
}

.admin-two-col,
.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

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

.admin-mini-list strong {
    display: block;
    margin-bottom: 6px;
}

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

.admin-table th,
.admin-table td {
    padding: 18px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.admin-table th {
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-form-grid {
    display: grid;
    gap: 22px;
}

.field-span-2 {
    grid-column: span 2;
}

.image-preview img {
    width: 100%;
    max-width: 240px;
}

.gallery-admin-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 24px;
}

.gallery-admin-card {
    display: grid;
    gap: 14px;
    padding: 14px;
}

.checkbox-inline {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
}

.checkbox-inline input {
    width: 18px;
    height: 18px;
}

.install-card {
    max-width: 760px;
    margin: 0 auto;
}

.install-list {
    margin: 20px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.hero-section--immersive {
    position: relative;
    min-height: calc(100vh - 88px);
    padding: 72px 0 54px;
    overflow: hidden;
}

.hero-section__aurora,
.hero-section__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-section__aurora {
    background:
        radial-gradient(circle at 12% 24%, rgba(14, 165, 233, 0.12), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(36, 201, 107, 0.16), transparent 28%),
        radial-gradient(circle at 56% 74%, rgba(13, 148, 136, 0.09), transparent 20%);
}

.hero-section__grid {
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 38px;
    align-items: center;
}

.hero-main--immersive h1 {
    max-width: 12ch;
    font-size: clamp(3.7rem, 8vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}

.hero-main--immersive .hero-subtitle {
    max-width: 700px;
    font-size: 1.16rem;
}

.immersive-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.immersive-proof-card {
    padding: 22px 22px 20px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(5, 17, 28, 0.88);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.immersive-proof-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.immersive-proof-card span {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-command {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(8, 18, 30, 0.94), rgba(4, 12, 22, 0.96));
    box-shadow: var(--shadow-xl);
}

.hero-command__header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-command__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #24c96b, #0ea5e9);
    box-shadow: 0 0 24px rgba(36, 201, 107, 0.44);
}

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

.command-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.command-card--chatbot {
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.16), transparent 32%),
        rgba(6, 17, 27, 0.92);
}

.command-card--nexo {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 32%),
        rgba(6, 17, 27, 0.92);
}

.command-pill,
.offer-card__topline {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.command-card h2,
.system-showcase__copy h3,
.process-card h3,
.admin-console h3,
.offer-card--textual h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.command-card h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.command-card p,
.system-showcase__lead,
.offer-card--textual p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.command-chip-grid,
.media-pill-row,
.system-benefit-grid,
.media-matrix,
.admin-console__list,
.offer-card__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.command-chip-grid span,
.media-pill-row span,
.system-benefit-grid span,
.media-matrix span,
.admin-console__list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.92rem;
}

.bridge-inline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.bridge-inline strong {
    font-size: 1.4rem;
    color: #7cdff9;
}

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

.hero-command__footer div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-command__footer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.hero-command__footer small {
    color: var(--text-soft);
    line-height: 1.6;
}

.section-full-bleed {
    padding-top: 28px;
}

.section-heading--wide {
    max-width: 980px;
}

.system-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 28px;
    padding: 28px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(5, 15, 24, 0.88);
    box-shadow: var(--shadow-card);
}

.system-showcase--chatbot {
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(5, 15, 24, 0.88);
}

.system-showcase--nexo {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(5, 15, 24, 0.88);
}

.system-showcase__copy,
.system-showcase__visual,
.showcase-board,
.process-card,
.admin-console,
.offer-card--textual {
    display: grid;
    gap: 18px;
}

.system-showcase__copy h3 {
    font-size: clamp(2.1rem, 3.8vw, 3.8rem);
}

.headline-stack {
    display: grid;
    gap: 4px;
    margin: 6px 0 4px;
}

.headline-stack span {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.3rem, 4.8vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.headline-stack--compact span {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.system-benefit-list {
    display: grid;
    gap: 12px;
}

.system-benefit-list div,
.process-step {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    line-height: 1.7;
}

.offer-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.offer-inline small {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
}

.offer-inline strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
}

.offer-inline__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.showcase-board {
    height: 100%;
    padding: 26px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(4, 13, 22, 0.94);
}

.showcase-board--chatbot {
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(4, 13, 22, 0.94);
}

.showcase-board--nexo {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(4, 13, 22, 0.94);
}

.showcase-board__caption {
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7cdcb3;
}

.message-stack {
    display: grid;
    gap: 14px;
}

.message-card {
    padding: 18px 18px 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    line-height: 1.6;
}

.message-card--accent {
    color: var(--white);
    background: linear-gradient(135deg, rgba(36, 201, 107, 0.22), rgba(14, 165, 233, 0.18));
}

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

.feature-matrix__item {
    padding: 18px 16px;
    min-height: 88px;
    display: grid;
    align-content: end;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
}

.integration-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(36, 201, 107, 0.22);
    background: rgba(255, 255, 255, 0.03);
    width: fit-content;
}

.integration-bar strong {
    font-size: 1.35rem;
    color: #66ef9a;
}

.channel-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.channel-column {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.channel-column small {
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.channel-column strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
}

.channel-column span {
    color: var(--text-soft);
    line-height: 1.6;
}

.channel-column--telegram {
    background: rgba(14, 165, 233, 0.1);
}

.channel-column--whatsapp {
    background: rgba(36, 201, 107, 0.1);
}

.channel-board__arrow {
    font-size: 2rem;
    color: #84f7b3;
}

.commerce-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.process-card,
.admin-console {
    padding: 28px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.process-card h3,
.admin-console h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.process-steps {
    display: grid;
    gap: 12px;
}

.admin-console__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.admin-console__stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-console__stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.7rem;
    font-family: "Space Grotesk", sans-serif;
}

.admin-console__stats small {
    color: var(--text-soft);
}

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

.offer-card--textual {
    padding: 30px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--offer-accent), transparent 82%), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018)),
        rgba(6, 16, 27, 0.92);
}

.offer-card--textual h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.offer-card__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-card__price span {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: line-through;
}

.offer-card__price strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.6rem;
}

.offer-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offer-card__list li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
}

.offer-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-banner--wide {
    padding: 42px;
}

.pricing-mode-bar {
    width: fit-content;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.pricing-mode-bar span {
    padding: 12px 18px;
    border-radius: 14px;
    color: var(--text-soft);
    font-weight: 700;
}

.pricing-mode-bar .is-active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(36, 201, 107, 0.92), rgba(14, 165, 233, 0.95));
    box-shadow: 0 16px 30px rgba(36, 201, 107, 0.22);
}

.system-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.system-plan-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 690px;
    padding: 30px 28px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
        rgba(16, 25, 42, 0.94);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.system-plan-card__header {
    display: grid;
    gap: 8px;
}

.system-plan-card__header small,
.system-plan-card__save {
    color: var(--text-soft);
    line-height: 1.7;
}

.system-plan-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.04;
}

.system-plan-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.system-plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.system-plan-card__price span {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: line-through;
    font-size: 1rem;
}

.system-plan-card__price strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1;
}

.system-plan-card__price small {
    color: var(--text-soft);
    font-size: 1rem;
}

.system-plan-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.system-plan-card__list li {
    position: relative;
    padding-left: 24px;
    color: #d8e6f5;
    line-height: 1.65;
}

.system-plan-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #29d477;
    font-weight: 800;
}

.system-plan-card__actions {
    margin-top: auto;
}

.system-plan-card--featured {
    transform: scale(1.04);
    border-color: rgba(80, 142, 255, 0.34);
    background:
        radial-gradient(circle at top center, rgba(139, 92, 246, 0.22), transparent 24%),
        radial-gradient(circle at bottom right, rgba(36, 201, 107, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(93, 48, 177, 0.18), rgba(17, 22, 48, 0.96));
    box-shadow:
        0 0 0 1px rgba(122, 92, 255, 0.18),
        0 30px 70px rgba(38, 26, 86, 0.48);
}

.system-plan-card--featured::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.system-plan-card__featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2ca8, #8b5cf6);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
    box-shadow: 0 18px 34px rgba(139, 92, 246, 0.34);
}

.offer-card__topline--featured {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}

.system-plan-card--enterprise {
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
        rgba(16, 25, 42, 0.94);
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 40;
    display: grid;
    gap: 14px;
}

.floating-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
    transform: translateY(-2px) scale(1.02);
}

.floating-action--cart {
    background: #ffffff;
    color: #101828;
}

.floating-action--whatsapp {
    background: linear-gradient(135deg, #22c55e, #18d96e);
    color: #ffffff;
}

.floating-action__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
}

.floating-action__icon svg {
    width: 100%;
    height: 100%;
}

.floating-action__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    border: 3px solid #06111b;
}

.floating-action__badge--support {
    background: #ff5b2e;
}

.floating-action__label {
    position: absolute;
    right: calc(100% + 12px);
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 28, 0.96);
    color: var(--white);
    font-size: 0.88rem;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-action:hover .floating-action__label {
    opacity: 1;
    transform: translateX(0);
}

.fastpay-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    padding: 88px 0 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(20, 79, 168, 0.18), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(36, 201, 107, 0.1), transparent 24%),
        linear-gradient(180deg, #050816 0%, #070b18 56%, #050713 100%);
}

.fastpay-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.85;
    pointer-events: none;
}

.fastpay-hero__glow--left {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 120px;
    background: rgba(19, 79, 168, 0.28);
}

.fastpay-hero__glow--right {
    width: 360px;
    height: 360px;
    right: -100px;
    top: 70px;
    background: rgba(38, 208, 139, 0.18);
}

.fastpay-hero__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.fastpay-hero__copy h1 {
    margin: 0 0 22px;
    max-width: 11ch;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.fastpay-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d9e8f3;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fastpay-hero__subtitle {
    max-width: 700px;
    margin: 0;
    color: #9ba9bc;
    font-size: 1.08rem;
    line-height: 1.85;
}

.fastpay-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.fastpay-metric-card {
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
        rgba(10, 15, 28, 0.92);
}

.fastpay-metric-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
}

.fastpay-metric-card span {
    color: var(--text-soft);
    line-height: 1.65;
}

.fastpay-hero__stage {
    position: relative;
    min-height: 700px;
}

.fastpay-showcard,
.fastpay-floating,
.fastpay-benefit-card,
.fastpay-plan-card,
.fastpay-structure__panel,
.fastpay-faq-card,
.fastpay-final-cta,
.fastpay-workflow__step {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.fastpay-showcard {
    position: absolute;
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 36px;
    overflow: hidden;
}

.fastpay-showcard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
    pointer-events: none;
}

.fastpay-showcard--primary {
    inset: 0 80px 120px 0;
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.36), transparent 24%),
        linear-gradient(135deg, #0b1c37 0%, #0d385e 48%, #0b733f 100%);
}

.fastpay-showcard--secondary {
    right: 0;
    bottom: 0;
    width: 74%;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.34), transparent 24%),
        linear-gradient(135deg, rgba(7, 15, 35, 0.98), rgba(12, 34, 76, 0.94));
    backdrop-filter: blur(14px);
}

.fastpay-showcard h2,
.fastpay-showcard h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.fastpay-showcard h2 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.fastpay-showcard h3 {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.fastpay-showcard p,
.fastpay-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.fastpay-showcard__top,
.fastpay-showcard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fastpay-showcard__brand {
    color: #f3f8fb;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.fastpay-showcard__chip {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 700;
}

.fastpay-showcard__chip--blue {
    background: rgba(14, 165, 233, 0.18);
}

.fastpay-showcard__chips,
.fastpay-bridge,
.fastpay-admin-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fastpay-showcard__chips span,
.fastpay-bridge span,
.fastpay-admin-list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
}

.fastpay-showcard__footer strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
}

.fastpay-showcard__footer small {
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
    line-height: 1.55;
}

.fastpay-floating {
    position: absolute;
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(8, 15, 28, 0.88);
    backdrop-filter: blur(14px);
}

.fastpay-floating strong {
    font-size: 1rem;
}

.fastpay-floating span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.fastpay-floating--one {
    right: 16px;
    top: 84px;
}

.fastpay-floating--two {
    left: 24px;
    bottom: 26px;
}

.fastpay-benefit-strip {
    padding-top: 18px;
}

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

.fastpay-benefit-card {
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
        rgba(9, 14, 25, 0.94);
}

.fastpay-benefit-card h3,
.fastpay-faq-card h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
}

.fastpay-benefit-card p,
.fastpay-faq-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.fastpay-systems {
    background: linear-gradient(180deg, #050916 0%, #080a18 100%);
}

.fastpay-plan-toggle {
    width: fit-content;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fastpay-plan-toggle span {
    padding: 12px 18px;
    border-radius: 14px;
    color: var(--text-soft);
    font-weight: 700;
}

.fastpay-plan-toggle .is-active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(103, 69, 255, 0.92), rgba(232, 69, 187, 0.92));
}

.fastpay-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.fastpay-plan-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 720px;
    padding: 30px 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(17, 24, 39, 0.96);
}

.fastpay-plan-card__header {
    display: grid;
    gap: 8px;
}

.fastpay-plan-card__label {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fastpay-plan-card__label--featured {
    background: rgba(255, 255, 255, 0.09);
}

.fastpay-plan-card__header small,
.fastpay-plan-card p,
.fastpay-plan-card__tagline,
.fastpay-plan-footnote {
    color: var(--text-soft);
    line-height: 1.75;
}

.fastpay-plan-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
}

.fastpay-plan-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

.fastpay-plan-card__price span {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.fastpay-plan-card__price strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1;
}

.fastpay-plan-card__price small {
    color: var(--text-soft);
}

.fastpay-plan-card__features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.fastpay-plan-card__features li {
    position: relative;
    padding-left: 24px;
    color: #dce6f5;
    line-height: 1.65;
}

.fastpay-plan-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #24c96b;
    font-weight: 800;
}

.fastpay-plan-card__actions {
    margin-top: auto;
}

.fastpay-plan-card--featured {
    transform: scale(1.04);
    background:
        radial-gradient(circle at top center, rgba(162, 92, 255, 0.24), transparent 24%),
        radial-gradient(circle at bottom right, rgba(71, 135, 255, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(73, 30, 156, 0.34), rgba(20, 18, 49, 0.98));
    border-color: rgba(164, 116, 255, 0.28);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 30px 68px rgba(48, 25, 94, 0.46);
}

.fastpay-plan-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2ca8, #8b5cf6);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 32px rgba(139, 92, 246, 0.34);
}

.fastpay-plan-footnote {
    margin: 28px auto 0;
    text-align: center;
    max-width: 780px;
}

.fastpay-structure {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.fastpay-structure__content h2,
.fastpay-structure__panel h3,
.fastpay-final-cta h2 {
    margin: 0 0 18px;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.fastpay-structure__content h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    max-width: 12ch;
}

.fastpay-workflow {
    display: grid;
    gap: 14px;
}

.fastpay-workflow__step {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    line-height: 1.75;
}

.fastpay-structure__panel {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(36, 201, 107, 0.12), transparent 24%),
        rgba(10, 16, 27, 0.96);
}

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

.fastpay-admin-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fastpay-admin-stats strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
}

.fastpay-admin-stats small {
    color: var(--text-soft);
}

.fastpay-faq {
    background: linear-gradient(180deg, rgba(7, 12, 22, 0.96), rgba(4, 9, 18, 1));
}

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

.fastpay-faq-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
}

.fastpay-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    border-radius: 36px;
    background:
        radial-gradient(circle at right, rgba(36, 201, 107, 0.14), transparent 22%),
        linear-gradient(135deg, rgba(8, 16, 30, 0.98), rgba(11, 31, 48, 0.96));
}

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

@media (max-width: 1100px) {
    .hero-grid,
    .product-hero__grid,
    .checkout-grid,
    .auth-grid,
    .details-grid,
    .order-detail,
    .info-band__grid,
    .cta-banner,
    .admin-preview,
    .site-footer__grid,
    .admin-two-col {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .three-up-grid,
    .product-grid,
    .gallery-grid,
    .stacked-points,
    .admin-stat-grid,
    .field-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stage__panel {
        min-height: 560px;
    }

    .auth-card {
        justify-self: stretch;
    }

    .hero-shell,
    .system-showcase,
    .commerce-grid,
    .offer-grid--textual,
    .system-pricing-grid {
        grid-template-columns: 1fr;
    }

    .fastpay-hero__shell,
    .fastpay-plan-grid,
    .fastpay-structure,
    .fastpay-faq-grid {
        grid-template-columns: 1fr;
    }

    .immersive-proof-grid,
    .command-duo,
    .feature-matrix,
    .hero-command__footer,
    .admin-console__stats {
        grid-template-columns: 1fr 1fr;
    }

    .fastpay-benefit-strip__grid,
    .fastpay-hero__metrics,
    .fastpay-admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .fastpay-hero__copy h1,
    .fastpay-structure__content h2 {
        max-width: none;
    }

    .fastpay-hero__stage {
        min-height: 620px;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        flex-wrap: wrap;
        padding: 18px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 8px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-header__actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-proof,
    .three-up-grid,
    .product-grid,
    .gallery-grid,
    .stacked-points,
    .admin-stat-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage__panel {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .hero-device {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        animation: none;
    }

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

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-main {
        padding: 24px 16px 60px;
    }

    .field-span-2 {
        grid-column: span 1;
    }

    .hero-main--immersive h1,
    .headline-stack span,
    .headline-stack--compact span {
        max-width: none;
        font-size: clamp(2.8rem, 14vw, 4.6rem);
    }

    .immersive-proof-grid,
    .command-duo,
    .feature-matrix,
    .hero-command__footer,
    .admin-console__stats,
    .offer-grid--textual,
    .system-pricing-grid {
        grid-template-columns: 1fr;
    }

    .fastpay-benefit-strip__grid,
    .fastpay-hero__metrics,
    .fastpay-admin-stats,
    .fastpay-faq-grid {
        grid-template-columns: 1fr;
    }

    .offer-inline,
    .channel-board {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .channel-board__arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .system-plan-card--featured {
        transform: none;
    }

    .floating-actions {
        right: 16px;
        bottom: 18px;
    }

    .floating-action {
        width: 64px;
        height: 64px;
        border-radius: 22px;
    }

    .floating-action__icon {
        width: 30px;
        height: 30px;
    }

    .floating-action__label {
        display: none;
    }

    .fastpay-hero {
        padding-top: 56px;
    }

    .fastpay-hero__copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.8rem);
    }

    .fastpay-showcard {
        position: relative;
    }

    .fastpay-showcard--primary,
    .fastpay-showcard--secondary,
    .fastpay-floating--one,
    .fastpay-floating--two {
        inset: auto;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .fastpay-hero__stage {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .fastpay-final-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 620px) {
    .hero-section,
    .section,
    .auth-section {
        padding: 72px 0;
    }

    .hero-copy h1,
    .product-hero__copy h1,
    .auth-copy h1,
    .install-card h1 {
        font-size: 2.4rem;
    }

    .site-brand small {
        display: none;
    }

    .proof-card,
    .glass-card,
    .auth-card,
    .admin-card,
    .table-card,
    .checkout-product,
    .checkout-summary {
        padding: 22px;
    }

    .hero-section--immersive {
        padding-top: 44px;
    }

    .hero-command,
    .system-showcase,
    .process-card,
    .admin-console,
    .offer-card--textual,
    .cta-banner--wide {
        padding: 22px;
    }

    .fastpay-showcard,
    .fastpay-benefit-card,
    .fastpay-plan-card,
    .fastpay-structure__panel,
    .fastpay-faq-card,
    .fastpay-final-cta,
    .fastpay-workflow__step,
    .fastpay-metric-card {
        padding: 22px;
    }
}

.site-header {
    background: rgba(4, 7, 16, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    min-height: 94px;
}

.site-brand strong {
    font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
}

.site-nav a {
    font-weight: 600;
}

.apx-home {
    --apx-display: "Bricolage Grotesque", "Space Grotesk", sans-serif;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(84, 120, 255, 0.12), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(236, 77, 190, 0.1), transparent 22%),
        linear-gradient(180deg, #04060f 0%, #070a14 34%, #04070f 100%);
}

.apx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.92;
    pointer-events: none;
}

.apx-orb--left {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 120px;
    background: rgba(24, 91, 214, 0.26);
}

.apx-orb--right {
    width: 360px;
    height: 360px;
    right: -120px;
    top: 180px;
    background: rgba(173, 78, 255, 0.2);
}

.apx-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    padding: 92px 0 74px;
    background: transparent;
}

.apx-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(540px, 0.98fr);
    gap: 48px;
    align-items: center;
}

.apx-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.apx-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: #eff4fb;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apx-pill--ghost {
    color: #c5d0dc;
    background: rgba(255, 255, 255, 0.03);
}

.apx-copy h1 {
    margin: 0 0 22px;
    max-width: 10ch;
    font-family: var(--apx-display);
    font-size: clamp(3.7rem, 7vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.apx-copy p,
.apx-section-head p,
.apx-price-card p,
.apx-usecase-card p,
.apx-faq-card p,
.apx-final-shell p {
    margin: 0;
    color: #9ca9bd;
    font-size: 1.05rem;
    line-height: 1.85;
}

.apx-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.apx-stat-card,
.apx-feature-card,
.apx-price-card,
.apx-step-card,
.apx-admin-panel,
.apx-faq-card,
.apx-usecase-card,
.apx-final-shell {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.apx-stat-card {
    padding: 22px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(10, 14, 24, 0.96);
}

.apx-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--apx-display);
    font-size: 1.4rem;
}

.apx-stat-card span {
    color: var(--text-soft);
    line-height: 1.7;
}

.apx-brand-row,
.apx-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.apx-brand-row {
    margin-top: 24px;
}

.apx-brand-row span,
.apx-chip-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #eef3fa;
    font-size: 0.9rem;
}

.apx-stage {
    position: relative;
    min-height: 700px;
}

.apx-stage__tabs {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.apx-stage__tabs span,
.apx-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    color: var(--text-soft);
    font-weight: 700;
}

.apx-stage__tabs .is-active,
.apx-toggle .is-active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(109, 79, 255, 0.96), rgba(236, 77, 190, 0.94));
}

.apx-stage__canvas {
    position: absolute;
    inset: 64px 0 0;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(130, 89, 255, 0.16), transparent 26%),
        radial-gradient(circle at top left, rgba(36, 101, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(16, 21, 39, 0.98), rgba(7, 10, 20, 0.98));
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.apx-stage__canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
    pointer-events: none;
}

.apx-stage__signal {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #edf2fb;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.apx-stage__signal i {
    font-style: normal;
    color: #ffffff;
    font-size: 1rem;
}

.apx-stage-card,
.apx-note {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.apx-stage-card {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.apx-stage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.apx-stage-card--main {
    --apx-rotate: 10deg;
    width: 66%;
    top: 120px;
    right: 26px;
    background: linear-gradient(135deg, #081a35 0%, #0d3765 52%, #14607b 100%);
    transform: rotate(var(--apx-rotate));
    animation: apxFloat 8s ease-in-out infinite;
}

.apx-stage-card--alt {
    --apx-rotate: -8deg;
    width: 58%;
    left: 24px;
    bottom: 34px;
    background: linear-gradient(135deg, rgba(11, 15, 33, 0.98), rgba(39, 17, 76, 0.94));
    transform: rotate(var(--apx-rotate));
    animation: apxFloat 8.5s ease-in-out infinite;
}

.apx-stage-card h2,
.apx-stage-card h3,
.apx-feature-card h3,
.apx-price-card h3,
.apx-section-head h2,
.apx-admin-panel h3,
.apx-usecase-card h3,
.apx-faq-card h3,
.apx-final-shell h2 {
    margin: 0;
    font-family: var(--apx-display);
    line-height: 1;
}

.apx-stage-card h2 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.apx-stage-card h3 {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.apx-stage-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.apx-stage-card__top,
.apx-stage-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.apx-stage-card__label,
.apx-price-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apx-price-card__label--featured {
    background: rgba(255, 255, 255, 0.12);
}

.apx-stage-card__status {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
}

.apx-stage-card__status--blue {
    background: rgba(36, 101, 255, 0.22);
}

.apx-stage-card__list,
.apx-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.apx-stage-card__list li,
.apx-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.65;
}

.apx-stage-card__list li {
    color: rgba(255, 255, 255, 0.92);
}

.apx-stage-card__list li::before,
.apx-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #74f0aa;
    font-weight: 800;
}

.apx-stage-card__footer strong {
    font-family: var(--apx-display);
    font-size: 2rem;
}

.apx-stage-card__footer small {
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
    line-height: 1.6;
}

.apx-note {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 12, 23, 0.82);
    backdrop-filter: blur(18px);
}

.apx-note strong {
    font-size: 1rem;
}

.apx-note span {
    color: var(--text-soft);
    line-height: 1.6;
}

.apx-note--mascot {
    top: 26px;
    left: 26px;
    z-index: 2;
    width: 288px;
    grid-template-columns: 74px 1fr;
    align-items: center;
}

.apx-note--mascot img {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.apx-note--payment {
    top: 176px;
    left: 30px;
    width: 220px;
}

.apx-note--delivery {
    right: 20px;
    bottom: 22px;
    width: 224px;
}

.apx-feature-section {
    background: linear-gradient(180deg, rgba(5, 9, 18, 0.98), rgba(7, 10, 18, 0.98));
}

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

.apx-section-head--center {
    margin: 0 auto 30px;
    text-align: center;
}

.apx-section-head--light h2 {
    color: #f7fbff;
}

.apx-section-head h2 {
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.apx-card-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ebf1fb;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apx-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 22px;
}

.apx-feature-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 290px;
    padding: 30px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(10, 15, 24, 0.96);
}

.apx-feature-card--wide {
    min-height: 320px;
    background:
        radial-gradient(circle at top right, rgba(76, 101, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(10, 15, 24, 0.96);
}

.apx-feature-card h3,
.apx-admin-panel h3,
.apx-usecase-card h3,
.apx-faq-card h3 {
    margin-bottom: 2px;
    font-size: 1.55rem;
    line-height: 1.08;
}

.apx-pricing {
    background: linear-gradient(180deg, #050913 0%, #080a17 100%);
}

.apx-toggle {
    width: fit-content;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.apx-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.apx-price-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 720px;
    padding: 32px 30px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(15, 20, 32, 0.98);
}

.apx-price-card--featured {
    transform: scale(1.04);
    background:
        radial-gradient(circle at top center, rgba(158, 95, 255, 0.24), transparent 24%),
        radial-gradient(circle at bottom right, rgba(55, 127, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(59, 30, 132, 0.68), rgba(14, 15, 34, 0.98));
    border-color: rgba(166, 121, 255, 0.28);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 30px 68px rgba(45, 24, 92, 0.46);
}

.apx-price-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2ca8, #8b5cf6);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 32px rgba(139, 92, 246, 0.34);
}

.apx-price-card__head {
    display: grid;
    gap: 8px;
}

.apx-price-card__head small,
.apx-price-card__foot span {
    color: var(--text-soft);
    line-height: 1.75;
}

.apx-price-card h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.apx-price-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

.apx-price-card__price span {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.apx-price-card__price strong {
    font-family: var(--apx-display);
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 1;
}

.apx-price-card__price small {
    color: var(--text-soft);
}

.apx-price-card__save {
    color: #72ecad;
    font-weight: 700;
}

.apx-list li {
    color: #dce6f5;
}

.apx-price-card__foot {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.apx-flow {
    background: linear-gradient(180deg, rgba(4, 8, 18, 0.98), rgba(8, 11, 20, 1));
}

.apx-flow__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: 28px;
    align-items: start;
}

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

.apx-step-card {
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    line-height: 1.75;
}

.apx-admin-panel {
    display: grid;
    gap: 18px;
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(241, 195, 92, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(13, 18, 34, 0.98), rgba(15, 33, 47, 0.95));
}

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

.apx-admin-panel__stats div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.apx-admin-panel__stats strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--apx-display);
    font-size: 1.85rem;
}

.apx-admin-panel__stats small {
    color: var(--text-soft);
}

.apx-compare {
    background: linear-gradient(180deg, #050813 0%, #04070f 100%);
}

.apx-compare-shell {
    overflow-x: auto;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 24, 0.98);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.apx-compare-table {
    min-width: 980px;
}

.apx-compare-header,
.apx-compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.apx-compare-header > div,
.apx-compare-row > div {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.apx-compare-header > div:not(:first-child),
.apx-compare-row > div:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.apx-compare-header > div:first-child {
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apx-compare-header span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apx-compare-header strong {
    font-family: var(--apx-display);
    font-size: 1.28rem;
}

.apx-compare-row > div:first-child {
    color: #eef3fb;
    font-weight: 700;
}

.apx-compare-row > div:not(:first-child) {
    color: var(--text-soft);
    line-height: 1.7;
}

.apx-compare-header .is-featured,
.apx-compare-row .is-featured {
    background: rgba(111, 82, 255, 0.08);
}

.apx-usecases {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.98), rgba(3, 6, 12, 1));
}

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

.apx-usecase-card {
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
}

.apx-faq {
    background: linear-gradient(180deg, #04070f 0%, #070b15 100%);
}

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

.apx-faq-card {
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
}

.apx-final {
    padding-top: 12px;
}

.apx-final-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px;
    border-radius: 38px;
    background:
        radial-gradient(circle at right, rgba(112, 83, 255, 0.14), transparent 24%),
        radial-gradient(circle at left, rgba(236, 77, 190, 0.12), transparent 20%),
        linear-gradient(135deg, rgba(10, 16, 30, 0.98), rgba(14, 33, 51, 0.95));
}

.apx-final-shell h2 {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 13ch;
}

.apx-final-shell__actions {
    display: grid;
    gap: 14px;
    min-width: 320px;
}

.apx-final-shell__actions small {
    color: var(--text-soft);
    line-height: 1.7;
}

@keyframes apxFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--apx-rotate, 0deg));
    }
    50% {
        transform: translateY(-8px) rotate(var(--apx-rotate, 0deg));
    }
}

@media (max-width: 1200px) {
    .apx-hero__grid,
    .apx-flow__grid {
        grid-template-columns: 1fr;
    }

    .apx-stage {
        min-height: 640px;
    }

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

    .apx-feature-card--wide {
        grid-column: span 2;
    }

    .apx-price-grid {
        grid-template-columns: 1fr;
    }

    .apx-price-card--featured {
        transform: none;
    }

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

@media (max-width: 900px) {
    .apx-hero {
        padding-top: 56px;
    }

    .apx-copy h1 {
        max-width: none;
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .apx-stat-row,
    .apx-usecase-grid,
    .apx-faq-grid,
    .apx-admin-panel__stats,
    .apx-feature-grid {
        grid-template-columns: 1fr;
    }

    .apx-feature-card--wide {
        grid-column: auto;
    }

    .apx-stage {
        min-height: auto;
    }

    .apx-stage__tabs {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-bottom: 14px;
    }

    .apx-stage__canvas {
        position: relative;
        inset: auto;
        display: grid;
        gap: 16px;
        min-height: auto;
        padding: 20px;
    }

    .apx-stage__signal,
    .apx-stage-card,
    .apx-note {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        transform: none;
        animation: none;
    }

    .apx-note--mascot {
        grid-template-columns: 68px 1fr;
    }

    .apx-final-shell {
        flex-direction: column;
        align-items: stretch;
    }

    .apx-final-shell h2 {
        max-width: none;
    }

    .apx-final-shell__actions {
        min-width: 0;
    }
}

@media (max-width: 620px) {
    .apx-pill-row {
        gap: 8px;
    }

    .apx-pill {
        width: 100%;
    }

    .apx-stat-card,
    .apx-feature-card,
    .apx-price-card,
    .apx-step-card,
    .apx-admin-panel,
    .apx-faq-card,
    .apx-usecase-card,
    .apx-final-shell,
    .apx-stage-card,
    .apx-note {
        padding: 22px;
    }

    .apx-stage__canvas {
        padding: 18px;
        border-radius: 30px;
    }

    .apx-section-head h2,
    .apx-final-shell h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }
}
