:root {
    --bg: #070b15;
    --bg-soft: #0b1120;
    --surface: #0f1729;
    --surface-2: #121d33;
    --surface-3: #17233b;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .15);
    --text: #f7f9ff;
    --muted: #99a6bd;
    --muted-2: #74819a;
    --primary: #1769ff;
    --primary-2: #22d3ee;
    --primary-soft: rgba(23, 105, 255, .13);
    --success: #32d583;
    --warning: #fdb022;
    --danger: #f97066;
    --shadow: 0 30px 80px rgba(0, 0, 0, .34);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 10% -10%, rgba(23, 105, 255, .18), transparent 32rem),
        radial-gradient(circle at 95% 15%, rgba(34, 211, 238, .08), transparent 28rem),
        var(--bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

::selection {
    color: #fff;
    background: var(--primary);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 700;
}

.skip-link:focus {
    transform: none;
}

main {
    position: relative;
}

.section {
    position: relative;
    padding: 105px 0;
}

.section-compact {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .035));
    border-block: 1px solid rgba(255, 255, 255, .045);
}

.section-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section-heading {
    max-width: 710px;
    margin-bottom: 48px;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading h2,
.page-title,
.hero h1,
.product-hero h1 {
    font-family: Manrope, Inter, sans-serif;
    letter-spacing: -.045em;
}

.section-heading h2 {
    margin-top: 15px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.section-heading p {
    max-width: 650px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.center p {
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8bc4ff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 20px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.gradient-text {
    color: transparent;
    background: linear-gradient(110deg, #fff 5%, #80b8ff 52%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 700;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #0f5ff5, #1f7aff);
    box-shadow: 0 14px 34px rgba(23, 105, 255, .24), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.button-primary:hover {
    box-shadow: 0 18px 40px rgba(23, 105, 255, .34), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.button-secondary {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .045);
}

.button-secondary:hover {
    border-color: rgba(139, 196, 255, .5);
    background: rgba(255, 255, 255, .075);
}

.button-ghost {
    padding-inline: 4px;
    color: #a9cfff;
}

.button-block {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    transition: padding .25s ease;
}

.site-header.scrolled {
    padding: 10px 0;
}

.nav-wrap {
    position: relative;
}

.navbar {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(7, 11, 21, .67);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled .navbar {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(7, 11, 21, .92);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .34);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
}

.brand-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: Manrope, sans-serif;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1.08rem;
    letter-spacing: -.02em;
}

.brand-copy span {
    color: #aeb9cc;
    font-size: .94rem;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #b3bfd3;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    transition: color .2s ease;
}

.nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link i {
    font-size: .66rem;
    transition: transform .2s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 350px;
    display: grid;
    gap: 5px;
    padding: 9px;
    transform: translate(-50%, -8px);
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(10, 16, 29, .98);
    box-shadow: var(--shadow);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
}

.nav-dropdown-menu::before {
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
    content: "";
}

.nav-dropdown-menu a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    transition: background .2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, .06);
}

.dropdown-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(78, 144, 255, .18);
    border-radius: 11px;
    color: #8bc4ff;
    background: rgba(23, 105, 255, .1);
}

.nav-dropdown-menu strong,
.nav-dropdown-menu small {
    display: block;
}

.nav-dropdown-menu strong {
    color: #fff;
    font-size: .88rem;
}

.nav-dropdown-menu small {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: .74rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-login {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #0f5ff5, #1f7aff);
    box-shadow: 0 10px 25px rgba(23, 105, 255, .2);
    font-size: .86rem;
    font-weight: 700;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.mobile-menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 13, 24, .98);
    box-shadow: var(--shadow);
}

.mobile-menu.open {
    display: grid;
}

.mobile-menu > a,
.mobile-menu > p {
    padding: 12px 11px;
    color: #d3daea;
    font-weight: 650;
}

.mobile-menu > p {
    padding-bottom: 7px;
    color: var(--muted-2);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mobile-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 5px;
}

.mobile-products a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: #dbe4f4;
    background: rgba(255, 255, 255, .035);
    font-size: .86rem;
    font-weight: 600;
}

.mobile-products i {
    color: #80b8ff;
}

.mobile-client {
    margin-top: 7px;
}

.hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 155px 0 95px;
}

