:root {
    --navy-950: #07111f;
    --navy-900: #0b1728;
    --navy-850: #102039;
    --navy-800: #142742;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --cyan-400: #22d3ee;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --container-width: 1380px;
    --header-height: 72px;
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 28px;
    --shadow-large: 0 30px 90px rgba(2, 8, 23, 0.42);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;

    background: var(--navy-950);
    color: var(--white);

    font-family:
        "Inter",
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);

    border-bottom: 1px solid rgba(148, 163, 184, 0.08);

    background: rgba(7, 17, 31, 0.60);

    backdrop-filter: blur(22px);

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.site-header.scrolled {
    background: rgba(7, 17, 31, 0.90);

    border-bottom: 1px solid rgba(148, 163, 184, 0.14);

    box-shadow: 0 14px 40px rgba(2, 8, 23, 0.28);
}

.navbar {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.brand-logo {
    display: block;
    width: 184px;
    height: auto;
}

.brand-mark {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 4px solid var(--blue-500);
    border-left-width: 7px;
    border-radius: 6px 22px 22px 6px;
}

.brand-mark::before {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 7px;
    width: 3px;
    border-radius: 999px;
    background: var(--blue-400);
    content: "";
}

.brand-mark-building {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 13px;
    height: 20px;
    border-radius: 2px 2px 1px 1px;
    background:
        linear-gradient(to right,
            transparent 0 3px,
            rgba(255, 255, 255, 0.85) 3px 5px,
            transparent 5px 8px,
            rgba(255, 255, 255, 0.85) 8px 10px,
            transparent 10px),
        var(--blue-600);
}

.brand-mark-building::before {
    position: absolute;
    top: -5px;
    left: 3px;
    width: 7px;
    height: 5px;
    border-radius: 2px 2px 0 0;
    background: var(--blue-600);
    content: "";
}

.brand-name {
    color: var(--white);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.brand-name span {
    color: var(--blue-400);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a,
.login-link {
    position: relative;
    color: var(--slate-300);
    font-size: 14px;
    font-weight: 600;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.nav-links a:hover,
.login-link:hover {
    color: var(--white);
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-400);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.mobile-menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-navigation {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 750;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

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

.button-small {
    min-height: 43px;
    padding: 0 18px;
    font-size: 14px;
}

.button-light {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--white);
    color: var(--navy-950);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.button-light:hover {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.3);
}

.hero {
    position: relative;
    min-height: 940px;
    overflow: hidden;
    padding: 145px 0 105px;
    background:
        radial-gradient(circle at 78% 16%,
            rgba(37, 99, 235, 0.23),
            transparent 29%),
        radial-gradient(circle at 15% 85%,
            rgba(34, 211, 238, 0.09),
            transparent 27%),
        linear-gradient(155deg, #07111f 0%, #0b1728 58%, #0c1d34 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(148, 163, 184, 0.035) 1px,
            transparent 1px);
    background-size: 46px 46px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-glow-left {
    bottom: -130px;
    left: -140px;
    width: 370px;
    height: 370px;
    background: rgba(34, 211, 238, 0.17);
}

.hero-glow-right {
    top: 60px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: rgba(37, 99, 235, 0.22);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 88px;
}

.hero-content {
    width: 100%;
    max-width: 680px;
    justify-self: start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(30, 64, 175, 0.13);
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 500;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.11);
}

.hero h1 {
    max-width: 760px;

    color: var(--white);

    font-size: clamp(64px, 6vw, 92px);
    font-weight: 700;
    letter-spacing: -3.5px;
    line-height: 1.02;
}

.hero h1 span {
    display: block;
    background: linear-gradient(105deg,
            #ffffff 0%,
            #93c5fd 42%,
            #22d3ee 100%);
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 620px;
    margin-top: 28px;

    color: var(--slate-300);

    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 40px;
}

.button-primary {
    background: linear-gradient(135deg,
            var(--blue-500),
            var(--blue-600));
    color: var(--white);
    box-shadow: 0 14px 38px rgba(37, 99, 235, 0.38);
}

.button-primary:hover {
    box-shadow: 0 19px 46px rgba(37, 99, 235, 0.48);
}

.button-primary span {
    font-size: 20px;
    line-height: 1;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions .button {
    min-height: 50px;
    padding-inline: 24px;
    font-size: 15px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--slate-400);
    font-size: 12px;
    font-weight: 600;
}

.trust-icon {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    color: var(--green-400);
    font-size: 11px;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 980px;
    justify-self: end;
}

.dashboard-frame {
    position: relative;
    z-index: 2;
    width: min(100%, 1080px);
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        var(--shadow-large),
        0 0 0 1px rgba(255, 255, 255, 0.035);
    transform:
        perspective(1800px) rotateY(-3deg) rotateX(1deg) scale(1.08);
    transform-origin: center center;
}

.dashboard-topbar {
    display: flex;
    height: 43px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    padding: 0 14px;
    background: rgba(9, 20, 35, 0.96);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.35);
}

.window-controls span:first-child {
    background: #fb7185;
}

.window-controls span:nth-child(2) {
    background: #fbbf24;
}

.window-controls span:nth-child(3) {
    background: #4ade80;
}

.dashboard-address {
    width: 210px;
    margin: 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 7px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--slate-400);
    font-size: 9px;
    text-align: center;
}

.dashboard-preview {
    overflow: hidden;
    background: var(--slate-100);
}

.dashboard-screenshot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}



.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 166px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    padding: 13px 15px;
    background: rgba(10, 25, 45, 0.91);
    box-shadow: 0 18px 45px rgba(2, 8, 23, 0.38);
    backdrop-filter: blur(16px);
}

.floating-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.13);
    color: var(--green-400);
    font-size: 17px;
    font-weight: 800;
}

