/* =====================================================
   ROOT
===================================================== */
:root {
    --primary: #d71920;
    --primary-dark: #a90f15;
    --primary-darker: #760b10;
    --primary-light: #ffebec;
    --primary-soft: #fff5f5;

    --white: #ffffff;
    --black: #121212;

    --dark: #171717;
    --dark-soft: #242424;

    --text: #2a2a2a;
    --text-muted: #6f6f78;

    --border: #ececef;
    --background: #f8f8fa;

    --success: #20b46a;
    --warning: #ffb020;

    --container: 1180px;

    --shadow-small:
        0 8px 24px rgba(28, 28, 28, 0.06);

    --shadow-medium:
        0 18px 50px rgba(28, 28, 28, 0.1);

    --shadow-primary:
        0 20px 48px rgba(215, 25, 32, 0.22);

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 26px;
}


/* =====================================================
   RESET
===================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img,
svg {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}


/* =====================================================
   BUTTONS
===================================================== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(215, 25, 32, 0.22);
}

.button-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 14px 30px rgba(215, 25, 32, 0.3);
}

.button-outline {
    border-color: rgba(215, 25, 32, 0.22);
    background: var(--white);
    color: var(--primary);
}

.button-outline:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.button-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.button-white:hover {
    background: #fff2f2;
}

.button-transparent {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.button-transparent:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.button-large {
    min-height: 54px;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 15px;
}


/* =====================================================
   PAGE LOADER
===================================================== */
.page-loader {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--white);
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.page-loader.hidden {
    visibility: hidden;
    opacity: 0;
}

.page-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-loader-logo {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 29px;
    font-weight: 800;
    box-shadow: var(--shadow-primary);
    animation: loaderPulse 1.3s infinite ease-in-out;
}

.page-loader-logo img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: contain;
}

.page-loader-bar {
    width: 145px;
    height: 5px;
    overflow: hidden;
    border-radius: 99px;
    background: var(--primary-light);
}

.page-loader-bar span {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: var(--primary);
    animation: loaderBar 1.1s infinite ease-in-out;
}

@keyframes loaderPulse {
    50% {
        transform: scale(0.92);
    }
}

@keyframes loaderBar {
    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(330%);
    }
}


/* =====================================================
   HEADER
===================================================== */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.site-header.scrolled {
    border-color: rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(16px);
}

.header-container {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 190px;
    height: 44px;
    object-fit: contain;
}

.brand-footer .brand-logo {
    max-width: 210px;
    height: 48px;
}

.brand-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 11px;
    background: var(--primary);
    color: var(--white);
    font-size: 17px;
    box-shadow: 0 9px 20px rgba(215, 25, 32, 0.22);
}

.brand-text {
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.brand-text span {
    color: var(--primary);
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
}

.navigation-link {
    position: relative;
    padding: 28px 0;
    color: #4d4d54;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.navigation-link::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    border-radius: 99px;
    background: var(--primary);
    content: "";
    transition: width 0.25s ease;
}

.navigation-link:hover,
.navigation-link.active {
    color: var(--primary);
}

.navigation-link:hover::after,
.navigation-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-login {
    color: var(--dark);
}

.button-login:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    background: var(--primary-soft);
}

.mobile-menu-button span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--primary);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   HERO
===================================================== */
.hero-section {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    padding: 155px 0 125px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(215, 25, 32, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 60%,
            rgba(215, 25, 32, 0.08),
            transparent 26%
        ),
        linear-gradient(135deg, #fffafa 0%, #ffffff 46%, #fff2f3 100%);
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(215, 25, 32, 0.1);
    border-radius: 50%;
}

.hero-decoration-one {
    top: 90px;
    right: -170px;
    width: 500px;
    height: 500px;
}

.hero-decoration-two {
    bottom: 40px;
    left: -160px;
    width: 360px;
    height: 360px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 65px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 7px 13px 7px 8px;
    border: 1px solid rgba(215, 25, 32, 0.13);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-small);
}