.hero::before,
.product-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 38%, rgba(23, 105, 255, .13), transparent 25rem),
        radial-gradient(circle at 82% 35%, rgba(34, 211, 238, .09), transparent 22rem);
}

.hero::after,
.product-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .16;
    background-image: radial-gradient(rgba(255, 255, 255, .4) .6px, transparent .6px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr);
    gap: 60px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 20px 0 24px;
    font-size: clamp(3.15rem, 6vw, 5.6rem);
    line-height: .98;
}

.hero-copy > p {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 27px;
    color: #b7c1d4;
    font-size: .84rem;
    font-weight: 600;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points i {
    color: var(--success);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.hero-orbit {
    position: absolute;
    inset: 4% 0 0 6%;
    border: 1px solid rgba(92, 164, 255, .13);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.hero-orbit::before,
.hero-orbit::after {
    position: absolute;
    width: 11px;
    height: 11px;
    content: "";
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 25px rgba(34, 211, 238, .9);
}

.hero-orbit::before {
    top: 15%;
    left: 13%;
}

.hero-orbit::after {
    right: 10%;
    bottom: 20%;
}

.hero-image-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 610px);
    min-height: 490px;
    display: grid;
    place-items: center;
    padding: 35px;
    overflow: hidden;
    border: 1px solid rgba(118, 177, 255, .16);
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(17, 28, 49, .86), rgba(10, 16, 29, .66)),
        radial-gradient(circle at 50% 40%, rgba(23, 105, 255, .18), transparent 60%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-image-shell::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.hero-image-shell img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 28px 35px rgba(0, 0, 0, .35));
    animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-card {
    position: absolute;
    z-index: 3;
    min-width: 175px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(9, 15, 27, .9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.float-card.top {
    top: 7%;
    right: -4%;
}

.float-card.bottom {
    bottom: 8%;
    left: -4%;
}

.float-card span {
    display: block;
    color: var(--muted-2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.float-card strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 1rem;
}

.float-card strong i {
    margin-right: 7px;
    color: var(--success);
    font-size: .65rem;
}

.trust-bar {
    position: relative;
    z-index: 3;
    margin-top: -36px;
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(11, 17, 32, .9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    backdrop-filter: blur(16px);
}

.trust-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 22px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #8bc4ff;
    background: var(--primary-soft);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: #fff;
    font-size: .9rem;
}

.trust-item span {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: .76rem;
}

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

.service-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: var(--surface);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(101, 164, 255, .34);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.service-card-image {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: #0d1526;
}

.service-card-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, var(--surface), transparent 70%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:nth-child(3) .service-card-image img,
.service-card:nth-child(4) .service-card-image img {
    object-fit: contain;
    padding: 28px;
    background: radial-gradient(circle, rgba(23, 105, 255, .16), transparent 70%);
}

.service-card:hover .service-card-image img {
    transform: scale(1.055);
}

.service-card-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
    margin-top: -10px;
}

.service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border: 1px solid rgba(91, 158, 255, .25);
    border-radius: 12px;
    color: #8bc4ff;
    background: #101c31;
}

.service-card h3 {
    font-family: Manrope, sans-serif;
    font-size: 1.12rem;
}

.service-card p {
    margin: 8px 0 20px;
    color: var(--muted);
    font-size: .84rem;
}

.service-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.service-price small,
.service-price strong {
    display: block;
}

.service-price small {
    color: var(--muted-2);
    font-size: .7rem;
}

.service-price strong {
    margin-top: 1px;
    color: #fff;
    font-size: 1.08rem;
}

.service-card-bottom > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: #dce8ff;
    transition: transform .2s ease, background .2s ease;
}

.service-card:hover .service-card-bottom > i {
    transform: translateX(3px);
    background: var(--primary);
}

.panel-showcase {
    display: grid;
    grid-template-columns: .83fr 1.17fr;
    gap: 55px;
    align-items: center;
}

.panel-copy h2 {
    margin: 15px 0 20px;
    font-family: Manrope, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.panel-copy > p {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 32px;
}

.check-list li {
    display: flex;
    gap: 11px;
    align-items: center;
    color: #d8e0ef;
    font-size: .91rem;
    list-style: none;
}

.check-list i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--success);
    background: rgba(50, 213, 131, .1);
    font-size: .68rem;
}

