@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/public/fonts/Poppins-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/public/fonts/Poppins-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/public/fonts/Poppins-Bold.woff2") format("woff2");
}

:root {
    --v2-bg: #070b16;
    --v2-bg-soft: #0f1729;
    --v2-surface: rgba(17, 25, 44, 0.72);
    --v2-surface-solid: #121b31;
    --v2-surface-2: #1a2440;
    --v2-border: rgba(255, 255, 255, 0.12);
    --v2-border-soft: rgba(255, 255, 255, 0.08);
    --v2-text: #e8eefc;
    --v2-text-soft: #a6b2cf;
    --v2-heading: #f6f9ff;
    --v2-primary: #3b82f6;
    --v2-secondary: #22d3ee;
    --v2-accent: #7c3aed;
    --v2-success: #10b981;
    --v2-radius-xs: 10px;
    --v2-radius-sm: 14px;
    --v2-radius-md: 18px;
    --v2-radius-lg: 24px;
    --v2-space-xs: 0.5rem;
    --v2-space-sm: 0.875rem;
    --v2-space-md: 1.25rem;
    --v2-space-lg: 2rem;
    --v2-space-xl: 3rem;
    --v2-shadow-soft: 0 10px 30px rgba(4, 10, 24, 0.28);
    --v2-shadow-strong: 0 22px 70px rgba(2, 8, 22, 0.5);
    --v2-gradient: linear-gradient(135deg, #3b82f6 0%, #22d3ee 45%, #7c3aed 100%);
    --v2-gradient-soft: linear-gradient(140deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.16) 45%, rgba(124, 58, 237, 0.16));
}

html,
body {
    background: radial-gradient(circle at 15% -10%, rgba(34, 211, 238, 0.14), transparent 45%),
                radial-gradient(circle at 85% -15%, rgba(124, 58, 237, 0.2), transparent 38%),
                var(--v2-bg);
    color: var(--v2-text);
    overflow-x: hidden;
    overflow-x: clip;
}

body.v2-site {
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.6;
    letter-spacing: -0.01em;
    min-height: 100vh;
}

body.v2-site::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.24;
}

h1,
h2,
h3,
h4,
h5,
h6,
.v2-heading {
    color: var(--v2-heading);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.125rem, 3.1vw, 3.5rem);
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.5rem);
    line-height: 1.16;
}

h3 {
    font-size: clamp(1.1rem, 1.45vw, 1.4rem);
    line-height: 1.22;
}

a {
    color: inherit;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

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

.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.72rem 1.2rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
    will-change: transform, box-shadow;
}

.v2-btn:focus-visible,
.nav-link:focus-visible,
.mega-link-item:focus-visible,
.v2-inline-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(34, 211, 238, 0.85);
    outline-offset: 2px;
}

.v2-btn--primary {
    color: #f8fbff;
    background: linear-gradient(128deg, #2563eb 0%, #22d3ee 52%, #4f46e5 100%);
    background-size: 180% 180%;
    box-shadow: 0 10px 28px rgba(32, 116, 255, 0.32);
}

.v2-btn--primary:hover {
    color: #fff;
    transform: translate3d(0, -2px, 0) scale(1.02);
    box-shadow: 0 16px 36px rgba(59, 130, 246, 0.42), 0 0 40px rgba(34, 211, 238, 0.28);
}

.v2-btn--ghost {
    border-color: rgba(167, 188, 238, 0.42);
    background: rgba(9, 14, 26, 0.52);
    color: #d7e3ff;
}

.v2-btn--ghost:hover {
    border-color: rgba(34, 211, 238, 0.72);
    color: #f6fbff;
    transform: translateY(-1px);
}

.v2-btn--light {
    background: #f8fbff;
    color: #0d1b35;
}

.v2-btn--block {
    width: 100%;
}

.v2-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #d7e8ff;
}

.v2-inline-link i {
    transition: transform 0.2s ease;
}

.v2-inline-link:hover i {
    transform: translateX(4px);
}

.free-products-hero,
.free-product-detail__hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: clamp(1.5rem, 3vw, 3rem);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 35%),
        linear-gradient(145deg, rgba(12, 18, 32, 0.92), rgba(14, 22, 40, 0.82));
    box-shadow: var(--v2-shadow-soft);
}

.free-products-hero__eyebrow,
.free-product-detail__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #7dd3fc;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.free-products-hero p,
.free-product-detail__lead {
    max-width: 760px;
    color: var(--v2-text-soft);
    font-size: 1.03rem;
}

.free-products-hero__stats,
.free-product-detail__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.free-products-hero__stats span,
.free-product-detail__stats div {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #d9e8ff;
}

.free-products-toolbar {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.free-products-search {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
}

.free-products-search__field {
    flex: 1 1 320px;
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 15, 28, 0.66);
}

.free-products-search__field i {
    color: #7dd3fc;
}

.free-products-search__field input {
    flex: 1 1 auto;
    background: transparent;
    border: 0;
    color: #f8fbff;
    min-width: 0;
}

.free-products-search__field input::placeholder {
    color: rgba(217, 232, 255, 0.56);
}

.free-products-search__field input:focus {
    outline: none;
}

.free-products-toolbar__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.free-product-card {
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(9, 14, 27, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 48px rgba(3, 10, 24, 0.28);
}

.free-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.free-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.free-product-card:hover .free-product-card__media img {
    transform: scale(1.04);
}

.free-product-card__price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(16, 185, 129, 0.38);
    color: #b9f7dd;
    font-size: 0.82rem;
    font-weight: 700;
}

.free-product-card__body {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
}

.free-product-card__meta,
.free-product-detail__eyebrow-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.free-product-card__category,
.free-product-detail__category,
.free-product-card__meta-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.2rem 0.72rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.free-product-card__category,
.free-product-detail__category {
    background: rgba(59, 130, 246, 0.14);
    color: #b8d5ff;
}

.free-product-card__meta-badge {
    background: rgba(245, 158, 11, 0.16);
    color: #f8d48a;
}

.free-product-card h2,
.free-product-card h3 {
    margin: 0;
    font-size: 1.24rem;
}

.free-product-card p {
    margin: 0;
    color: var(--v2-text-soft);
}

.free-product-card__tags,
.free-product-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.free-product-card__tags span,
.free-product-detail__tags span {
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dce8ff;
    font-size: 0.78rem;
}

.free-product-card__facts,
.free-product-tech {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0;
}

.free-product-card__facts div,
.free-product-tech div {
    padding: 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.free-product-card__facts dt,
.free-product-tech dt {
    margin: 0 0 0.28rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(217, 232, 255, 0.58);
}

.free-product-card__facts dd,
.free-product-tech dd {
    margin: 0;
    color: #f5f9ff;
    font-weight: 600;
}

.free-product-card__actions,
.free-product-detail__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.is-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.free-products-empty,
.free-products-cta,
.free-product-section,
.free-product-detail__download-card {
    border-radius: 28px;
    padding: clamp(1.25rem, 2vw, 2rem);
    background: rgba(10, 15, 28, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--v2-shadow-soft);
}

.free-products-empty {
    text-align: center;
}

.free-products-empty h2 {
    margin-bottom: 0.8rem;
}

.free-products-empty p {
    color: var(--v2-text-soft);
    margin-bottom: 1.25rem;
}

.free-products-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.free-products-cta__eyebrow,
.free-product-section__head span {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #7dd3fc;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.free-product-detail__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.free-product-detail__download-card h2,
.free-product-section__head h2 {
    margin-bottom: 0.7rem;
}

.free-product-detail__download-card p,
.free-product-license p {
    color: var(--v2-text-soft);
}

.free-product-detail__download-card ul {
    padding-left: 1.1rem;
    color: #dbe7fd;
}

.free-product-detail__download-badge {
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.34);
    color: #c9ffe8;
    font-weight: 700;
    font-size: 0.8rem;
}

.free-product-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.free-product-gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.free-product-richtext,
.free-product-license {
    color: #dbe7fd;
}

.free-product-richtext p:last-child,
.free-product-license p:last-child {
    margin-bottom: 0;
}

.free-product-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.free-product-pill {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.free-product-pill i {
    color: #34d399;
    margin-top: 0.2rem;
}

.free-product-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #dce8ff;
}

.free-product-list li + li {
    margin-top: 0.55rem;
}

.free-product-section--compact {
    height: 100%;
}

.free-product-section--sticky {
    position: sticky;
    top: 110px;
}

.free-product-stack h3,
.free-product-license h3 {
    font-size: 1rem;
    margin: 1rem 0 0.65rem;
}

.free-product-faq .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8eefc;
}

.free-product-faq .accordion-button {
    background: transparent;
    color: #f7fbff;
    box-shadow: none;
}

.free-product-faq .accordion-button:not(.collapsed) {
    background: rgba(59, 130, 246, 0.08);
}