.hero-badge-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
}

.hero-title {
    max-width: 620px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -2.8px;
    line-height: 1.13;
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.hero-title-highlight::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 8px;
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.14);
    content: "";
    transform: rotate(-1deg);
}

.hero-description {
    max-width: 585px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 33px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 31px;
}

.hero-users {
    display: flex;
}

.hero-user {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    margin-left: -7px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: #f0c6c8;
    color: var(--primary);
    font-size: 12px;
}

.hero-user:first-child {
    margin-left: 0;
}

.hero-user:nth-child(2) {
    background: #ffdcdc;
}

.hero-user:nth-child(3) {
    background: #e8b2b5;
}

.hero-user-more {
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
}

.hero-stars {
    display: flex;
    gap: 2px;
    color: #ffb020;
    font-size: 11px;
}

.hero-trust-text > span {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 11px;
}


/* Hero dashboard */
.hero-visual {
    position: relative;
    padding: 25px 0 30px;
}

.hero-dashboard {
    overflow: hidden;
    border: 1px solid rgba(215, 25, 32, 0.09);
    border-radius: 21px;
    background: var(--white);
    box-shadow:
        0 35px 80px rgba(89, 16, 20, 0.17),
        0 10px 25px rgba(0, 0, 0, 0.06);
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.dashboard-header {
    display: grid;
    min-height: 43px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #eeeeef;
    background: #fafafa;
    grid-template-columns: 90px 1fr 50px;
}

.dashboard-browser-buttons {
    display: flex;
    gap: 6px;
}

.dashboard-browser-buttons span,
.code-window-buttons span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dashboard-browser-buttons span:nth-child(1),
.code-window-buttons span:nth-child(1) {
    background: #ff605c;
}

.dashboard-browser-buttons span:nth-child(2),
.code-window-buttons span:nth-child(2) {
    background: #ffbd44;
}

.dashboard-browser-buttons span:nth-child(3),
.code-window-buttons span:nth-child(3) {
    background: #00ca4e;
}

.dashboard-address {
    justify-self: center;
    padding: 5px 45px;
    border: 1px solid #e5e5e7;
    border-radius: 6px;
    background: var(--white);
    color: #98989f;
    font-size: 8px;
}

.dashboard-security {
    justify-self: flex-end;
    color: #aaaab0;
    font-size: 9px;
}

.dashboard-body {
    display: grid;
    min-height: 395px;
    grid-template-columns: 58px 1fr;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 17px 0;
    background: var(--primary-darker);
}

.dashboard-logo {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.dashboard-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 30px;
}

.dashboard-sidebar-menu span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
}

.dashboard-sidebar-menu span.active {
    background: var(--primary);
    color: var(--white);
}

.dashboard-main {
    padding: 22px;
    background: #f8f8fa;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-small-text {
    color: #a2a2aa;
    font-size: 8px;
}

.dashboard-top h3 {
    margin-top: 2px;
    font-size: 15px;
}

.dashboard-avatar {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
}

.dashboard-statistics {
    display: grid;
    gap: 12px;
    margin-top: 21px;
    grid-template-columns: repeat(2, 1fr);
}

.dashboard-stat-card {
    position: relative;
    padding: 14px 15px;
    border: 1px solid #eeeef1;
    border-radius: 12px;
    background: var(--white);
}

.dashboard-stat-icon {
    position: absolute;
    top: 13px;
    right: 13px;
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 10px;
}

.dashboard-stat-card > span {
    display: block;
    color: #98989f;
    font-size: 8px;
}

.dashboard-stat-card strong {
    display: block;
    margin-top: 7px;
    color: var(--dark);
    font-size: 16px;
}

.dashboard-stat-card small {
    display: block;
    margin-top: 6px;
    color: var(--success);
    font-size: 7px;
}