.panel-visual {
    position: relative;
}

.panel-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 21px;
    background: #0a101d;
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.panel-window-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-bottom: 1px solid var(--line);
    background: #0e1626;
}

.panel-window-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #46536b;
}

.panel-window-bar i:first-child { background: #f97066; }
.panel-window-bar i:nth-child(2) { background: #fdb022; }
.panel-window-bar i:nth-child(3) { background: #32d583; }

.panel-window img {
    width: 100%;
}

.panel-glow {
    position: absolute;
    right: 8%;
    bottom: -6%;
    left: 8%;
    height: 30%;
    z-index: -1;
    filter: blur(45px);
    opacity: .35;
    background: var(--primary);
}

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

.feature-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(18, 29, 51, .82), rgba(12, 19, 34, .82));
    transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(90, 157, 255, .3);
}

.feature-card i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(91, 158, 255, .2);
    border-radius: 13px;
    color: #88c1ff;
    background: var(--primary-soft);
}

.feature-card h3 {
    margin-bottom: 8px;
    font-family: Manrope, sans-serif;
    font-size: 1.02rem;
}

.feature-card p {
    color: var(--muted);
    font-size: .86rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: steps;
}

.step-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--surface);
    counter-increment: steps;
}

.step-card::after {
    position: absolute;
    right: 15px;
    bottom: -25px;
    content: "0" counter(steps);
    color: rgba(255, 255, 255, .025);
    font-family: Manrope, sans-serif;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
}

.step-number {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 11px;
    color: #8bc4ff;
    background: var(--primary-soft);
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 8px;
    font-family: Manrope, sans-serif;
}

.step-card p {
    color: var(--muted);
    font-size: .87rem;
}

.cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    padding: 54px;
    border: 1px solid rgba(113, 171, 255, .22);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 30%, rgba(34, 211, 238, .12), transparent 20rem),
        linear-gradient(135deg, #111e35, #0c1425);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.cta-box::after {
    position: absolute;
    right: -90px;
    bottom: -180px;
    width: 400px;
    height: 400px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(255, 255, 255, .015), 0 0 0 100px rgba(255, 255, 255, .012);
}

.cta-copy {
    position: relative;
    z-index: 1;
}

.cta-copy h2 {
    max-width: 700px;
    margin: 12px 0 13px;
    font-family: Manrope, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.cta-copy p {
    color: var(--muted);
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 11px;
}

.product-hero {
    position: relative;
    min-height: 710px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 80px;
}

.product-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
    gap: 70px;
    align-items: center;
}

.product-hero h1 {
    max-width: 780px;
    margin: 18px 0 22px;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
}

.product-hero-copy > p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 25px 0 31px;
}

.product-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #c9d5e7;
    background: rgba(255, 255, 255, .035);
    font-size: .78rem;
    font-weight: 600;
}

.product-highlights i {
    color: var(--success);
    font-size: .68rem;
}

.product-price-line {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 25px;
}

.starting-price span,
.starting-price small {
    display: block;
}

.starting-price span {
    font-family: Manrope, sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
}

.starting-price small {
    color: var(--muted-2);
    font-size: .74rem;
}