@media (max-width: 991.98px) {
    .free-product-detail__hero-grid,
    .free-products-cta {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .free-product-section--sticky {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .free-product-card__facts,
    .free-product-tech,
    .free-product-pill-grid {
        grid-template-columns: 1fr;
    }

    .free-products-search {
        flex-direction: column;
        align-items: stretch;
    }

    .free-products-search__field {
        width: 100%;
    }
}

.v2-header {
    position: sticky;
    top: 0;
    isolation: isolate;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 16, 35, 0.75);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease, backdrop-filter 0.25s ease;
    z-index: 1400;
}

.v2-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, #4f7cff 35%, #00d4ff 65%, transparent 100%);
    opacity: 0.72;
}

.v2-header.is-scrolled,
.navbar.scrolled {
    background: rgba(10, 16, 35, 0.84) !important;
    border-color: rgba(171, 197, 244, 0.24);
    box-shadow: 0 14px 35px rgba(3, 8, 20, 0.38), 0 0 26px rgba(79, 124, 255, 0.16);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
}

.v2-navbar {
    min-height: 82px;
    padding-block: 0.62rem;
    transition: padding 0.22s ease, min-height 0.22s ease;
}

.v2-header.is-scrolled .v2-navbar,
.navbar.scrolled.v2-navbar {
    min-height: 64px;
    padding-block: 0.3rem;
}

.v2-navbar-inner {
    position: relative;
    gap: var(--v2-space-md);
}

.v2-brand {
    color: #f5f8ff !important;
    font-size: 1.65rem;
    font-weight: 800;
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.2s ease, filter 0.2s ease;
    will-change: transform;
}

.v2-brand::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -36%;
    width: 30%;
    height: 200%;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: translateX(-180%) skewX(-22deg);
}

.v2-brand:hover,
.v2-brand:focus-visible {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 0 18px rgba(79, 124, 255, 0.34));
}

.v2-brand:hover::after,
.v2-brand:focus-visible::after {
    animation: v2-logo-sweep 0.7s ease;
}

.v2-brand img {
    display: block;
    max-height: 38px;
    width: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.v2-brand:hover img,
.v2-brand:focus-visible img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.32));
}

.v2-nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
}

.v2-nav-list {
    gap: 0.3rem;
}

.v2-nav-list .nav-link {
    position: relative;
    color: var(--v2-text-soft);
    font-weight: 600;
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-nav-list .nav-link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.32rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f7cff, #00d4ff);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.v2-nav-list .nav-link::before {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: -5px;
    height: 7px;
    border-radius: 999px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(79, 124, 255, 0.8), rgba(0, 212, 255, 0.8));
    filter: blur(7px);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.v2-nav-list .nav-link:hover,
.v2-nav-list .nav-link[aria-expanded="true"],
.v2-nav-list .nav-link.fw-semibold {
    color: #f8fbff !important;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(190, 211, 255, 0.08);
}

.v2-nav-list .nav-link:hover::after,
.v2-nav-list .nav-link[aria-expanded="true"]::after,
.v2-nav-list .nav-link.fw-semibold::after {
    transform: scaleX(1);
}

.v2-nav-list .nav-link.fw-semibold::before,
.v2-nav-list .nav-link[aria-current="page"]::before {
    opacity: 0.9;
}

.v2-nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.v2-locale-switch .btn {
    border-color: rgba(181, 202, 244, 0.34);
    color: #d9e8ff;
    background: rgba(13, 20, 37, 0.74);
}

.v2-header .theme-toggle-btn {
    margin: 0;
    border-color: rgba(191, 207, 244, 0.26);
    color: #e8efff;
    background: rgba(22, 29, 51, 0.74);
}

.v2-header-cta {
    min-height: 42px;
    padding-inline: 1.1rem;
    border: 1px solid rgba(176, 218, 255, 0.34);
    background: linear-gradient(120deg, #4f7cff, #00d4ff);
    color: #f8fbff;
    box-shadow: 0 12px 28px rgba(79, 124, 255, 0.36);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.v2-header-cta:hover,
.v2-header-cta:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(79, 124, 255, 0.46), 0 0 40px rgba(0, 212, 255, 0.34);
}

@keyframes v2-logo-sweep {
    0% {
        opacity: 0;
        transform: translateX(-180%) skewX(-22deg);
    }
    20% {
        opacity: 0.78;
    }
    100% {
        opacity: 0;
        transform: translateX(340%) skewX(-22deg);
    }
}

.v2-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(191, 207, 244, 0.22);
    border-radius: 12px;
    background: rgba(17, 25, 44, 0.84);
    padding: 0.65rem;
    gap: 0.28rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.v2-menu-toggle span {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #e8efff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.v2-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.v2-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.v2-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.v2-header .mega-menu-panel {
    top: calc(100% + 14px);
    width: min(1120px, 94vw);
    z-index: 1500;
}

.v2-header .mega-menu-shell {
    border-radius: var(--v2-radius-lg);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(120% 100% at 0% 0%, rgba(59, 130, 246, 0.22), transparent 60%),
                radial-gradient(90% 120% at 100% 100%, rgba(124, 58, 237, 0.18), transparent 56%),
                rgba(9, 16, 32, 0.9);
    box-shadow: var(--v2-shadow-strong), 0 4px 14px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.v2-header .mega-menu-card-grid {
    gap: 0.9rem;
}

.v2-header .mega-menu-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    min-height: 112px;
}

.v2-header .mega-menu-card:hover,
.v2-header .mega-menu-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(2, 8, 26, 0.42);
    border-color: rgba(86, 200, 255, 0.38);
}

.v2-header .mega-menu-card-icon {
    background: rgba(56, 133, 255, 0.18);
    color: #cfe6ff;
}

.v2-header .mega-menu-main {
    gap: 1.1rem;
}

.v2-header .mega-column-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 0.55rem;
}

.v2-header .mega-link-item {
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 0 rgba(34, 211, 238, 0.2);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-header .mega-link-item::before {
    width: 3px;
    left: 0.5rem;
    border-radius: 10px;
}

.v2-header .mega-link-item:hover,
.v2-header .mega-link-item:focus-visible {
    transform: translateX(6px);
    color: #f8fbff;
    border-color: rgba(110, 202, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08), 0 12px 24px rgba(0, 0, 0, 0.18);
}

.v2-header .mega-menu-featured {
    display: grid;
    gap: 0.72rem;
    align-content: start;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.2), rgba(14, 165, 233, 0.14), rgba(11, 26, 52, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    padding: 0.95rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.v2-header .mega-link-item.is-active {
    transform: translateX(6px);
    color: #ffffff;
    border-color: rgba(86, 200, 255, 0.38);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.16), 0 12px 26px rgba(0, 0, 0, 0.24);
}

.v2-header .mega-link-item.is-active::before {
    height: 72%;
    opacity: 1;
}

.v2-header .mega-featured-hero-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.v2-header .mega-featured-hero {
    position: relative;
    display: block;
    width: 100%;
    height: 160px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    background: linear-gradient(145deg, #0b1f43, #0e325f);
}

.v2-header .mega-featured-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.v2-header .mega-featured-hero-link:hover .mega-featured-image,
.v2-header .mega-featured-hero-link:focus-visible .mega-featured-image {
    transform: scale(1.05);
}

.v2-header .mega-featured-image.is-hidden {
    opacity: 0;
}

.v2-header .mega-featured-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 15, 30, 0.06) 0%, rgba(8, 15, 30, 0.56) 75%, rgba(8, 15, 30, 0.82) 100%),
        linear-gradient(120deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.12) 48%, rgba(5, 12, 25, 0.62) 100%);
}

.v2-header .mega-featured-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 18% 15%, rgba(56, 189, 248, 0.3), transparent 45%),
        radial-gradient(circle at 80% 85%, rgba(59, 130, 246, 0.32), transparent 48%),
        linear-gradient(140deg, #0b1220, #10315c);
    transition: opacity 0.2s ease;
}

.v2-header .mega-featured-fallback i {
    font-size: 1.35rem;
    color: #e9f4ff;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(7, 14, 26, 0.52);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.v2-header .mega-featured-fallback.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.v2-header .mega-featured-title {
    margin: 0;
    line-height: 1.35;
}

.v2-header .mega-featured-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.v2-header .mega-featured-cta {
    justify-self: start;
    border-radius: 12px;
    border-color: rgba(110, 202, 255, 0.4);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
}

.v2-header .mega-featured-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.36rem;
}

.v2-header .mega-featured-trust li {
    position: relative;
    padding-left: 1rem;
    color: #b9d0f0;
    font-size: 0.79rem;
    line-height: 1.35;
}

.v2-header .mega-featured-trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #22d3ee, #3b82f6);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.46);
}

.v2-header .mega-menu-featured.is-switching .mega-featured-badge,
.v2-header .mega-menu-featured.is-switching .mega-featured-title,
.v2-header .mega-menu-featured.is-switching .mega-featured-text,
.v2-header .mega-menu-featured.is-switching .mega-featured-cta,
.v2-header .mega-menu-featured.is-switching .mega-featured-trust {
    opacity: 0.15;
    transform: translateY(4px);
}