.floating-card div {
    display: grid;
}

.floating-card small {
    color: var(--slate-400);
    font-size: 9px;
}

.floating-card strong {
    color: var(--white);
    font-size: 13px;
}

.floating-card-sales {
    top: -28px;
    right: 22px;
}

.floating-card-stock {
    bottom: -29px;
    left: -24px;
}

.trusted-section {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--slate-200);
    background: var(--white);
    color: var(--slate-900);
}

.trusted-layout {
    display: grid;
    min-height: 118px;
    align-items: center;
    gap: 22px;
}

.trusted-label {
    color: var(--slate-600);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.trusted-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.trusted-items span {
    position: relative;

    color: var(--slate-600);

    font-size: 15px;
    font-weight: 650;
}

.trusted-items span:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: -18px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--blue-400);

    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .trusted-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
    }

    .trusted-items {
        justify-content: center;
        gap: 18px;
    }
}

@media (max-width: 620px) {
    .trusted-items {
        flex-direction: column;
        gap: 14px;
    }

    .trusted-items span::after {
        display: none;
    }
}


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

    .features-pricing-section,
    .faq-section,
    .cta-section {
        padding: 88px 0;
    }

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

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

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

/* ==========================================
   FEATURES + PRICING
========================================== */

.features-pricing-section {
    background: #fff;
    padding: 132px 0;
    color: var(--slate-900);
}

.features-pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 64px;
    align-items: start;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.features-intro h2 {
    margin-top: 8px;
    max-width: 660px;

    font-size: clamp(44px, 4.2vw, 60px);
    font-weight: 700;

    letter-spacing: -1.4px;
    line-height: 1.15;
}

.features-intro p {
    max-width: 610px;
    margin-top: 18px;
    color: var(--slate-600);
    font-size: 17px;
    line-height: 1.8;
}

.features-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-top: 26px;
    padding-bottom: 5px;

    border-bottom: 1px solid rgba(37, 99, 235, 0.28);

    color: var(--blue-600);

    font-size: 15px;
    font-weight: 750;

    transition:
        gap .2s ease,
        border-color .2s ease;
}

.features-link span {
    transition: transform .2s ease;
}

.features-link:hover {
    gap: 14px;
    border-color: var(--blue-600);
}

.features-link:hover span {
    transform: translateX(3px);
}

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

.compact-feature-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    min-height: 305px;

    padding: 32px;

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.03);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.compact-feature-card:hover {
    transform: translateY(-8px);

    border-color: #93c5fd;

    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.10),
        0 10px 24px rgba(37, 99, 235, 0.08);
}

.compact-feature-icon {

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 18px;

    background: #eff6ff;

    color: var(--blue-600);
}