.dashboard-chart-card {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid #eeeef1;
    border-radius: 12px;
    background: var(--white);
}

.dashboard-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-chart-header > div {
    display: flex;
    flex-direction: column;
}

.dashboard-chart-header span {
    color: #98989f;
    font-size: 8px;
}

.dashboard-chart-header strong {
    margin-top: 3px;
    font-size: 15px;
}

.dashboard-chart-header button {
    padding: 6px 9px;
    border: 1px solid #ececef;
    border-radius: 6px;
    background: #fafafa;
    color: #7c7c83;
    font-size: 7px;
}

.dashboard-chart {
    position: relative;
    height: 112px;
    margin-top: 15px;
    border-bottom: 1px solid #ededf0;
    background:
        linear-gradient(#f1f1f3 1px, transparent 1px);
    background-size: 100% 28px;
}

.chart-line {
    position: absolute;
    inset: 4px 5px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
}

.chart-line span {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background:
        linear-gradient(
            180deg,
            var(--primary) 0%,
            rgba(215, 25, 32, 0.18) 100%
        );
    animation: chartGrow 1.1s both ease;
    transform-origin: bottom;
}

@keyframes chartGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    padding: 11px 13px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(12px);
    animation: floatCard 4s infinite ease-in-out;
}

.floating-card-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 10px;
    font-size: 12px;
}

.floating-card > div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 10px;
}

.floating-card span:not(.floating-card-icon) {
    color: var(--text-muted);
    font-size: 8px;
}

.floating-card-success {
    bottom: 1px;
    left: -30px;
}

.floating-card-success .floating-card-icon {
    background: #e3f8ed;
    color: var(--success);
}

.floating-card-api {
    top: 5px;
    right: -27px;
    animation-delay: -1.4s;
}

.floating-card-api .floating-card-icon {
    background: var(--primary-light);
    color: var(--primary);
}

@keyframes floatCard {
    50% {
        transform: translateY(-9px);
    }
}

.hero-bottom-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
}

.hero-bottom-wave svg {
    width: 100%;
    height: 90px;
}


/* =====================================================
   PARTNERS
===================================================== */
.partner-section {
    padding: 25px 0 40px;
    background: var(--white);
}

.partner-heading {
    margin-bottom: 23px;
    color: #9999a0;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.partner-slider {
    overflow: hidden;
    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 10%,
            #000 90%,
            transparent
        );
}

.partner-track {
    display: flex;
    width: max-content;
    animation: partnerSlide 30s infinite linear;
}

.partner-item {
    display: flex;
    width: 180px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #98989f;
    font-size: 13px;
    font-weight: 700;
}

.partner-item i {
    color: var(--primary);
    font-size: 18px;
}

@keyframes partnerSlide {
    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   STATISTICS
===================================================== */
.statistics-section {
    padding: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statistic-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 25px;
    border-right: 1px solid var(--border);
}

.statistic-item:last-child {
    border-right: 0;
}

.statistic-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 17px;
}

.statistic-item > div:last-child {
    display: flex;
    flex-direction: column;
}

.statistic-item strong {
    color: var(--dark);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
}

.statistic-item span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 11px;
}