.v2-header .mega-featured-badge,
.v2-header .mega-featured-title,
.v2-header .mega-featured-text,
.v2-header .mega-featured-cta,
.v2-header .mega-featured-trust {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.breadcrumb-nav {
    background: rgba(7, 11, 22, 0.72) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.breadcrumb,
.breadcrumb a,
.breadcrumb-item.active {
    color: #ffffff !important;
}

.v2-section,
.v2-cta-band {
    position: relative;
    z-index: 1;
}

.v2-section {
    padding-block: clamp(3.5rem, 7vw, 6.2rem);
}

.v2-section-head {
    margin-bottom: 2.2rem;
    text-align: center;
}

.v2-section-head--left {
    text-align: left;
}

.v2-section-head__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #7ed8ff;
    margin-bottom: 0.55rem;
}

.v2-section-head__title {
    margin: 0;
}

.v2-section-head__line {
    display: inline-block;
    width: 56px;
    height: 3px;
    margin-top: 0.9rem;
    border-radius: 99px;
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
}

.v2-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--v2-radius-md);
    background: var(--v2-surface);
    border: 1px solid var(--v2-border-soft);
    box-shadow: var(--v2-shadow-soft);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform, box-shadow;
}

.v2-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid transparent;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 211, 238, 0), rgba(124, 58, 237, 0.28)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0.7;
}

.v2-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(34, 211, 238, 0.36);
    box-shadow: 0 24px 50px rgba(2, 8, 22, 0.46), 0 0 32px rgba(59, 130, 246, 0.18);
}

.v2-card--glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.v2-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, rgba(8, 13, 26, 0.9), rgba(5, 9, 20, 0.98));
}

.v2-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.14;
}

.v2-footer .container {
    position: relative;
}

.v2-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: 1.6rem;
}

.v2-footer-brand p {
    color: var(--v2-text-soft);
    margin: 1rem 0;
    max-width: 32ch;
}

.v2-socials {
    display: flex;
    gap: 0.55rem;
}

.v2-social {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(169, 190, 239, 0.35);
    color: #dce8ff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.v2-social:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.75);
    background: rgba(34, 211, 238, 0.14);
    transform: translate3d(0, -2px, 0);
}

.v2-footer-links h6 {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.v2-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2-footer-links li {
    margin-bottom: 0.52rem;
}

.v2-footer-links a,
.v2-footer-links span {
    color: var(--v2-text-soft);
    text-decoration: none;
    font-size: 0.95rem;
}

.v2-footer-links a:hover {
    color: #e9f3ff;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

.v2-footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #9fb2d5;
}

.v2-footer-mini-links {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.v2-footer-mini-links a {
    color: #b5c7ea;
    text-decoration: none;
    font-size: 0.9rem;
}

.v2-footer-mini-links a:hover {
    color: #e8f2ff;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

.v2-footer {
    background:
        radial-gradient(circle at 12% -10%, rgba(59, 130, 246, 0.2), transparent 42%),
        radial-gradient(circle at 92% 110%, rgba(34, 211, 238, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(8, 13, 26, 0.95), rgba(5, 9, 20, 0.99));
}

.v2-footer-cta {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(166, 197, 244, 0.28);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(34, 211, 238, 0.2) 52%, rgba(8, 13, 26, 0.74));
    box-shadow: 0 24px 56px rgba(1, 8, 24, 0.48), 0 0 48px rgba(37, 99, 235, 0.2);
    padding: clamp(1.15rem, 2.4vw, 1.55rem);
    margin-bottom: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.v2-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 45%) var(--my, 38%), rgba(255, 255, 255, 0.25), transparent 48%);
    opacity: 0.48;
}

.v2-footer-cta__content {
    position: relative;
    z-index: 1;
    max-width: 58ch;
}

.v2-footer-cta__content h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2.4vw, 1.95rem);
    letter-spacing: -0.02em;
    color: #f4f9ff;
}

.v2-footer-cta__content p {
    margin: 0.42rem 0 0;
    color: rgba(238, 247, 255, 0.92);
}

.v2-footer-cta__btn {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(179, 214, 255, 0.4);
    background: linear-gradient(120deg, #2563eb, #22d3ee);
    color: #f8fbff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
}

.v2-footer-cta__btn:hover,
.v2-footer-cta__btn:focus-visible {
    color: #ffffff;
    border-color: rgba(219, 240, 255, 0.55);
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.45), 0 0 40px rgba(34, 211, 238, 0.35);
}

.v2-footer-brand__desc {
    margin: 0.95rem 0 0;
    color: #9fb4d6;
    line-height: 1.72;
    max-width: 44ch;
}

.v2-socials {
    margin-top: 1rem;
}

.v2-social {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border-color: rgba(169, 190, 239, 0.32);
    background: rgba(10, 17, 33, 0.58);
    box-shadow: 0 10px 24px rgba(1, 6, 20, 0.3);
}

.v2-social:hover,
.v2-social:focus-visible {
    transform: translate3d(0, -4px, 0) scale(1.03);
    border-color: rgba(34, 211, 238, 0.75);
    background: rgba(34, 211, 238, 0.16);
    box-shadow: 0 14px 28px rgba(1, 8, 24, 0.38), 0 0 24px rgba(34, 211, 238, 0.28);
}

.v2-social.is-disabled {
    opacity: 0.46;
    filter: grayscale(1);
    cursor: default;
    box-shadow: none;
}

.v2-social.is-disabled:hover,
.v2-social.is-disabled:focus-visible {
    transform: none;
    border-color: rgba(169, 190, 239, 0.32);
    background: rgba(10, 17, 33, 0.58);
}

.v2-footer-bottom {
    margin-top: 1.65rem;
    padding-top: 1.05rem;
}

.v2-footer-copy {
    display: grid;
    gap: 0.22rem;
}

.v2-footer-copy strong {
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    color: #f2f7ff;
}

.v2-footer-copy small {
    color: #9db2d5;
}

.v2-scroll-top {
    background: var(--v2-gradient);
    border: 0;
    box-shadow: 0 12px 20px rgba(34, 125, 255, 0.3);
}

@media (max-width: 1199.98px) {
    .v2-footer-top {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .v2-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991.98px) {
    .v2-navbar {
        min-height: 72px;
    }

    .v2-header.is-scrolled .v2-navbar,
    .navbar.scrolled.v2-navbar {
        min-height: 64px;
    }

    .v2-menu-toggle {
        display: inline-flex;
    }

    .v2-nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(92vw, 360px);
        height: 100dvh;
        padding: 5.25rem 1rem 1.25rem;
        background: rgba(8, 12, 24, 0.96);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.4);
        transform: translateX(108%);
        transition: transform 0.25s ease;
        z-index: 1410;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overscroll-behavior: contain;
    }

    .v2-nav-panel.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .v2-nav-list {
        width: 100%;
        gap: 0.2rem;
    }

    .v2-nav-list .nav-link {
        width: 100%;
    }

    .v2-nav-actions {
        justify-content: space-between;
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .v2-header .mega-menu-panel {
        position: static;
        width: 100%;
        top: auto;
        left: auto;
        transform: none;
        filter: none;
        margin-top: 0.35rem;
    }

    .v2-header .mega-nav-item.is-open > .mega-menu-panel {
        transform: none;
    }

    .v2-header .mega-menu-main,
    .v2-header .mega-menu-main.has-featured {
        grid-template-columns: 1fr;
    }

    .v2-header .mega-menu-featured {
        order: -1;
    }

    .v2-header .mega-featured-hero {
        height: 148px;
    }

    body.v2-menu-open {
        overflow: hidden;
    }

    .v2-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .v2-footer-top {
        grid-template-columns: 1fr;
    }

    .v2-footer-mini-links {
        flex-wrap: wrap;
    }

    .v2-footer-cta {
        padding: 1rem;
    }

    .v2-footer-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .v2-header .mega-menu-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-header .mega-menu-columns,
    .v2-header .mega-menu-main.has-featured .mega-menu-columns {
        grid-template-columns: 1fr;
    }

    .v2-header .mega-featured-hero {
        height: 138px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-header .mega-menu-card,
    .v2-header .mega-link-item,
    .v2-header .mega-featured-image,
    .v2-header .mega-featured-badge,
    .v2-header .mega-featured-title,
    .v2-header .mega-featured-text,
    .v2-header .mega-featured-cta,
    .v2-header .mega-featured-trust {
        transition: none !important;
        animation: none !important;
    }
}

.service-saas-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(3.8rem, 3vw, 5.8rem) 0 clamp(2.6rem, 5.5vw, 4.2rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(120% 95% at 5% 0%, rgba(14, 165, 233, 0.24), transparent 52%),
        radial-gradient(90% 110% at 95% 10%, rgba(37, 99, 235, 0.26), transparent 48%),
        #0b1220;
}

.service-hero-matrix-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.95;
    pointer-events: none;
}