.product-visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(108, 170, 255, .16);
    border-radius: 32px;
    background:
        radial-gradient(circle at center, rgba(23, 105, 255, .2), transparent 60%),
        linear-gradient(145deg, rgba(18, 29, 51, .9), rgba(9, 15, 27, .85));
    box-shadow: var(--shadow);
}

.product-visual::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, #000, transparent 75%);
}

.product-visual img {
    position: relative;
    z-index: 1;
    width: 72%;
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .4));
}

.product-visual.cover img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    opacity: .75;
}

.product-visual.cover::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    background: linear-gradient(to top, rgba(7, 11, 21, .72), transparent 60%);
}

.product-visual-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(8, 14, 25, .84);
    backdrop-filter: blur(15px);
}

.product-visual-card span,
.product-visual-card small {
    display: block;
}

.product-visual-card span {
    font-weight: 700;
}

.product-visual-card small {
    color: var(--muted-2);
}

.product-visual-card i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--success);
    background: rgba(50, 213, 131, .1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(18, 29, 51, .95), rgba(10, 16, 29, .94));
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 165, 255, .33);
}

.price-card.popular {
    border-color: rgba(54, 129, 255, .58);
    box-shadow: 0 25px 65px rgba(23, 105, 255, .13), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.popular-badge {
    position: absolute;
    top: 17px;
    right: 17px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(121, 180, 255, .25);
    border-radius: 999px;
    color: #a9d1ff;
    background: rgba(23, 105, 255, .13);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.price-card-head {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.price-card h3 {
    max-width: 70%;
    font-family: Manrope, sans-serif;
    font-size: 1.16rem;
}

.price-card-head p {
    max-width: 90%;
    margin-top: 8px;
    color: var(--muted);
    font-size: .81rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 18px;
}

.price span {
    font-family: Manrope, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.price small {
    color: var(--muted-2);
    font-size: .75rem;
}

.price-card ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 25px;
}

.price-card li {
    display: grid;
    grid-template-columns: 21px 1fr;
    gap: 9px;
    align-items: start;
    color: #ccd5e5;
    font-size: .79rem;
    list-style: none;
}

.price-card li i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--success);
    background: rgba(50, 213, 131, .09);
    font-size: .62rem;
}

.price-card .button {
    margin-top: auto;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-feature-card {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.product-feature-card i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    color: #8bc4ff;
    background: var(--primary-soft);
}

.product-feature-card h3 {
    margin-bottom: 8px;
    font-family: Manrope, sans-serif;
    font-size: .98rem;
}

.product-feature-card p {
    color: var(--muted);
    font-size: .83rem;
}

.performance-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}

.performance-item {
    padding: 28px;
    border-right: 1px solid var(--line);
}

.performance-item:last-child {
    border-right: 0;
}

.performance-item i {
    margin-bottom: 15px;
    color: #86c0ff;
    font-size: 1.15rem;
}

.performance-item strong,
.performance-item span {
    display: block;
}

.performance-item strong {
    font-family: Manrope, sans-serif;
    font-size: .95rem;
}

.performance-item span {
    margin-top: 4px;
    color: var(--muted-2);
    font-size: .76rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 70px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin: 15px 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.faq-intro p {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 11px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(15, 23, 41, .78);
}

.faq-item button {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 18px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
}

.faq-item button i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    color: #98c8ff;
    background: var(--primary-soft);
    transition: transform .2s ease;
}

.faq-item.open button i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: var(--muted);
    font-size: .88rem;
    transition: padding .25s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding: 0 18px 18px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 95px;
    text-align: center;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle at 50% 10%, rgba(23, 105, 255, .16), transparent 35rem);
}

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

.page-title {
    max-width: 850px;
    margin: 17px auto 20px;
    font-size: clamp(3rem, 6vw, 5.1rem);
    line-height: 1;
}

.page-hero p {
    max-width: 690px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 1.06rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: radial-gradient(circle, rgba(23, 105, 255, .17), transparent 65%), var(--surface);
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 82%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .35));
}