/* =====================================================
   SECTION HEADING
===================================================== */
.section-heading {
    max-width: 690px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    padding: 6px 12px;
    border-radius: 99px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.section-label::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.section-heading h2,
.advantages-content h2,
.documentation-content h2,
.faq-content h2 {
    color: var(--dark);
    font-size: clamp(31px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.7px;
    line-height: 1.22;
}

.section-heading h2 span,
.advantages-content h2 span,
.faq-content h2 span {
    color: var(--primary);
}

.section-heading > p {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   SERVICES
===================================================== */
.services-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

.services-grid {
    display: grid;
    align-items: stretch;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    position: relative;
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: rgba(215, 25, 32, 0.22);
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.service-card.featured {
    border-color: rgba(215, 25, 32, 0.25);
    background:
        linear-gradient(160deg, #ffffff, #fff7f7);
    box-shadow: 0 22px 55px rgba(215, 25, 32, 0.12);
}

.service-popular {
    position: absolute;
    top: 19px;
    right: 19px;
    padding: 5px 9px;
    border-radius: 99px;
    background: var(--primary);
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 21px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    margin-top: 23px;
    color: var(--dark);
    font-size: 19px;
}

.service-card > p {
    min-height: 68px;
    margin-top: 11px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    padding-top: 21px;
    border-top: 1px solid var(--border);
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #56565e;
    font-size: 12px;
    font-weight: 600;
}

.service-card li i {
    color: var(--primary);
}

.service-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.service-card > a i {
    transition: transform 0.25s ease;
}

.service-card > a:hover i {
    transform: translateX(5px);
}


/* =====================================================
   ADVANTAGES
===================================================== */
.advantages-section {
    overflow: hidden;
    background: var(--white);
}

.advantages-container {
    display: grid;
    align-items: center;
    gap: 90px;
    grid-template-columns: 0.95fr 1.05fr;
}

.advantages-visual {
    position: relative;
    padding: 45px 25px;
}

.advantages-visual::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(215, 25, 32, 0.12),
            transparent 68%
        );
    content: "";
}

.advantages-main-card {
    padding: 28px;
    border: 1px solid rgba(215, 25, 32, 0.1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(91, 18, 21, 0.14);
    transform: rotate(-2deg);
}

.advantages-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.advantages-card-header > span:first-child {
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.advantages-card-header > span:first-child i {
    margin-right: 6px;
    color: var(--primary);
}

.system-online {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 99px;
    background: #e8f8f0;
    color: var(--success);
    font-size: 8px;
    font-weight: 800;
}

.system-online i {
    font-size: 5px;
}

.performance-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 27px 0;
}

.performance-score strong {
    color: var(--primary);
    font-size: 49px;
    font-weight: 800;
    letter-spacing: -2px;
}

.performance-score span {
    color: var(--text-muted);
    font-size: 11px;
}

.performance-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.performance-bar {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 85px 1fr 34px;
}

.performance-bar > span {
    color: #686870;
    font-size: 9px;
}

.performance-bar > div {
    height: 7px;
    overflow: hidden;
    border-radius: 99px;
    background: var(--primary-light);
}

.performance-bar > div span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            #ff5b61
        );
}

.performance-bar strong {
    color: var(--dark);
    font-size: 9px;
}

.advantages-mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 150px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    animation: floatCard 4s infinite ease-in-out;
}

.advantages-mini-card > i {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
}

.advantages-mini-card > div {
    display: flex;
    flex-direction: column;
}

.advantages-mini-card strong {
    font-size: 10px;
}

.advantages-mini-card span {
    color: var(--text-muted);
    font-size: 8px;
}

.advantages-mini-one {
    top: 5px;
    right: -20px;
}

.advantages-mini-two {
    bottom: 5px;
    left: -10px;
    animation-delay: -1.7s;
}

.advantages-content > h2 {
    max-width: 600px;
}

.advantages-description {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.advantages-list {
    display: grid;
    gap: 22px 24px;
    margin-top: 33px;
    grid-template-columns: repeat(2, 1fr);
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.advantage-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
}

.advantage-item h3 {
    color: var(--dark);
    font-size: 14px;
}

.advantage-item p {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =====================================================
   HOW IT WORKS
===================================================== */
.how-section {
    background: var(--background);
}

.steps-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 45px 1fr 45px 1fr 45px 1fr;
}

.step-card {
    position: relative;
    min-height: 265px;
    padding: 29px 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-7px);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    color: rgba(215, 25, 32, 0.08);
    font-size: 46px;
    font-weight: 800;
}

.step-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: auto;
    place-items: center;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 21px;
}