.compact-feature-icon svg {
    width: 27px;
    height: 27px;
}

.compact-feature-card h3 {
    margin-bottom: 16px;

    font-size: clamp(19px, 2vw, 22px);

    font-weight: 800;

    letter-spacing: -0.5px;

    line-height: 1.25;

    color: var(--slate-900);

    text-wrap: balance;
}

.compact-feature-card p {

    color: var(--slate-600);

    font-size: 15px;

    line-height: 1.85;

}

.pricing-panel {
    position: sticky;
    top: 110px;
    align-self: start;
}

.pricing-panel h2 {
    margin: 10px 0 14px;

    font-size: clamp(36px, 3.2vw, 46px);
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -1.2px;
}

.pricing-description {
    margin-bottom: 28px;
    color: var(--slate-600);
}

.pricing-card {
    position: relative;
    overflow: hidden;

    border: 1px solid #dbeafe;
    border-radius: 24px;

    padding: 44px;

    background:
        linear-gradient(180deg,
            rgba(239, 246, 255, 0.85) 0%,
            #ffffff 34%);

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 8px 24px rgba(37, 99, 235, 0.06);
}

.pricing-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 4px;

    background: linear-gradient(90deg,
            var(--blue-600),
            #60a5fa);

    content: "";
}

.pricing-plan-name {
    color: var(--slate-900);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.pricing-amount {
    margin: 22px 0 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--slate-200);
}

.pricing-amount span {
    font-size: 18px;
}

.pricing-amount strong {
    display: block;
    margin: 6px 0;
    font-size: 64px;
    line-height: 1;
    color: var(--blue-600);
}

.pricing-features {
    display: grid;
    gap: 20px;

    margin: 0 0 32px;
    padding: 0;

    list-style: none;
}

.pricing-features li {
    position: relative;

    min-height: 24px;
    padding-left: 34px;

    color: var(--slate-700);

    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

.pricing-features li::before {
    position: absolute;
    top: 1px;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #dbeafe;
    color: var(--blue-600);

    content: "✓";

    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.pricing-button {
    width: 100%;
    margin-top: 10px;
    justify-content: center;

    background: linear-gradient(135deg,
            var(--blue-500),
            var(--blue-600));

    color: #fff;

    box-shadow: 0 14px 38px rgba(37, 99, 235, 0.30);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

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

    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.42);
}

.pricing-note {
    margin-top: 18px;

    text-align: center;

    color: var(--slate-500);

    font-size: 13px;
    line-height: 1.6;
}

.features-cta {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    padding: 38px 40px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    background:
        radial-gradient(circle at top right,
            rgba(96, 165, 250, 0.35),
            transparent 42%),
        linear-gradient(135deg, #2563eb, #1d4ed8);

    color: var(--white);

    box-shadow: 0 22px 55px rgba(37, 99, 235, 0.20);
}

.features-cta p {
    margin-bottom: 8px;

    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.features-cta span {
    display: block;
    max-width: 520px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    line-height: 1.7;
}

.features-cta-actions {
    display: flex;
    gap: 16px;
}

.features-cta-primary {
    background: #fff;
    color: #1d4ed8;
}

.features-cta-secondary {
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: #fff;
}

/* ==========================================
   ABOUT
========================================== */

.about-section {
    padding: 132px 0;
    background: var(--navy-900);
    color: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 90px;
    align-items: center;
}

.about-content h2 {
    max-width: 680px;
    margin-top: 8px;

    font-size: clamp(42px, 4.2vw, 58px);

    font-weight: 700;

    line-height: 1.12;
    letter-spacing: -1.5px;
}

.about-content>p {
    max-width: 650px;
    margin-top: 22px;

    color: var(--slate-300);

    font-size: 17px;
    line-height: 1.8;
}

.about-content>p+p {
    margin-top: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    margin-top: 46px;
}

.about-point {
    padding-top: 20px;

    border-top: 1px solid rgba(148, 163, 184, 0.22);

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.about-point:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.55);
}

.about-point strong {
    display: block;
    margin-bottom: 8px;

    color: var(--white);

    font-size: 15px;
    font-weight: 750;
    line-height: 1.4;
}

.about-point span {
    display: block;

    color: var(--slate-400);

    font-size: 13px;
    line-height: 1.65;
}

.about-visual {
    display: grid;
    gap: 20px;
}

.about-stat {
    position: relative;
    overflow: hidden;

    padding: 36px;

    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.045);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 55px rgba(2, 6, 23, 0.22);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.about-stat:hover {
    transform: translateY(-6px);

    border-color: rgba(96, 165, 250, 0.45);

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 30px 65px rgba(2, 6, 23, 0.28);
}

.about-stat-primary {
    border-color: rgba(96, 165, 250, 0.30);

    background:
        radial-gradient(circle at top right,
            rgba(96, 165, 250, 0.28),
            transparent 46%),
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.32),
            rgba(37, 99, 235, 0.10));
}

.about-stat span {
    display: block;
    margin-bottom: 10px;

    color: var(--blue-400);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-stat strong {
    display: block;
    max-width: 340px;

    color: var(--white);

    font-size: 25px;
    font-weight: 750;
    letter-spacing: -0.35px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 700px) {
    .about-section {
        padding: 88px 0;
    }

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

    .about-content h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .compact-feature-card h3 {
        font-size: 18px;
    }

    .compact-feature-card {
        min-height: auto;
    }
}

/* ==========================================
   FAQ
========================================== */

.faq-section {
    padding: 148px 0;
    background: var(--slate-50);
    color: var(--slate-900);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 76px;
    align-items: start;
}

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

.faq-intro h2 {
    max-width: 480px;
    margin-top: 8px;

    font-size: clamp(38px, 3.8vw, 50px);
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -1.4px;
}

.faq-intro>p:last-child {
    max-width: 440px;

    margin-top: 22px;

    color: var(--slate-600);

    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.85;
}

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

.faq-item {
    overflow: hidden;

    border: 1px solid var(--slate-200);
    border-radius: 18px;

    background: var(--white);

    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);

    border-color: #bfdbfe;

    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 28px;
    cursor: pointer;
    color: var(--slate-900);
    font-size: 16px;
    font-weight: 650;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #eff6ff;
    color: var(--blue-600);

    font-size: 21px;
    font-weight: 500;
    line-height: 1;

    transition:
        transform 180ms ease,
        background 180ms ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
    background: #dbeafe;
}

.faq-item p {
    max-width: 680px;

    padding: 0 28px 28px;

    color: var(--slate-600);

    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.05px;
    line-height: 1.85;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 620px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-intro h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .faq-item summary {
        min-height: 66px;
        padding: 0 18px;
        font-size: 15px;
    }

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

/* ==========================================
   FINAL CTA
========================================== */

.cta-section {
    padding: 132px 0;
    background: #fff;
}

.cta-card {
    position: relative;
    overflow: hidden;

    padding: 96px 72px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;

    background:
        radial-gradient(circle at top right,
            rgba(147, 197, 253, 0.34),
            transparent 42%),
        radial-gradient(circle at bottom left,
            rgba(30, 64, 175, 0.30),
            transparent 44%),
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);

    color: #fff;
    text-align: center;

    box-shadow:
        0 30px 70px rgba(30, 64, 175, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-card h2 {
    margin: 18px auto 24px;

    max-width: 760px;

    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 700;

    line-height: 1.12;
    letter-spacing: -1.4px;
}

.cta-card p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.84);

    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.9;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-top: 52px;

}

.cta-primary {

    background: #fff;

    color: #2563eb;

}

.cta-secondary {

    border: 1px solid rgba(255, 255, 255, .25);

    background: transparent;

    color: #fff;

}

.cta-card .section-label {
    color: #bfdbfe;
}

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

    max-width: 880px;

    margin: 56px auto 0;
    padding-top: 34px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;

    text-align: center;
}