.about-copy h2 {
    margin: 15px 0 20px;
    font-family: Manrope, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.about-copy p {
    margin-bottom: 17px;
    color: var(--muted);
}

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

.stat-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--surface);
}

.stat-card strong,
.stat-card span {
    display: block;
}

.stat-card strong {
    font-family: Manrope, sans-serif;
    font-size: 1.55rem;
}

.stat-card span {
    margin-top: 5px;
    color: var(--muted-2);
    font-size: .78rem;
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    transition: transform .25s ease, border-color .25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(97, 163, 255, .33);
}

.blog-card-image {
    height: 205px;
    overflow: hidden;
    background: #0c1424;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:nth-child(3) .blog-card-image img {
    object-fit: contain;
    padding: 36px;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 23px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8ebeff;
    font-size: .74rem;
    font-weight: 700;
}

.blog-meta span + span::before {
    margin-right: 9px;
    content: "•";
    color: var(--muted-2);
}

.blog-card h2 {
    margin: 13px 0 10px;
    font-family: Manrope, sans-serif;
    font-size: 1.19rem;
    line-height: 1.28;
}

.blog-card p {
    color: var(--muted);
    font-size: .84rem;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #9ac8ff;
    font-size: .82rem;
    font-weight: 700;
}

.article-wrap {
    width: min(calc(100% - 40px), 820px);
    margin: 0 auto;
}

.article-header {
    padding: 170px 0 70px;
}

.article-header h1 {
    margin: 18px 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.7rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.article-header p {
    color: var(--muted);
    font-size: 1.07rem;
}

.article-image {
    height: 410px;
    overflow: hidden;
    margin-bottom: 55px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding-bottom: 100px;
}

.article-content section {
    margin-bottom: 38px;
}

.article-content h2 {
    margin-bottom: 12px;
    font-family: Manrope, sans-serif;
    font-size: 1.6rem;
}

.article-content p,
.legal-content p,
.legal-content li {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 30px;
    align-items: start;
}

.contact-info,
.contact-form-card {
    border: 1px solid var(--line);
    border-radius: 21px;
    background: var(--surface);
}

.contact-info {
    padding: 29px;
}

.contact-info h2,
.contact-form-card h2 {
    font-family: Manrope, sans-serif;
    font-size: 1.45rem;
}

.contact-info > p,
.contact-form-card > p {
    margin-top: 8px;
    color: var(--muted);
    font-size: .88rem;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-method {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.contact-method i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #8fc4ff;
    background: var(--primary-soft);
}

.contact-method strong,
.contact-method span {
    display: block;
}

.contact-method strong {
    font-size: .88rem;
}

.contact-method span {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: .76rem;
}

.contact-form-card {
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 27px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #d8e0ef;
    font-size: .79rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    outline: 0;
    color: #fff;
    background: #0a1221;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea.form-control {
    min-height: 150px;
    padding-top: 13px;
    resize: vertical;
}

.form-control:focus {
    border-color: rgba(77, 148, 255, .75);
    box-shadow: 0 0 0 4px rgba(23, 105, 255, .1);
}

.form-control::placeholder {
    color: #59667d;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 19px;
}

.form-actions p {
    color: var(--muted-2);
    font-size: .74rem;
}

.form-alert {
    margin-top: 20px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 12px;
    font-size: .83rem;
}

.form-alert.success {
    color: #a9f2ce;
    border-color: rgba(50, 213, 131, .28);
    background: rgba(50, 213, 131, .08);
}

.form-alert.error {
    color: #ffc4bf;
    border-color: rgba(249, 112, 102, .28);
    background: rgba(249, 112, 102, .08);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 55px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 115px;
    display: grid;
    gap: 4px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
}

.legal-nav a {
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 600;
}

.legal-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .045);
}

.legal-content section {
    margin-bottom: 40px;
    scroll-margin-top: 125px;
}

