* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #05050a;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

.site-header {
    width: 100%;
    background: rgba(5, 5, 10, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: 1150px;
    margin: auto;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #d9d9e8;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: #ffffff;
    font-weight: 700;
}

.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(78, 99, 255, 0.30), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 59, 206, 0.20), transparent 35%),
        linear-gradient(135deg, #05050a, #090912);
    padding: 70px 22px;
}

.hero-content {
    max-width: 1150px;
    margin: auto;
}

.tagline {
    color: #8ea2ff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    max-width: 850px;
    margin-bottom: 24px;
}

.hero-text,
.page-hero p {
    max-width: 720px;
    color: #d6d6e5;
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-primary {
    border: none;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(90deg, #4066ff, #8d4dff, #ff4fc4);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #8ea2ff;
    outline-offset: 3px;
}

.trust-bar {
    max-width: 1050px;
    margin: -45px auto 30px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-bar strong {
    display: block;
    font-size: 1.8rem;
    color: #ffffff;
}

.trust-bar span {
    color: #d6d6e5;
}

.section {
    max-width: 1150px;
    margin: auto;
    padding: 80px 22px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-title h2,
.split h2,
.cta-section h2,
.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-title p,
.split p,
.cta-section p,
.contact-info p {
    color: #d6d6e5;
}

.cards-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card,
.process-card,
.highlight-box,
.contact-form,
.info-box {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card h3,
.process-card h3,
.highlight-box h3,
.info-box h3 {
    margin-bottom: 12px;
}

.card p,
.process-card p,
.highlight-box li,
.info-box p {
    color: #d6d6e5;
}

.card:hover,
.process-card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease;
    border-color: rgba(142, 162, 255, 0.35);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.highlight-box ul {
    display: grid;
    gap: 12px;
}

.process-card span {
    display: inline-block;
    color: #8ea2ff;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero {
    padding: 95px 22px 70px;
    max-width: 1150px;
    margin: auto;
}

.cta-section {
    margin: 40px auto 80px;
    max-width: 1050px;
    padding: 55px 28px;
    text-align: center;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(64, 102, 255, 0.22), rgba(255, 79, 196, 0.14)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 24px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaaabd;
}

.form-note {
    color: #b9b9ca;
    font-size: 0.9rem;
    margin-top: 4px;
}

.info-box {
    margin-top: 26px;
}

.site-footer {
    padding: 30px 22px;
    text-align: center;
    color: #b9b9ca;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 850px) {
    .navbar {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cards-grid,
    .process-grid,
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 90px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
        margin: 20px 18px;
    }
}

@media (max-width: 500px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 18px;
    }

    .navbar {
        padding: 18px;
    }

    .logo-img img {
        height: 34px;
    }
}