.service-hero-matrix-shadow {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, 0.85);
    pointer-events: none;
}

.service-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0) 0%, rgba(11, 18, 32, 0.92) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero-headline {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    text-align: center;
}

.service-hero-copy {
    max-width: min(1120px, 100%);
    margin-inline: auto;
    text-align: center;
}

.service-hero-eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #89d3ff;
}

.service-hero-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border: 1px solid rgba(120, 186, 255, 0.45);
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.3), rgba(14, 165, 233, 0.14));
    color: #edf6ff;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(2, 8, 22, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.service-hero-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.service-hero-title {
    margin: 0 auto;
    font-size: clamp(2rem, 3.3vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #f7fbff;
    max-width: min(1080px, 100%);
    text-align: center;
}

.service-hero-subtitle {
    margin: 1rem auto 0;
    max-width: min(1080px, 100%);
    color: rgba(228, 239, 255, 0.92);
    font-size: clamp(1rem, 1.2vw, 1.16rem);
    line-height: 1.8;
    text-align: center;
    text-wrap: balance;
}

.service-hero-badge-list {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.26rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(159, 214, 255, 0.3);
    background: rgba(20, 35, 65, 0.62);
    color: #dff1ff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.service-hero-actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.service-hero-btn {
    min-height: 48px;
    padding: 0.65rem 1.2rem;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-hero-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.35);
}

.service-hero-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.42);
}

.service-hero-btn--secondary {
    color: #d6e9ff;
    border-color: rgba(169, 205, 255, 0.45);
    background: rgba(13, 23, 43, 0.68);
}

.service-hero-btn--secondary:hover {
    color: #f3f9ff;
    border-color: rgba(37, 99, 235, 0.75);
    background: rgba(16, 29, 56, 0.88);
    transform: translateY(-2px) scale(1.02);
}

.service-hero-meta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.service-hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.2rem 0.72rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f6fbff;
    border: 1px solid rgba(145, 197, 255, 0.34);
    background: rgba(59, 130, 246, 0.22);
}

.service-hero-chip.is-soft {
    background: rgba(34, 211, 238, 0.16);
    border-color: rgba(121, 231, 255, 0.3);
}

.service-hero-chip.is-outline {
    background: rgba(9, 14, 28, 0.62);
    border-color: rgba(255, 255, 255, 0.2);
    color: #d9e7ff;
}

.service-hero-kpi-grid {
    margin-top: 2.2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-hero-kpi {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 1.2rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(145deg, #0f172a, #0b1220);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 38px rgba(2, 8, 22, 0.42);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-hero-kpi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
}

.service-hero-kpi:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 40px rgba(37, 99, 235, 0.24);
}

.service-hero-kpi span {
    display: block;
    margin-bottom: 0.46rem;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8ea5cb;
}

.service-hero-kpi strong {
    display: block;
    color: #edf5ff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.38;
}

.service-section {
    position: relative;
    padding: 100px 0;
}

.service-section--blend-a {
    background: #0b1220;
}

.service-layout {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
    align-items: start;
}

.service-main-column {
    display: grid;
    gap: 0;
}

.service-main-column > .service-block {
    margin-bottom: 32px;
}

.service-main-column > .service-block + .service-block {
    margin-top: 72px;
}

.service-main-column > .service-block:first-child {
    margin-top: 0;
}

.service-side-column {
    position: relative;
}

.service-block,
.service-tech-card,
.service-cta-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(2, 8, 22, 0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-block:hover,
.service-tech-card:hover,
.service-cta-card:hover {
    transform: translateY(-4px);
}

.service-block {
    padding: 1.5rem;
}

.service-block--media {
    background: linear-gradient(135deg, #0b1220, #10203b);
}

.service-block--content {
    background: #0b1220;
}

.service-block--features {
    background: linear-gradient(135deg, #0b1220, #0f1e35);
}

.service-block--timeline {
    background: #0f172a;
}

.service-feature-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(176, 202, 245, 0.22);
    background: rgba(8, 12, 24, 0.72);
}

.service-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-block-head {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.service-block-kicker {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8bd9ff;
}

.service-block-title {
    margin: 0;
    font-size: clamp(1.34rem, 1.95vw, 1.88rem);
    color: #f5f9ff;
    font-weight: 750;
    line-height: 1.24;
}

.service-empty-text {
    color: #aec1e2;
}

.service-rich-content {
    color: #c3d3ef;
    max-width: 100%;
    line-height: 1.9;
    font-size: 1.03rem;
    letter-spacing: 0.003em;
}

.service-article-wrapper {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(16, 28, 52, 0.96), rgba(11, 20, 38, 0.97));
    border: 1px solid rgba(59, 190, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-article-wrapper::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 170px;
    background: radial-gradient(circle at 0 0, rgba(59, 190, 255, 0.16), rgba(59, 190, 255, 0) 68%);
    pointer-events: none;
    z-index: 0;
}

.service-article-wrapper > * {
    position: relative;
    z-index: 1;
}

.service-article-wrapper .service-rich-content > :first-child {
    margin-top: 0;
}

.service-article-wrapper .service-rich-content > p:first-of-type {
    margin-bottom: 1.4rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(59, 190, 255, 0.14);
    background: rgba(59, 190, 255, 0.06);
    color: #dbe9ff;
    font-size: 1.08rem;
    line-height: 1.92;
}

.service-article-wrapper .service-rich-content h2 {
    position: relative;
    font-size: 30px;
    font-weight: 650;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.service-article-wrapper .service-rich-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3BBEFF, transparent);
}

.service-article-wrapper .service-rich-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 1.36rem;
    font-weight: 650;
    color: #eaf3ff;
    padding-left: 12px;
    border-left: 2px solid rgba(59, 190, 255, 0.45);
}

.service-article-wrapper .service-rich-content h4 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1.08rem;
    font-weight: 640;
    color: #d8e9ff;
}

.service-rich-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.72rem;
}

.service-rich-content .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(59, 190, 255, 0.05);
    border: 1px solid rgba(59, 190, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: 0.2s ease;
}

.service-rich-content .feature-list li::before {
    content: "";
    width: 8px;
    min-width: 8px;
    height: 8px;
    margin-top: 0.57rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3BBEFF, #2563eb);
    box-shadow: 0 0 0 3px rgba(59, 190, 255, 0.14);
}

.service-rich-content .feature-list li:hover {
    border-color: rgba(59, 190, 255, 0.3);
    transform: translateX(4px);
}

.service-rich-content .faq-item {
    border-radius: 14px;
    border: 1px solid rgba(130, 176, 248, 0.14);
    background: rgba(10, 19, 36, 0.68);
    padding: 8px;
}

.service-rich-content .faq-item + .faq-item {
    margin-top: 0.72rem;
}

.service-rich-content .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    width: 100%;
    border: 1px solid rgba(130, 176, 248, 0.2);
    border-radius: 12px;
    background: rgba(13, 24, 45, 0.86);
    color: #eaf2ff;
    text-align: left;
    font-weight: 600;
    padding: 14px 16px;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.service-rich-content .faq-question::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(130, 176, 248, 0.35);
    color: #a9dfff;
    font-size: 0.95rem;
    font-weight: 700;
}

.service-rich-content .faq-item.is-open .faq-question {
    border-color: rgba(59, 190, 255, 0.46);
    background: rgba(14, 30, 56, 0.92);
}

.service-rich-content .faq-item.is-open .faq-question::after {
    content: "-";
}

.service-rich-content .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 200ms ease, opacity 200ms ease, transform 200ms ease;
    margin-top: 0;
    padding: 0 8px;
}

.service-rich-content .faq-item.is-open .faq-answer {
    max-height: 420px;
    opacity: 1;
    margin-top: 10px;
    transform: translateY(0);
}

.service-rich-content .faq-answer > *:first-child {
    margin-top: 0;
}

.service-rich-content .faq-answer > *:last-child {
    margin-bottom: 0;
}

.service-rich-content :is(p, ul, ol, blockquote) {
    margin-bottom: 1.2rem;
}

.service-rich-content :is(h2, h3, h4) {
    color: #f0f6ff;
    margin-top: 1.6rem;
    margin-bottom: 0.9rem;
}

.service-rich-content :is(ul:not(.feature-list), ol) {
    padding-left: 1.2rem;
}

.service-rich-content :is(ul:not(.feature-list), ol) li {
    margin-bottom: 0.52rem;
}

.service-rich-content a {
    color: #85deff;
    text-decoration: none;
    background-image: linear-gradient(90deg, rgba(59, 190, 255, 0.9), rgba(59, 190, 255, 0.12));
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 0 100%;
    transition: color 0.2s ease, background-size 0.2s ease;
}

.service-rich-content a:hover {
    color: #c8f1ff;
    background-size: 100% 1px;
}

.service-rich-content img,
.service-rich-content iframe {
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(121, 167, 238, 0.22);
    background: rgba(7, 12, 24, 0.55);
    box-shadow: 0 14px 34px rgba(2, 8, 22, 0.28);
}