.step-card h3 {
    margin-top: 21px;
    color: var(--dark);
    font-size: 16px;
}

.step-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.75;
}

.step-connector {
    color: rgba(215, 25, 32, 0.35);
    text-align: center;
}


/* =====================================================
   DOCUMENTATION
===================================================== */
.documentation-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 255, 255, 0.1),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--primary-darker),
            var(--primary)
        );
}

.documentation-section::before {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.documentation-container {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 75px;
    grid-template-columns: 0.87fr 1.13fr;
}

.section-label-light {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
}

.documentation-content h2 {
    color: var(--white);
}

.documentation-content h2 span {
    color: #ffcdd0;
}

.documentation-content > p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.85;
}

.documentation-features {
    display: grid;
    gap: 12px;
    margin: 26px 0 31px;
    grid-template-columns: repeat(2, 1fr);
}

.documentation-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
}

.documentation-features i {
    color: #ffcdd0;
}

.code-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: #17171c;
    box-shadow: 0 30px 70px rgba(65, 4, 7, 0.42);
}

.code-window-header {
    display: grid;
    min-height: 48px;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #202027;
    grid-template-columns: 1fr 1fr 1fr;
}

.code-window-buttons {
    display: flex;
    gap: 6px;
}

.code-window-header > span {
    justify-self: center;
    color: #92929e;
    font-family: monospace;
    font-size: 9px;
}

.copy-code-button {
    justify-self: flex-end;
    padding: 6px 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: #aaaab5;
    font-size: 8px;
}

.copy-code-button:hover {
    color: var(--white);
}

.code-window pre {
    overflow-x: auto;
    padding: 25px;
}

.code-window code {
    color: #d8d8df;
    font-family: Consolas, Monaco, monospace;
    font-size: 11px;
    line-height: 1.8;
}

.code-purple {
    color: #c792ea;
}

.code-blue {
    color: #82aaff;
}

.code-green {
    color: #c3e88d;
}

.code-orange {
    color: #f78c6c;
}


/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonial-section {
    background: var(--white);
}

.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.45s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 14px);
    margin-right: 21px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #ffb020;
    font-size: 11px;
}

.testimonial-card > p {
    min-height: 110px;
    margin-top: 17px;
    color: #56565f;
    font-size: 12px;
    font-style: italic;
    line-height: 1.85;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
}

.testimonial-user > div:last-child {
    display: flex;
    flex-direction: column;
}

.testimonial-user strong {
    color: var(--dark);
    font-size: 12px;
}

.testimonial-user span {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 9px;
}

.testimonial-navigation {
    display: grid;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-small);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.testimonial-navigation:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.testimonial-dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 25px;
}

.testimonial-dot {
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: #e2e2e5;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.testimonial-dot.active {
    width: 23px;
    background: var(--primary);
}


/* =====================================================
   FAQ
===================================================== */
.faq-section {
    background: var(--background);
}

.faq-container {
    display: grid;
    align-items: flex-start;
    gap: 80px;
    grid-template-columns: 0.8fr 1.2fr;
}

.faq-content {
    position: sticky;
    top: 120px;
}

.faq-content > p {
    margin-top: 17px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.faq-help-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 29px;
    padding: 17px;
    border: 1px solid rgba(215, 25, 32, 0.13);
    border-radius: 15px;
    background: var(--primary-soft);
}

.faq-help-card > div:first-child {
    display: grid;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
}

.faq-help-card > div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.faq-help-card strong {
    color: var(--dark);
    font-size: 11px;
}

.faq-help-card span {
    color: var(--text-muted);
    font-size: 9px;
}