.cta-contact-item span {
    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cta-contact-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: break-word;
}

/* ==========================================
   LEGAL PAGES
========================================== */

.legal-page {
    min-height: 100vh;
    padding: 150px 0 120px;
    background: var(--slate-50);
    color: var(--slate-900);
}

.legal-page .container {
    max-width: 920px;
}

.legal-page h1 {
    margin-top: 10px;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 700;

    letter-spacing: -2px;
    line-height: 1.08;
}

.legal-updated {
    margin-top: 14px;

    color: var(--slate-500);

    font-size: 15px;
    font-weight: 600;
}

.legal-content {
    margin-top: 56px;
}

.legal-content h2 {
    margin: 48px 0 18px;

    color: var(--slate-900);

    font-size: 30px;
    font-weight: 700;

    letter-spacing: -0.8px;
}

.legal-content p {
    margin-bottom: 22px;

    color: var(--slate-700);

    font-size: 17px;
    line-height: 1.9;
}

.legal-content ul {
    margin: 20px 0 40px 22px;
}

.legal-content li {
    margin-bottom: 14px;

    color: var(--slate-700);

    line-height: 1.8;
}

.legal-page>.container>p:last-child {
    max-width: 760px;
    margin-top: 28px;

    color: var(--slate-600);

    font-size: 18px;
    line-height: 1.85;
}