.service-rich-content blockquote {
    margin: 1.5rem 0;
    padding: 1.05rem 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(59, 190, 255, 0.18);
    border-left: 3px solid #3BBEFF;
    background: rgba(59, 190, 255, 0.07);
    color: #d6e8ff;
}

.service-rich-content hr {
    border: 0;
    height: 1px;
    margin: 2rem 0;
    background: linear-gradient(90deg, rgba(59, 190, 255, 0), rgba(59, 190, 255, 0.44), rgba(59, 190, 255, 0));
}

.service-rich-content pre {
    margin: 1.15rem 0 1.35rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(130, 176, 248, 0.2);
    background: rgba(7, 14, 28, 0.92);
    color: #d9e7ff;
    overflow: auto;
}

.service-rich-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.89em;
    padding: 0.15rem 0.38rem;
    border-radius: 8px;
    background: rgba(59, 190, 255, 0.12);
    color: #e8f7ff;
}

.service-rich-content pre code {
    padding: 0;
    background: transparent;
}

.service-rich-content table {
    width: 100%;
    margin: 1.2rem 0 1.4rem;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(128, 175, 244, 0.2);
    border-radius: 12px;
}

.service-rich-content th,
.service-rich-content td {
    padding: 0.72rem 0.8rem;
    border-bottom: 1px solid rgba(128, 175, 244, 0.16);
    text-align: left;
}

.service-rich-content th {
    background: rgba(59, 190, 255, 0.1);
    color: #e3f3ff;
    font-weight: 600;
}

.service-rich-content tr:last-child td {
    border-bottom: 0;
}

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

.service-feature-card {
    position: relative;
    min-height: 192px;
    border-radius: 18px;
    padding: 1.4rem 1.25rem;
    border: 1px solid rgba(178, 206, 248, 0.16);
    background: linear-gradient(165deg, rgba(17, 27, 47, 0.92), rgba(9, 14, 28, 0.9));
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
}

.service-feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.service-feature-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 0.95rem;
    border: 1px solid rgba(151, 197, 255, 0.25);
    background: rgba(59, 130, 246, 0.16);
    color: #d9ecff;
    z-index: 1;
}

.service-feature-card__icon::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.45) 0%, rgba(37, 99, 235, 0) 72%);
    filter: blur(10px);
    z-index: -1;
}

.service-feature-card h3 {
    margin: 0 0 0.56rem;
    font-size: 1.06rem;
    color: #f3f8ff;
}

.service-feature-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #b6c8e6;
}

.service-timeline {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.service-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 12px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.86), rgba(37, 99, 235, 0.24));
    box-shadow: 0 0 14px rgba(14, 165, 233, 0.4);
}

.service-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: start;
}

.service-timeline-dot {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(123, 220, 255, 0.45);
    background: linear-gradient(145deg, #2563eb 0%, #0ea5e9 100%);
    color: #f4fbff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.service-timeline-content h3 {
    margin: 0;
    font-size: 1.04rem;
    color: #f2f8ff;
}

.service-timeline-content p {
    margin: 0.4rem 0 0;
    color: #b8cbe8;
    font-size: 0.95rem;
    line-height: 1.72;
}

.service-timeline-result {
    margin-top: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(118, 225, 255, 0.3);
    background: linear-gradient(135deg, rgba(15, 32, 62, 0.96), rgba(13, 26, 49, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 0.95rem 1rem;
}

.service-timeline-result p {
    margin: 0;
    color: #ddf4ff;
    font-size: 0.94rem;
    line-height: 1.8;
}

.service-timeline-result p + p {
    margin-top: 0.4rem;
}

.service-timeline-result i {
    margin-right: 0.45rem;
    color: #67e8f9;
}

.service-sticky-stack {
    position: static;
    display: grid;
    gap: 1.1rem;
}

.service-tech-card,
.service-cta-card {
    padding: 1.2rem;
}

.service-tech-card {
    position: sticky;
    top: 120px;
    align-self: start;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(11, 18, 32, 0.94));
}

.service-tech-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.service-tech-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.64rem 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(182, 206, 247, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.service-tech-list span:first-child {
    color: #9eb4d8;
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-tech-list span:last-child {
    color: #e9f3ff;
    font-size: 0.93rem;
    font-weight: 600;
    text-align: right;
}

.service-cta-card {
    background: linear-gradient(145deg, #2563eb 0%, #0ea5e9 100%);
    border-color: rgba(125, 216, 255, 0.4);
    box-shadow: 0 20px 44px rgba(14, 165, 233, 0.22);
}

.service-cta-card:hover {
    box-shadow: 0 26px 48px rgba(14, 165, 233, 0.3);
}

.service-cta-kicker {
    display: inline-flex;
    margin-bottom: 0.58rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(236, 248, 255, 0.92);
}

.service-cta-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #f9fcff;
    font-weight: 750;
}

.service-cta-card p {
    margin: 0.6rem 0 1rem;
    color: rgba(233, 246, 255, 0.95);
    line-height: 1.7;
}

.service-cta-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #0d1d37;
    background: #f8fbff;
    box-shadow: 0 12px 24px rgba(7, 13, 27, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 30px rgba(7, 13, 27, 0.35);
}

.service-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 0.9rem;
    color: #f3fbff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.service-cta-link:hover {
    color: #fff;
    opacity: 0.88;
}

@supports (animation-timeline: view()) {
    [data-service-reveal] {
        opacity: 0;
        transform: translateY(24px);
        animation: serviceReveal 0.75s ease forwards;
        animation-timeline: view();
        animation-range: entry 12% cover 32%;
    }
}

@keyframes serviceReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .service-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    }
}

@media (max-width: 991.98px) {
    .service-saas-hero {
        padding: 3.4rem 0 2.9rem;
    }

    .service-hero-headline {
        flex-direction: column;
    }

    .service-hero-icon {
        width: 54px;
        height: 54px;
    }

    .service-hero-actions {
        width: 100%;
    }

    .service-hero-btn {
        flex: 1 1 210px;
    }

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

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sticky-stack {
        position: static;
    }

    .service-tech-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .service-section {
        padding: 74px 0;
    }

    .service-hero-title {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
    }

    .service-hero-badge-list {
        gap: 0.5rem;
    }

    .service-hero-kpi-grid {
        grid-template-columns: 1fr;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-block,
    .service-tech-card,
    .service-cta-card {
        border-radius: 18px;
        padding: 1.1rem;
    }

    .service-article-wrapper {
        padding: 24px;
    }

    .service-article-wrapper .service-rich-content > p:first-of-type {
        font-size: 1rem;
        padding: 0.82rem 0.92rem;
    }

    .service-article-wrapper .service-rich-content h2 {
        font-size: 24px;
    }

    .service-article-wrapper .service-rich-content h3 {
        font-size: 1.18rem;
    }

    .service-rich-content pre {
        padding: 0.86rem 0.92rem;
    }

    .service-rich-content .faq-item.is-open .faq-answer {
        max-height: 620px;
    }
}

/* Auth Design System */
.auth-wrapper {
    max-width: 1120px;
}

.auth-header {
    margin-bottom: 1.35rem;
}

.auth-header h1 {
    margin: 0 0 0.55rem;
}

.auth-header h2 {
    margin: 0 0 0.55rem;
}

.auth-header p {
    margin: 0 auto;
    max-width: 72ch;
    color: var(--v2-text-soft);
    font-size: 0.98rem;
    line-height: 1.72;
}

.auth-header--left p {
    margin: 0;
    max-width: none;
}

.auth-header--compact p {
    font-size: 0.92rem;
}

.auth-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(167, 196, 245, 0.24);
    background: linear-gradient(145deg, rgba(14, 23, 42, 0.86), rgba(8, 14, 27, 0.74));
    box-shadow: 0 18px 42px rgba(2, 8, 22, 0.34);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(130deg, rgba(59, 130, 246, 0.34), rgba(34, 211, 238, 0.2), rgba(124, 58, 237, 0.24)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.58;
}

.auth-card:hover {
    border-color: rgba(125, 211, 252, 0.38);
    box-shadow: 0 22px 54px rgba(12, 40, 94, 0.34);
    transform: translateY(-1px);
}

.auth-card .card-body {
    padding: clamp(1rem, 2.4vw, 1.45rem);
}

.auth-form {
    width: 100%;
}

.auth-form-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.auth-form-actions .btn-link {
    margin-left: auto;
    text-decoration: none;
}

.auth-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.95rem;
}

.auth-wrapper .form-group:last-child {
    margin-bottom: 0;
}

.auth-wrapper .form-group .form-label {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #aac0e4;
}

.auth-wrapper .auth-input,
.auth-wrapper .password-wrapper {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 0.86rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8faddf;
    font-size: 0.92rem;
    pointer-events: none;
    z-index: 2;
}

.auth-card .form-control {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(177, 202, 247, 0.2);
    background: rgba(10, 17, 33, 0.75);
    color: #ecf4ff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-card .form-control::placeholder {
    color: #7f97bf;
}

.auth-wrapper .auth-input .form-control,
.auth-wrapper .password-wrapper .form-control {
    padding-left: 2.5rem;
}

.auth-wrapper .password-wrapper .form-control {
    padding-right: 2.8rem;
}

.auth-card .form-control:focus {
    border-color: rgba(125, 211, 252, 0.75);
    background: rgba(11, 21, 41, 0.9);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22), 0 10px 28px rgba(2, 8, 22, 0.26);
}

