:root {
    --bg-body: #050816;
    --bg-elevated: #070b1b;
    --bg-elevated-soft: #0b1024;
    --accent: #6c5ce7;
    --accent-soft: rgba(108, 92, 231, 0.12);
    --accent-strong: #a66bff;
    --text-main: #f5f5ff;
    --text-muted: #b3b8d4;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
    --radius-lg: 18px;
    --radius-xl: 28px;
    --transition-fast: 0.18s ease-out;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #141a3f 0, #050816 55%, #02040b 100%);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(
            to bottom,
            rgba(5, 8, 22, 0.92),
            rgba(5, 8, 22, 0.75),
            transparent
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: conic-gradient(
            from 160deg,
            #6c5ce7,
            #a66bff,
            #00cec9,
            #6c5ce7
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-logo::after {
    content: "";
    position: absolute;
    inset: 40%;
    background: radial-gradient(circle, #050816, transparent);
    opacity: 0.9;
}

.brand-logo span {
    position: relative;
    font-size: 0.85rem;
    font-weight: 700;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1.05rem;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    padding: 0.25rem 0;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 2px;
    border-radius: 999px;
    transform-origin: center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: #ffffff;
}

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

.nav-cta {
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: radial-gradient(circle at top left, #6c5ce7, #3b2fa3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    background: radial-gradient(circle at top left, #7d5fff, #4b37d2);
}

.nav-cta span {
    font-size: 0.8rem;
    opacity: 0.85;
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(11, 16, 36, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    position: relative;
    transition: var(--transition-fast);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transition: var(--transition-fast);
}

.nav-toggle span::before {
    top: -5px;
}

.nav-toggle span::after {
    top: 5px;
}

.nav-toggle.is-open span {
    background: transparent;
}

.nav-toggle.is-open span::before {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span::after {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero */

main {
    flex: 1;
}

.hero {
    padding: 3.25rem 0 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0.5rem 0.15rem 0.2rem;
    border-radius: 999px;
    background: rgba(108, 92, 231, 0.09);
    border: 1px solid rgba(155, 135, 245, 0.45);
    margin-bottom: 1rem;
}

.hero-kicker-pill {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #6c5ce7;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker-text {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(2.35rem, 3.1vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 0.9rem;
}

.hero-title span {
    background: linear-gradient(110deg, #a66bff, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 0.97rem;
    max-width: 32rem;
    margin-bottom: 1.15rem;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1.6rem;
    font-size: 0.86rem;
}

.hero-bullet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.hero-bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle, #00cec9, transparent);
    box-shadow: 0 0 0 4px rgba(0, 206, 201, 0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1.3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #6c5ce7, #3b2fa3);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: radial-gradient(circle at top left, #7d5fff, #4b37d2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}

.btn-primary span {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.72rem 1.1rem;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    background: rgba(7, 11, 27, 0.85);
    font-size: 0.86rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color var(--transition-fast),
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.btn-ghost:hover {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(11, 16, 36, 0.98);
    transform: translateY(-1px);
}

.btn-ghost-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.hero-footnote {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-footnote span {
    color: #b2a1ff;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-card {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, #181f4a, #050816 55%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-card-avatar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(circle, #00cec9, #6c5ce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.hero-avatar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.hero-avatar-meta strong {
    font-size: 0.8rem;
}

.hero-avatar-meta span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.hero-card-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(3, 252, 211, 0.08);
    border: 1px solid rgba(0, 206, 201, 0.5);
    font-size: 0.7rem;
    color: #a0fff3;
}

.hero-card-main {
    border-radius: 16px;
    background: radial-gradient(circle at top, #101633, #070b1b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0.9rem 1.1rem;
    margin-bottom: 0.85rem;
}

.hero-card-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hero-toolbar-pills {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.hero-pill {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.hero-slide {
    border-radius: 10px;
    background: radial-gradient(circle at top left, #6c5ce7, #141833);
    padding: 0.5rem 0.55rem;
    font-size: 0.7rem;
    color: #e2dfff;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-slide-title {
    font-weight: 600;
    font-size: 0.72rem;
}

.hero-slide-chart {
    margin-top: auto;
    border-radius: 6px;
    height: 22px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    position: relative;
    overflow: hidden;
}

.hero-slide-chart-bar {
    position: absolute;
    inset: 0;
    width: 65%;
    background: linear-gradient(90deg, #00cec9, #6c5ce7);
    border-radius: 6px;
    opacity: 0.95;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.hero-card-footer strong {
    color: #a7b3ff;
    font-weight: 600;
}

.hero-floating {
    position: absolute;
    inset: auto 6% -20px auto;
    width: 180px;
    border-radius: 16px;
    background: rgba(5, 8, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.75rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hero-floating strong {
    display: block;
    font-size: 0.8rem;
    color: #e5e8ff;
    margin-bottom: 0.15rem;
}

.hero-floating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(108, 92, 231, 0.18);
    color: #d1c7ff;
    margin-top: 0.45rem;
    font-size: 0.7rem;
}

.hero-floating-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #00cec9;
    box-shadow: 0 0 0 3px rgba(0, 206, 201, 0.28);
}

/* Trusted strip */

.trusted {
    padding-bottom: 2.6rem;
}

.trusted-inner {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at top, #0e1533, #050816);
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.trusted-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    color: #8087ff;
}

.trusted-dots {
    display: flex;
    gap: 0.22rem;
}

.trusted-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.trusted-logos {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    align-items: center;
}

.trusted-chip {
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 8, 22, 0.95);
}

/* Sections shared */

section {
    scroll-margin-top: 80px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.7rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: #8087ff;
}

.section-title {
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 30rem;
}

/* How it works */

.how {
    padding: 0 0 3.4rem;
}

.how-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.steps-list {
    display: grid;
    gap: 1.2rem;
}

.step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: flex-start;
}

.step-index {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle, rgba(108, 92, 231, 0.32), #050816);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-body {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.step-note {
    font-size: 0.78rem;
    color: #9499c3;
}

.how-panel {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at top, #141a3b, #050816);
    padding: 1rem 1rem 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.how-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
}

.how-badge {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 206, 201, 0.12);
    color: #a0fff3;
    border: 1px solid rgba(0, 206, 201, 0.65);
    font-size: 0.7rem;
}

.how-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.how-pill {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.how-preview {
    margin-top: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at top left, #6c5ce7, #050816);
    padding: 0.85rem;
    font-size: 0.8rem;
}

.how-preview-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}

.how-preview-meta {
    font-size: 0.75rem;
    color: #d4d7ff;
}

.how-preview-tag {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.55);
    font-size: 0.72rem;
}

.how-preview-slides {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.how-preview-slide {
    border-radius: 8px;
    background: rgba(5, 8, 22, 0.88);
    padding: 0.45rem;
    min-height: 62px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.how-preview-slide-title {
    font-size: 0.7rem;
    font-weight: 600;
}

.how-preview-slide-line {
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00cec9, #6c5ce7);
    width: 70%;
    opacity: 0.85;
}

.how-preview-foot {
    margin-top: 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.how-preview-pill {
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.8);
}

/* Why choose */

.why {
    padding: 0 0 3.4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.why-lead {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 28rem;
}

.why-highlights {
    display: grid;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.why-highlight {
    display: flex;
    gap: 0.6rem;
}

.why-highlight-icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(108, 92, 231, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

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

.why-card {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, #111736, #050816);
    border: 1px solid var(--border-subtle);
    padding: 0.9rem 0.95rem 1rem;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.why-card-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(108, 92, 231, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.why-card-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.why-card-body {
    color: var(--text-muted);
}

.why-card-tag {
    margin-top: auto;
    font-size: 0.74rem;
    color: #9ba3ff;
    opacity: 0.9;
}

/* Testimonials */

.testimonials {
    padding: 0 0 3.4rem;
}

.testimonials-heading {
    align-items: flex-start;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, #111736, #050816), #111736;
    border: 1px solid var(--border-subtle);
    padding: 1rem 1rem 1.1rem;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.testimonial-avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle, #6c5ce7, #00cec9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-quote {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-tag {
    font-size: 0.78rem;
    color: #c5d0ff;
}

/* Examples */

.examples {
    padding: 0 0 3.4rem;
}

.examples-heading {
    align-items: flex-start;
}

/* контейнер слайдера */
.examples-slider {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

/* видима область */
.examples-viewport {
    overflow: hidden;
    flex: 1;
}

/* трек слайдів */
.examples-track {
    display: flex;
    transition: transform 0.25s ease-out;
}

/* кожна картка — один слайд */
.example-card {
    min-width: 100%;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, #181f4a, #050816);
    border: 1px solid var(--border-subtle);
    padding: 1rem 1rem 1.1rem;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.example-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #a6adff;
}

.example-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.example-body {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.example-list {
    list-style: none;
    margin-top: 0.35rem;
    display: grid;
    gap: 0.3rem;
}

.example-list li::before {
    content: "•";
    margin-right: 0.35rem;
    color: #9ba3ff;
}

.example-link {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    color: #c2c7ff;
    text-decoration: underline;
}

/* кнопки навігації */
.examples-nav {
    align-self: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 8, 22, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #e5e8ff;
    transition: background var(--transition-fast), transform var(--transition-fast),
    border-color var(--transition-fast);
}

.examples-nav:hover {
    background: rgba(11, 16, 36, 0.98);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* точки-перемикачі */
.examples-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.examples-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: transform 0.18s ease-out, background 0.18s ease-out;
}

.examples-dot.is-active {
    background: #6c5ce7;
    transform: scale(1.35);
}

/* адаптив */

@media (max-width: 960px) {
    .examples-slider {
        gap: 0.6rem;
    }
}

@media (max-width: 768px) {
    .examples-slider {
        gap: 0.5rem;
    }

    .examples-nav {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}


/* Pricing */

.pricing {
    padding: 0 0 3.4rem;
}

.pricing-heading {
    align-items: flex-start;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.pricing-plan {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, #111736, #050816);
    border: 1px solid var(--border-subtle);
    padding: 1.1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.pricing-plan-featured {
    background: radial-gradient(circle at top left, #6c5ce7, #050816 55%);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-soft);
}

.pricing-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d3d7ff;
    margin-bottom: 0.2rem;
}

.pricing-title {
    font-size: 1rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.pricing-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.15rem;
}

.pricing-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.pricing-features {
    list-style: none;
    display: grid;
    gap: 0.3rem;
    margin: 0.35rem 0 0.8rem;
    padding-left: 0;
}

.pricing-features li::before {
    content: "•";
    margin-right: 0.35rem;
    color: #9ba3ff;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-footnote {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: #e2deff;
    opacity: 0.9;
}

.pricing-note {
    margin-top: 1.3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-note a {
    color: #c2c7ff;
    text-decoration: underline;
}

/* CTA */

.cta {
    padding: 0 0 3.4rem;
}

.cta-inner {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, #6c5ce7, #050816 60%);
    padding: 1.6rem 1.4rem 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.cta-title {
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #e8e6ff;
    max-width: 26rem;
    margin-bottom: 1rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cta-meta {
    font-size: 0.78rem;
    color: #e2deff;
}

.cta-meta span {
    opacity: 0.78;
}

.cta-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    font-size: 0.8rem;
    color: #e8e6ff;
}

.cta-metric {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-metric strong {
    display: block;
    font-size: 0.95rem;
}

/* FAQ */

.faq {
    padding: 0 0 3.4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.faq-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 26rem;
    margin-bottom: 1rem;
}

.faq-note {
    font-size: 0.78rem;
    color: #9ba3ff;
}

.faq-list {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: rgba(5, 8, 22, 0.92);
    padding: 0.35rem 0.75rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 0.85rem 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
    width: 100%;
    text-align: left;
}

.faq-question-text {
    font-size: 0.9rem;
}

.faq-toggle {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease-out;
}

.faq-answer-inner {
    padding: 0 0.2rem 0.9rem;
    font-size: 0.83rem;
    color: var(--text-muted);
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

/* Footer */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner,
    .how-grid,
    .why-grid,
    .faq-grid,
    .cta-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual {
        order: -1;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .cta-metrics {
        justify-content: flex-start;
    }

    .pricing-grid,
    .testimonials-grid,
    .examples-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding-inline: 0.2rem;
    }

    nav {
        position: fixed;
        inset: 58px 0 auto 0;
        background: rgba(5, 8, 22, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 0.75rem 1.25rem 0.95rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-fast),
        opacity var(--transition-fast);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

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

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-inner {
        gap: 2.3rem;
    }

    .hero-card {
        border-radius: 22px;
    }

    .trusted-inner {
        padding-inline: 0.9rem;
    }

    .why-cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-inner {
        padding-inline: 1rem;
    }

    .pricing-grid,
    .testimonials-grid,
    .examples-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.05rem;
    }

    .cta-inner {
        border-radius: 20px;
    }

    .trusted-inner {
        border-radius: 16px;
    }
}