.faq-help-card a {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item.active {
    border-color: rgba(215, 25, 32, 0.22);
    box-shadow: 0 13px 30px rgba(215, 25, 32, 0.07);
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 67px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 20px;
    background: transparent;
    color: var(--dark);
    text-align: left;
    font-size: 13px;
    font-weight: 700;
}

.faq-question i {
    display: grid;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.8;
    transition: max-height 0.35s ease;
}

.faq-answer > div {
    padding: 0 20px 20px;
}


/* =====================================================
   CTA
===================================================== */
.cta-section {
    padding: 90px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    display: flex;
    min-height: 265px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 55px 60px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            var(--primary-darker),
            var(--primary)
        );
    box-shadow: var(--shadow-primary);
}

.cta-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.cta-decoration-one {
    top: -180px;
    right: -70px;
    width: 380px;
    height: 380px;
}

.cta-decoration-two {
    bottom: -200px;
    left: 33%;
    width: 320px;
    height: 320px;
}

.cta-content,
.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 670px;
}

.cta-label {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-content h2 {
    margin-top: 13px;
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1.4px;
    line-height: 1.2;
}

.cta-content p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 11px;
}


/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    background: #171719;
    color: var(--white);
}

.footer-container {
    display: grid;
    gap: 60px;
    padding-top: 75px;
    padding-bottom: 65px;
    grid-template-columns: 1.4fr 0.7fr 0.85fr 1fr;
}

.brand-footer .brand-text {
    color: var(--white);
}