.auth-wrapper .toggle-pass {
    position: absolute;
    right: 0.52rem;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #99b5e4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.auth-wrapper .toggle-pass:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.15);
}

.auth-wrapper .toggle-pass:focus-visible {
    outline: 2px solid rgba(34, 211, 238, 0.85);
    outline-offset: 2px;
}

.auth-btn-primary {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(167, 188, 238, 0.36);
    background: var(--v2-gradient);
    color: #fff;
    font-weight: 700;
    padding: 0.7rem 1.08rem;
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.auth-btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(59, 130, 246, 0.34);
}

.auth-btn-primary:focus-visible {
    outline: 2px solid rgba(125, 211, 252, 0.9);
    outline-offset: 2px;
}

.auth-wrapper .password-strength {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.35rem;
}

.auth-wrapper .password-strength__bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.25);
    overflow: hidden;
    position: relative;
}

.auth-wrapper .password-strength__bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    border-radius: inherit;
    background: #ef4444;
    transition: width 0.22s ease, background 0.22s ease;
}

.auth-wrapper .password-strength__label {
    font-size: 0.76rem;
    color: #9db7dd;
}

.auth-wrapper .password-strength[data-level="medium"] .password-strength__bar::after {
    width: 62%;
    background: #f59e0b;
}

.auth-wrapper .password-strength[data-level="strong"] .password-strength__bar::after {
    width: 100%;
    background: #10b981;
}

.auth-wrapper .auth-feedback {
    min-height: 1rem;
    font-size: 0.76rem;
    margin-top: 0.2rem;
    color: #9bb5dc;
}

.auth-wrapper .auth-feedback.is-valid {
    color: #34d399;
}

.auth-wrapper .auth-feedback.is-invalid {
    color: #f87171;
}

.auth-wrapper .match-indicator {
    font-weight: 600;
}

.auth-trust {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-trust__item {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(160, 186, 233, 0.26);
    background: rgba(11, 19, 35, 0.72);
    color: #ccdcf9;
    display: flex;
    align-items: center;
    gap: 0.48rem;
    padding: 0.56rem 0.76rem;
    font-size: 0.88rem;
    line-height: 1.4;
}

.auth-trust__item i {
    color: #34d399;
}

.auth-menu {
    gap: 0.4rem;
    background: transparent;
}

.auth-menu .list-group-item {
    border-radius: 12px !important;
    border: 1px solid rgba(166, 190, 236, 0.28);
    background: rgba(10, 17, 33, 0.72);
    color: #d7e6ff;
    margin-bottom: 0.35rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.auth-menu .list-group-item:hover {
    border-color: rgba(34, 211, 238, 0.72);
    background: rgba(20, 34, 62, 0.88);
    color: #fff;
}

.auth-menu .list-group-item.active {
    border-color: transparent;
    background: var(--v2-gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.28);
}

.auth-stat {
    border-radius: 14px;
    border: 1px solid rgba(163, 189, 232, 0.24);
    background: rgba(9, 16, 31, 0.62);
    padding: 0.9rem;
    min-height: 100%;
}

.auth-stat span {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9db7dd;
    margin-bottom: 0.34rem;
}

.auth-stat strong {
    display: block;
    color: #f4f9ff;
    font-size: 1.03rem;
    word-break: break-word;
}

[data-bs-theme="light"] .auth-card {
    border-color: rgba(148, 163, 184, 0.26);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 255, 0.92));
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

[data-bs-theme="light"] .auth-wrapper .form-group .form-label {
    color: #3f5678;
}

[data-bs-theme="light"] .auth-card .form-control {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(148, 163, 184, 0.3);
    color: #0f172a;
}

[data-bs-theme="light"] .auth-card .form-control::placeholder {
    color: #64748b;
}

[data-bs-theme="light"] .auth-input-icon,
[data-bs-theme="light"] .auth-wrapper .toggle-pass {
    color: #4b6488;
}

[data-bs-theme="light"] .auth-form-actions .btn-link {
    color: #1d4ed8;
}

[data-bs-theme="light"] .auth-trust__item {
    border-color: rgba(148, 163, 184, 0.32);
    background: rgba(248, 250, 255, 0.95);
    color: #1e293b;
}

[data-bs-theme="light"] .auth-menu .list-group-item {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
}

[data-bs-theme="light"] .auth-stat {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.95);
}

[data-bs-theme="light"] .auth-stat span {
    color: #64748b;
}

[data-bs-theme="light"] .auth-stat strong {
    color: #0f172a;
}

@media (max-width: 991.98px) {
    .auth-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .auth-header {
        text-align: left !important;
    }

    .auth-card {
        border-radius: 16px;
    }

    .auth-trust {
        grid-template-columns: 1fr;
    }

    .auth-btn-primary,
    .auth-card .btn {
        width: 100%;
        justify-content: center;
    }

    .auth-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-form-actions .btn-link {
        margin-left: 0;
        text-align: center;
    }

    .auth-card .btn-link {
        margin-top: 0.1rem;
        text-align: center;
    }
}

/* Profile Helper Blocks */









.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    width: 100%;
}

.profile-main {
    display: grid;
    gap: 0.9rem;
}

.profile-summary {
    width: 100%;
}


.profile-field {
    display: grid;
    gap: 0.35rem;
}

.profile-field label {
    color: #9fb7dc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.profile-field p {
    margin: 0;
    color: #a7bddf;
}

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

.profile-summary h2 {
    margin: 0 0 0.7rem;
    color: #eaf4ff;
    font-size: 1.1rem;
}

.profile-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.profile-summary-item {
    border: 1px solid rgba(173, 198, 241, 0.18);
    border-radius: 12px;
    background: rgba(8, 14, 28, 0.52);
    padding: 0.7rem;
}

.profile-summary-item span {
    display: block;
    color: #9fb7dc;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.35rem;
}

.profile-summary-item strong {
    color: #ecf6ff;
    font-size: 1.05rem;
}

.profile-summary-item--wide {
    grid-column: 1 / -1;
}





.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 34px;
    padding: 0 0.7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.status-badge.paid {
    color: #defcef;
    border-color: rgba(52, 211, 153, 0.48);
    background: linear-gradient(120deg, rgba(5, 150, 105, 0.78), rgba(16, 185, 129, 0.66));
}

.status-badge.failed {
    color: #ffe5ea;
    border-color: rgba(251, 113, 133, 0.45);
    background: rgba(251, 113, 133, 0.2);
}

.status-badge.pending {
    color: #fef3c7;
    border-color: rgba(251, 191, 36, 0.45);
    background: rgba(251, 191, 36, 0.18);
}

.action-btn-glow,
.action-btn-secondary {
    border: 0;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn-glow {
    color: #04131f;
    background: linear-gradient(120deg, #22d3ee, #3b82f6);
    box-shadow: 0 14px 26px rgba(34, 211, 238, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(34, 211, 238, 0.3);
}

.action-btn-secondary {
    color: #d8e7ff;
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.32);
}


.download-token-row {
    margin-top: 0.8rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(173, 198, 241, 0.12);
}

.token-info-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 0 0.72rem;
    font-size: 0.78rem;
    color: #c6daf7;
    background: rgba(148, 163, 184, 0.16);
}

.stat-box h2 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: #e5f2ff;
}

.stat-box p {
    margin: 0;
    color: #a8bddf;
}
















.recovery-code-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.recovery-code-wrap code {
    border: 1px solid rgba(173, 198, 241, 0.3);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    background: rgba(148, 163, 184, 0.14);
    color: #dbeafe;
}

.step-indicator {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.step {
    min-height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #9cb4d8;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 0 0.72rem;
}

.step.active {
    color: #e9faff;
    border-color: rgba(34, 211, 238, 0.6);
    background: rgba(34, 211, 238, 0.16);
}


@media (max-width: 991.98px) {

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-summary-grid {
        grid-template-columns: 1fr;
    }





}

/* Shared premium SaaS layer for list pages (services/blog and similar) */
.saas-page {
    position: relative;
    overflow: hidden;
}

.saas-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 12%, rgba(59, 130, 246, 0.22), transparent 42%),
        radial-gradient(circle at 86% 6%, rgba(34, 211, 238, 0.2), transparent 38%),
        radial-gradient(circle at 72% 88%, rgba(79, 70, 229, 0.18), transparent 44%);
    z-index: 0;
}