@media (max-width: 700px) {
    .legal-page {
        padding: 120px 0 88px;
    }

    .legal-page h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .legal-page>.container>p:last-child {
        font-size: 16px;
    }
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    padding: 96px 0 36px;
    background: #050d18;
    color: var(--slate-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 80px;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand .brand {
    margin-bottom: 22px;
}

.footer-brand p {
    margin-bottom: 18px;
    color: var(--slate-400);
    font-size: 14px;
    line-height: 1.8;
}

.footer-brand strong {
    color: var(--white);
    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 14px;
}

.footer-column a,
.footer-column p {
    color: var(--slate-400);
    font-size: 13px;
    line-height: 1.7;
    transition: color 180ms ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding-top: 24px;
    font-size: 12px;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.footer-meta p {
    margin: 0;
    color: var(--slate-400);
    font-size: 12px;
    line-height: 1.6;
}

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

.footer-bottom a {
    color: var(--slate-400);
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-brand-logo {
    display: block;
    width: 180px;
    height: auto;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .site-footer {
        padding-top: 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 19px;
    }

    .hero {
        padding-top: 154px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 82px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-description {
        max-width: 680px;
    }

    .hero-visual {
        width: min(100%, 880px);
        margin-inline: auto;
    }

    .dashboard-frame {
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .features-pricing-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .pricing-panel {
        position: static;
        width: min(100%, 520px);
    }
}

@media (max-width: 820px) {
    .site-header {
        height: 70px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-navigation {
        position: absolute;
        top: 70px;
        right: 14px;
        left: 14px;
        display: none;
        overflow: hidden;
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 18px;
        padding: 18px;
        background: rgba(7, 17, 31, 0.98);
        box-shadow: 0 24px 60px rgba(2, 8, 23, 0.45);
        backdrop-filter: blur(20px);
    }

    .mobile-navigation.open {
        display: block;
    }

    .mobile-navigation nav {
        display: grid;
    }

    .mobile-navigation nav a {
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        padding: 14px 4px;
        color: var(--slate-200);
        font-size: 15px;
        font-weight: 650;
    }

    .mobile-navigation-actions {
        display: grid;
        gap: 12px;
        margin-top: 18px;
    }

    .mobile-login-link {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        color: var(--white);
        font-weight: 700;
    }

    .hero {
        min-height: auto;
        padding: 134px 0 90px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .dashboard-frame {
        transform: none;
    }

    .floating-card-sales {
        top: -35px;
        right: 10px;
    }

    .floating-card-stock {
        bottom: -33px;
        left: 10px;
    }

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

    .features-cta-actions {
        width: 100%;
    }

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

    .cta-contact-item {
        text-align: center;
        padding: 18px 16px;
    }

    .cta-card {
        padding: 64px 22px;
    }
}

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

    .brand-name {
        font-size: 18px;
    }

    .hero {
        padding-top: 118px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -2.8px;
    }

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

    .button {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .hero-visual {
        margin-top: 10px;
    }

    .dashboard-preview {
        overflow: hidden;
        background: var(--slate-100);
    }

    .dashboard-screenshot {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .floating-card {
        min-width: 142px;
        padding: 10px 12px;
    }

    .floating-card-sales {
        top: -28px;
        right: -4px;
    }

    .floating-card-stock {
        bottom: -35px;
        left: -4px;
    }
}