.footer-about > p {
    max-width: 330px;
    margin-top: 21px;
    color: #9999a1;
    font-size: 11px;
    line-height: 1.85;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-socials a {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #b9b9bf;
    font-size: 13px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 13px;
}

.footer-column > a {
    color: #9999a1;
    font-size: 10px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column > a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact > a,
.footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #9999a1;
    font-size: 10px;
    line-height: 1.7;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-container {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p,
.footer-bottom a {
    color: #777780;
    font-size: 9px;
}

.footer-bottom-container > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}


/* =====================================================
   BACK TO TOP
===================================================== */
.back-to-top {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 43px;
    height: 43px;
    visibility: hidden;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 13px 30px rgba(215, 25, 32, 0.3);
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */
@media (max-width: 1050px) {
    .main-navigation {
        gap: 18px;
    }

    .navigation-link {
        font-size: 11px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero-title {
        font-size: 48px;
    }

    .floating-card-api {
        right: -5px;
    }

    .floating-card-success {
        left: -5px;
    }

    .advantages-container,
    .documentation-container {
        gap: 50px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-item {
        justify-content: flex-start;
        border-bottom: 1px solid var(--border);
    }

    .statistic-item:nth-child(2) {
        border-right: 0;
    }

    .statistic-item:nth-child(3),
    .statistic-item:nth-child(4) {
        border-bottom: 0;
    }

    .steps-grid {
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .step-connector {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 35px;
    }
}


/* =====================================================
   MOBILE MENU BREAKPOINT
===================================================== */
@media (max-width: 900px) {
    .header-container {
        min-height: 72px;
    }

    .main-navigation {
        position: fixed;
        z-index: 999;
        top: 72px;
        right: 15px;
        left: 15px;
        display: flex;
        max-height: calc(100vh - 95px);
        visibility: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        overflow-y: auto;
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: var(--white);
        box-shadow: var(--shadow-medium);
        opacity: 0;
        transform: translateY(-12px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .main-navigation.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navigation-link {
        padding: 13px 14px;
        border-radius: 8px;
        font-size: 12px;
    }

    .navigation-link::after {
        display: none;
    }

    .navigation-link:hover,
    .navigation-link.active {
        background: var(--primary-soft);
    }

    .mobile-menu-button {
        display: flex;
    }

    .button-register {
        display: none;
    }

    .hero-section {
        padding-top: 125px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title,
    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 650px);
        margin: 20px auto 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card > p {
        min-height: 0;
    }

    .advantages-container,
    .documentation-container,
    .faq-container {
        grid-template-columns: 1fr;
    }

    .advantages-visual {
        width: min(100%, 600px);
        margin: auto;
    }

    .faq-content {
        position: static;
    }

    .documentation-content {
        text-align: center;
    }

    .documentation-features {
        max-width: 450px;
        margin-inline: auto;
    }

    .documentation-content .button {
        margin-top: 31px;
    }

    .testimonial-card {
        min-width: calc(50% - 11px);
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   SMALL TABLET
===================================================== */
@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .brand-text {
        font-size: 19px;
    }

    .brand-icon {
        width: 37px;
        height: 37px;
    }

    .button-login span {
        display: none;
    }

    .button-login {
        width: 42px;
        padding: 0;
    }

    .hero-section {
        min-height: 0;
        padding: 115px 0 100px;
    }

    .hero-badge {
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .hero-dashboard {
        transform: none;
    }

    .dashboard-header {
        grid-template-columns: 55px 1fr 25px;
    }

    .dashboard-address {
        width: 100%;
        padding: 5px;
        text-align: center;
    }

    .dashboard-body {
        min-height: 335px;
        grid-template-columns: 43px 1fr;
    }

    .dashboard-main {
        padding: 13px;
    }

    .dashboard-sidebar-menu {
        gap: 9px;
    }

    .dashboard-statistics {
        gap: 8px;
    }

    .dashboard-stat-card {
        padding: 10px;
    }

    .dashboard-stat-icon {
        display: none;
    }

    .dashboard-stat-card strong {
        font-size: 12px;
    }

    .dashboard-chart {
        height: 85px;
    }

    .floating-card {
        min-width: 145px;
        padding: 8px;
    }

    .floating-card-icon {
        width: 29px;
        height: 29px;
    }

    .floating-card-success {
        bottom: -22px;
        left: 5px;
    }

    .floating-card-api {
        top: -23px;
        right: 5px;
    }

    .partner-section {
        padding-top: 10px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .statistic-item {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .statistic-item:nth-child(3) {
        border-bottom: 1px solid var(--border);
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .advantages-content h2,
    .documentation-content h2,
    .faq-content h2 {
        font-size: 31px;
        letter-spacing: -1.1px;
    }

    .service-card {
        padding: 26px 23px;
    }

    .advantages-visual {
        padding: 30px 0;
    }

    .advantages-main-card {
        padding: 21px;
    }

    .advantages-mini-one {
        top: 0;
        right: -4px;
    }

    .advantages-mini-two {
        bottom: 0;
        left: -4px;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: 0;
    }

    .documentation-container {
        gap: 45px;
    }

    .documentation-features {
        grid-template-columns: 1fr;
    }

    .code-window code {
        font-size: 9px;
    }

    .testimonial-card {
        min-width: 100%;
        margin-right: 0;
    }

    .testimonial-navigation {
        position: absolute;
        z-index: 4;
        top: 50%;
        width: 37px;
        height: 37px;
        transform: translateY(-50%);
    }

    .testimonial-navigation:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .testimonial-prev {
        left: -9px;
    }

    .testimonial-next {
        right: -9px;
    }

    .testimonial-slider {
        padding: 0 8px;
    }

    .testimonial-card > p {
        min-height: 0;
    }

    .testimonial-dots {
        display: flex;
    }

    .faq-help-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .faq-help-card a {
        width: 100%;
        margin-left: 54px;
    }

    .cta-section {
        padding: 65px 0;
    }

    .cta-card {
        min-height: 0;
        padding: 38px 25px;
        border-radius: 20px;
        text-align: center;
    }

    .cta-content {
        width: 100%;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
        text-align: center;
    }
}


/* =====================================================
   EXTRA SMALL
===================================================== */
@media (max-width: 400px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-statistics {
        grid-template-columns: 1fr;
    }

    .dashboard-stat-card:nth-child(2) {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .advantages-mini-card {
        transform: scale(0.85);
    }

    .performance-bar {
        grid-template-columns: 70px 1fr 28px;
    }
}


/* =====================================================
   REDUCE MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}   