.saas-page .container {
    position: relative;
    z-index: 1;
}

.saas-page__hero {
    position: relative;
    border-radius: 22px;
    margin-bottom: 1.4rem;
    isolation: isolate;
}

.saas-page__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image:
        linear-gradient(rgba(168, 193, 240, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 193, 240, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.9), transparent 88%);
    opacity: 0.36;
    pointer-events: none;
    z-index: -1;
}

.saas-page__hero::after {
    content: "";
    position: absolute;
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    border-radius: 50%;
    right: -8%;
    top: -25%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.42), rgba(56, 189, 248, 0));
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

.saas-page__hero-glass {
    position: relative;
    border-radius: inherit;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(186, 206, 248, 0.2);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        rgba(12, 20, 38, 0.72);
    box-shadow: 0 24px 54px rgba(2, 8, 22, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.saas-page__eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #9fd7ff;
}

.saas-page__title {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #f8fbff;
}

.saas-page__subtitle {
    margin: 0.95rem 0 0;
    color: rgba(216, 230, 250, 0.9);
    max-width: 64ch;
    line-height: 1.8;
}

.saas-inline-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.42rem;
    margin-top: 1rem;
    border: 1px solid rgba(162, 190, 241, 0.28);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    background: rgba(13, 24, 45, 0.58);
}

.saas-inline-stat span {
    color: #f3f8ff;
    font-size: 0.98rem;
    font-weight: 700;
}

.saas-inline-stat small {
    color: #a9c1e6;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.saas-toolbar {
    border: 1px solid rgba(179, 201, 244, 0.18);
    border-radius: 16px;
    background: rgba(12, 20, 38, 0.62);
    box-shadow: 0 14px 36px rgba(2, 8, 22, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.85rem;
    margin-bottom: 1rem;
}

.saas-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.saas-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(167, 188, 238, 0.36);
    background: rgba(10, 16, 30, 0.56);
    color: #d5e6ff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.saas-chip:hover,
.saas-chip:focus-visible {
    color: #f7fbff;
    border-color: rgba(34, 211, 238, 0.66);
    background: rgba(34, 211, 238, 0.16);
    transform: translate3d(0, -2px, 0);
}

.saas-chip.is-active {
    border-color: rgba(59, 130, 246, 0.62);
    background: rgba(59, 130, 246, 0.2);
    color: #f5faff;
}

.saas-search-group {
    align-items: stretch;
}

.saas-search-input.form-control {
    min-height: 44px;
    border-radius: 12px 0 0 12px;
    border: 1px solid rgba(175, 200, 246, 0.24);
    background: rgba(8, 14, 28, 0.74);
    color: #e9f3ff;
}

.saas-search-input.form-control:focus {
    border-color: rgba(34, 211, 238, 0.62);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16);
    background: rgba(10, 18, 34, 0.9);
    color: #f5faff;
}

.saas-search-btn {
    border-radius: 0 12px 12px 0;
    min-height: 44px;
    padding-inline: 1rem;
}

.saas-grid-card {
    border-radius: 18px;
    border: 1px solid rgba(186, 209, 247, 0.18);
    background: rgba(11, 19, 36, 0.78);
    box-shadow: 0 16px 36px rgba(3, 9, 24, 0.34);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform, box-shadow;
}

.saas-grid-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(59, 130, 246, 0.52);
    box-shadow: 0 26px 54px rgba(2, 8, 22, 0.44), 0 0 24px rgba(59, 130, 246, 0.2);
}

.saas-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(162, 190, 241, 0.24);
    background: rgba(59, 130, 246, 0.16);
    color: #cfe6ff;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.saas-grid-card:hover .saas-icon-wrap {
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.2);
}

.saas-icon-image {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.saas-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(178, 203, 246, 0.2);
    transition: transform 0.3s ease;
}

.saas-grid-card:hover .saas-media {
    transform: scale(1.04);
}

.saas-badge {
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.14);
    color: #bfe0ff;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.saas-card-title {
    color: #f5faff;
    margin-bottom: 0.55rem;
}

.saas-card-desc {
    color: #9fb5da;
    margin: 0;
}

.saas-card-btn {
    min-height: 40px;
    font-size: 0.82rem;
    padding-inline: 0.9rem;
    align-self: flex-start;
}

.saas-meta {
    color: #90a8d4;
    font-size: 0.82rem;
}

.saas-empty {
    border: 1px solid rgba(181, 204, 246, 0.2);
    border-radius: 16px;
    background: rgba(11, 19, 36, 0.76);
    color: #9eb4da;
    padding: 1rem;
}

.saas-pagination .page-link {
    border: 1px solid rgba(171, 194, 239, 0.24);
    background: rgba(11, 19, 36, 0.72);
    color: #d9e7ff;
    border-radius: 10px;
    min-width: 40px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.saas-pagination .page-link:hover {
    transform: translate3d(0, -2px, 0);
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.2);
    color: #f5faff;
}

.saas-pagination .page-item.active .page-link {
    border-color: rgba(34, 211, 238, 0.62);
    background: rgba(34, 211, 238, 0.18);
    color: #f8fbff;
}

.saas-pagination-note {
    color: #9eb2d6;
}

@media (max-width: 767.98px) {
    .saas-page__hero-glass {
        padding: 1rem;
    }

    .saas-search-btn {
        border-radius: 12px;
        margin-top: 0.55rem;
        width: 100%;
    }

    .saas-search-input.form-control {
        border-radius: 12px;
    }

    .saas-search-group {
        display: block;
    }
}

.free-product-detail {
    position: relative;
}

.free-product-detail__hero {
    padding: clamp(1.75rem, 3vw, 3.35rem);
    border-radius: 34px;
    border-color: rgba(186, 209, 247, 0.14);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.2), transparent 34%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.14), transparent 30%),
        linear-gradient(148deg, rgba(10, 16, 31, 0.98), rgba(12, 20, 38, 0.92));
    box-shadow: 0 24px 54px rgba(2, 9, 22, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.free-product-detail__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.free-product-detail__copy h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(2.2rem, 4vw, 3.9rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #f7fbff;
    text-wrap: balance;
}

.free-product-detail__lead {
    margin: 1rem 0 0;
    max-width: 62ch;
    font-size: 1.05rem;
    line-height: 1.82;
    color: #a9bedf;
}

.free-product-detail__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.15rem;
}

.free-product-detail__trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(173, 198, 241, 0.14);
    background: rgba(255, 255, 255, 0.035);
    color: #dbe8fd;
    font-size: 0.9rem;
}

.free-product-detail__trust-row i {
    color: #6ddcff;
}

.free-product-detail__tags {
    margin-top: 1.15rem;
}

.free-product-detail__tags span {
    min-height: 36px;
    padding-inline: 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(190, 211, 248, 0.12);
    color: #edf5ff;
}

.free-product-detail__actions {
    align-items: center;
    margin-top: 1.5rem;
}

.free-product-detail__primary-cta,
.free-product-detail__download-card .v2-btn--primary,
.free-product-bottom-cta .v2-btn--primary {
    min-height: 52px;
    padding-inline: 1.35rem;
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28), 0 0 0 1px rgba(191, 224, 255, 0.08) inset;
}

.free-product-detail__stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.8rem;
}

.free-product-detail__stat-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 88px;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(184, 208, 247, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.free-product-detail__stat-card small {
    display: block;
    margin-bottom: 0.28rem;
    color: rgba(214, 229, 251, 0.64);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.free-product-detail__stat-card strong {
    display: block;
    color: #f7fbff;
    font-size: 1.02rem;
    font-weight: 700;
}

.free-product-detail__stat-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    background: rgba(59, 130, 246, 0.12);
    color: #84d8ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.free-product-detail__sidebar {
    position: relative;
}

.free-product-detail__download-card {
    height: 100%;
    padding: clamp(1.35rem, 2.25vw, 2.1rem);
    border-radius: 30px;
    border-color: rgba(184, 208, 247, 0.12);
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(14, 22, 41, 0.96), rgba(9, 14, 28, 0.94));
    box-shadow: 0 26px 56px rgba(2, 9, 22, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.free-product-detail__download-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.free-product-detail__download-badge {
    margin-bottom: 0;
    min-height: 36px;
    align-items: center;
    border-radius: 999px;
}

.free-product-detail__download-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 224, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #d9ecff;
    font-size: 0.82rem;
    font-weight: 600;
}

.free-product-detail__quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.35rem 0;
}