.legal-content h2 {
    margin-bottom: 12px;
    font-family: Manrope, sans-serif;
    font-size: 1.45rem;
}

.legal-content p,
.legal-content li {
    margin-bottom: 10px;
    font-size: .9rem;
}

.legal-content ul {
    padding-left: 20px;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 150px 0 80px;
    text-align: center;
}

.error-code {
    color: transparent;
    background: linear-gradient(110deg, #fff, #3f8cff, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Manrope, sans-serif;
    font-size: clamp(7rem, 20vw, 14rem);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -.08em;
}

.error-page h1 {
    margin: 35px 0 10px;
    font-family: Manrope, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.error-page p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--muted);
}

.site-footer {
    padding: 75px 0 28px;
    border-top: 1px solid var(--line);
    background: #060a12;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 420px;
    margin: 19px 0;
    color: var(--muted);
    font-size: .84rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(50, 213, 131, .18);
    border-radius: 999px;
    color: #b4ebcf;
    background: rgba(50, 213, 131, .07);
    font-size: .74rem;
    font-weight: 700;
}

.status-pill span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(50, 213, 131, .1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 5px;
    color: #fff;
    font-size: .86rem;
}

.footer-column a {
    color: var(--muted);
    font-size: .8rem;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: .72rem;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding-inline: 10px;
    }

    .hero-grid,
    .product-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 6vw, 4.6rem);
    }

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

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

    .footer-top {
        grid-template-columns: 1.6fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 82px 0;
    }

    .desktop-nav,
    .nav-login span {
        display: none;
    }

    .nav-login {
        width: 44px;
        padding: 0;
        justify-content: center;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        min-height: auto;
        padding-top: 145px;
    }

    .hero-grid,
    .product-hero-grid,
    .panel-showcase,
    .about-grid,
    .contact-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .product-hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-copy > p,
    .product-hero h1,
    .product-hero-copy > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points,
    .product-highlights,
    .product-price-line {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .feature-grid,
    .steps-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel-window {
        transform: none;
    }

    .performance-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .performance-item:nth-child(2) {
        border-right: 0;
    }

    .performance-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .faq-intro {
        position: static;
        text-align: center;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 42px;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

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

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }

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

    .legal-nav {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .site-header {
        padding-top: 10px;
    }

    .navbar {
        height: 62px;
        border-radius: 15px;
    }

    .brand-copy span {
        display: none;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .mobile-menu {
        top: 72px;
    }

    .hero {
        padding: 125px 0 75px;
    }

    .hero-copy h1,
    .product-hero h1,
    .page-title {
        font-size: clamp(2.6rem, 14vw, 4rem);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-points {
        gap: 9px 14px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-image-shell {
        min-height: 360px;
        padding: 20px;
        border-radius: 25px;
    }

    .float-card {
        min-width: 145px;
        padding: 11px;
    }

    .float-card.top {
        top: 0;
        right: -2%;
    }

    .float-card.bottom {
        bottom: 1%;
        left: -2%;
    }

    .trust-bar {
        margin-top: -20px;
    }

    .trust-inner,
    .service-grid,
    .feature-grid,
    .steps-grid,
    .pricing-grid,
    .product-feature-grid,
    .blog-grid,
    .performance-strip,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(2),
    .performance-item,
    .performance-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child,
    .performance-item:last-child {
        border-bottom: 0;
    }

    .service-card {
        min-height: 340px;
    }

    .panel-showcase {
        gap: 38px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .product-hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .product-visual {
        min-height: 370px;
    }

    .price-card {
        padding: 22px;
    }

    .cta-box {
        padding: 32px 22px;
    }

    .page-hero {
        padding: 135px 0 70px;
    }

    .about-image {
        min-height: 350px;
    }

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

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

    .form-actions .button {
        width: 100%;
    }

    .article-image {
        height: 280px;
    }

    .legal-nav {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

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