.free-product-detail__quick-grid > div {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(183, 205, 244, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.free-product-detail__quick-grid span {
    display: block;
    margin-bottom: 0.32rem;
    color: rgba(214, 229, 251, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.free-product-detail__quick-grid strong {
    display: block;
    color: #f3f8ff;
    line-height: 1.45;
}

.free-product-detail__download-points {
    list-style: none;
    margin: 0 0 1.45rem;
    padding: 0;
    display: grid;
    gap: 0.78rem;
}

.free-product-detail__download-points li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #d7e7fd;
}

.free-product-detail__download-points i {
    margin-top: 0.18rem;
    color: #46d7a4;
}

.free-product-detail__download-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.free-product-detail__download-actions .v2-btn {
    justify-content: center;
}

.free-product-gallery {
    margin-top: 2rem;
}

.free-product-gallery__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.free-product-gallery__primary,
.free-product-gallery__thumb {
    width: 100%;
    border: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.free-product-gallery__frame {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(188, 211, 247, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(10, 15, 28, 0.92);
    padding: clamp(0.9rem, 1.8vw, 1.15rem);
    box-shadow: 0 24px 54px rgba(2, 9, 22, 0.32);
}

.free-product-gallery__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(188, 211, 247, 0.1);
    transition: transform 0.35s ease;
}

.free-product-gallery__primary:hover img,
.free-product-gallery__thumb:hover img {
    transform: scale(1.025);
}

.free-product-gallery__screen-badge,
.free-product-gallery__zoom,
.free-product-gallery__thumb-meta {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.free-product-gallery__screen-badge {
    top: 1.15rem;
    left: 1.15rem;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(188, 211, 247, 0.12);
    color: #eaf3ff;
    font-size: 0.8rem;
    font-weight: 700;
}

.free-product-gallery__zoom {
    right: 1.15rem;
    bottom: 1.15rem;
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(125, 211, 252, 0.22);
    color: #eff8ff;
    font-size: 0.8rem;
    font-weight: 700;
}

.free-product-gallery__thumb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.free-product-gallery__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(188, 211, 247, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 36px rgba(2, 8, 20, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.free-product-gallery__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.free-product-gallery__thumb:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.3);
    box-shadow: 0 22px 42px rgba(2, 8, 20, 0.32);
}

.free-product-gallery__thumb-meta {
    left: 0.8rem;
    right: auto;
    bottom: 0.8rem;
    background: rgba(10, 16, 31, 0.74);
    border: 1px solid rgba(184, 208, 247, 0.1);
    color: #e8f2ff;
    font-size: 0.75rem;
    font-weight: 600;
}

.free-product-gallery__hint {
    margin: 0.85rem 0 0;
    color: rgba(217, 232, 255, 0.62);
    font-size: 0.92rem;
}

.free-product-section {
    border-radius: 30px;
    border-color: rgba(184, 208, 247, 0.1);
    background: linear-gradient(180deg, rgba(13, 19, 34, 0.94), rgba(9, 15, 28, 0.92));
    box-shadow: 0 18px 42px rgba(2, 8, 20, 0.24);
}

.free-product-section__head {
    margin-bottom: 1.35rem;
}

.free-product-section__head h2 {
    margin: 0;
    font-size: clamp(1.38rem, 2vw, 1.8rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.free-product-richtext {
    max-width: 68ch;
    font-size: 1rem;
    line-height: 1.92;
    color: #d9e7fb;
}

.free-product-richtext p {
    margin: 0;
}

.free-product-richtext p + p {
    margin-top: 1.05rem;
}

.free-product-richtext h2,
.free-product-richtext h3 {
    margin: 1.75rem 0 0.8rem;
    color: #f7fbff;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.free-product-richtext strong {
    color: #f8fbff;
    font-weight: 700;
}

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

.free-product-feature-card {
    display: flex;
    align-items: start;
    gap: 0.9rem;
    min-height: 110px;
    padding: 1rem 1.05rem;
    border-radius: 24px;
    border: 1px solid rgba(184, 208, 247, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.free-product-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.24);
    box-shadow: 0 18px 34px rgba(2, 8, 20, 0.24);
}

.free-product-feature-card__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.14);
    border: 1px solid rgba(125, 211, 252, 0.16);
    color: #91e3ff;
}

.free-product-feature-card__icon i {
    font-size: 1rem;
    line-height: 1;
}

.free-product-feature-card p {
    margin: 0;
    color: #dbe8fc;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.free-product-section--list {
    display: flex;
    flex-direction: column;
}

.free-product-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.free-product-checklist li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(184, 208, 247, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #deebff;
}

.free-product-checklist i {
    margin-top: 0.32rem;
    font-size: 0.56rem;
    color: #6ed7ff;
}

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

.free-product-tech div {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.free-product-stack,
.free-product-license {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(184, 208, 247, 0.1);
}

.free-product-stack h3,
.free-product-license h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.free-product-faq {
    display: grid;
    gap: 0.95rem;
}

.free-product-faq .accordion-item {
    overflow: hidden;
    border-radius: 24px;
    border-color: rgba(184, 208, 247, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: 0 14px 30px rgba(2, 8, 20, 0.18);
}

.free-product-faq .accordion-button {
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.free-product-faq .accordion-button:not(.collapsed) {
    color: #f9fbff;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04));
}

.free-product-faq .accordion-button::after {
    filter: brightness(1.8);
}

.free-product-faq__question {
    display: inline-block;
    padding-right: 1rem;
}

.free-product-faq .accordion-body {
    padding: 0 1.25rem 1.25rem;
}

.free-product-faq .accordion-body p {
    margin: 0;
    color: #cdddf4;
    line-height: 1.78;
}

.free-product-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2.35rem;
    padding: clamp(1.4rem, 2.4vw, 2rem);
    border-radius: 32px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(10, 16, 31, 0.96), rgba(9, 14, 27, 0.92));
    box-shadow: 0 22px 48px rgba(2, 8, 20, 0.28);
}

.free-product-bottom-cta__copy {
    max-width: 62ch;
}

.free-product-bottom-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.65rem;
    color: #88e0ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.free-product-bottom-cta h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #f8fbff;
}

.free-product-bottom-cta p {
    margin: 0.9rem 0 0;
    color: #b2c7e8;
    line-height: 1.8;
}

.free-product-bottom-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
}

.free-product-related {
    margin-top: 3rem;
}

.free-product-lightbox-open {
    overflow: hidden;
}

.free-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.free-product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.free-product-lightbox__dialog {
    position: relative;
    width: min(1100px, 100%);
    border-radius: 30px;
    border: 1px solid rgba(184, 208, 247, 0.12);
    background: linear-gradient(180deg, rgba(10, 16, 31, 0.98), rgba(6, 11, 24, 0.96));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
    overflow: hidden;
}

.free-product-lightbox__toolbar,
.free-product-lightbox__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(184, 208, 247, 0.1);
}

.free-product-lightbox__footer {
    border-top: 1px solid rgba(184, 208, 247, 0.1);
    border-bottom: 0;
    color: #bad1ef;
}

.free-product-lightbox__eyebrow {
    display: inline-block;
    margin-bottom: 0.28rem;
    color: #87dbff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.free-product-lightbox__toolbar h2 {
    margin: 0;
    color: #f7fbff;
    font-size: 1.25rem;
}

.free-product-lightbox__close,
.free-product-lightbox__nav {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(184, 208, 247, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #eff7ff;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.free-product-lightbox__close:hover,
.free-product-lightbox__nav:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, 0.16);
    border-color: rgba(125, 211, 252, 0.22);
}

.free-product-lightbox__stage {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem 1.2rem;
}

.free-product-lightbox__figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(184, 208, 247, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.free-product-lightbox__figure img {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: rgba(5, 9, 20, 0.72);
}

.free-product-lightbox__footer p {
    margin: 0;
    color: #a9bedf;
}

@media (max-width: 1199.98px) {
    .free-product-detail__copy h1 {
        max-width: 15ch;
    }

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

@media (max-width: 991.98px) {
    .free-product-detail__hero-grid,
    .free-product-gallery__layout,
    .free-product-bottom-cta {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .free-product-detail__copy h1 {
        max-width: none;
    }

    .free-product-detail__download-card {
        position: static;
    }

    .free-product-lightbox__stage {
        grid-template-columns: 1fr;
    }

    .free-product-lightbox__nav {
        order: 2;
        justify-self: center;
    }
}

@media (max-width: 767.98px) {
    .free-product-detail__hero,
    .free-product-section,
    .free-product-detail__download-card,
    .free-product-bottom-cta {
        border-radius: 24px;
    }

    .free-product-detail__stat-grid,
    .free-product-detail__quick-grid,
    .free-product-feature-grid,
    .free-product-gallery__thumb-grid,
    .free-product-tech {
        grid-template-columns: 1fr;
    }

    .free-product-detail__download-actions {
        grid-template-columns: 1fr;
    }

    .free-product-detail__trust-row span {
        width: 100%;
        justify-content: center;
    }

    .free-product-bottom-cta__actions,
    .free-product-detail__actions {
        width: 100%;
    }

    .free-product-bottom-cta__actions > *,
    .free-product-detail__actions > * {
        flex: 1 1 100%;
        justify-content: center;
    }

    .free-product-lightbox {
        padding: 0.85rem;
    }

    .free-product-lightbox__toolbar,
    .free-product-lightbox__footer {
        flex-direction: column;
        align-items: start;
    }
}
