body {
    background: linear-gradient(120deg, #191e2e 0%, #23263b 100%);
    font-family: 'Inter', 'Poppins', 'Roboto', Arial, sans-serif;
    color: #ecf0f7;
    min-height: 100vh;
}
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: rgba(21, 25, 43, 0.98);
    border-radius: 2rem;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    margin: 5.2rem auto 3rem auto;
    max-width: 900px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}
@media (max-width: 800px) {
    .hero {
    margin-top: 4.1rem;
    }
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.13;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-bg svg {
    width: 700px;
    max-width: 99vw;
    height: auto;
    filter: blur(0.5px);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-weight: 800;
    font-size: 2.3rem;
    letter-spacing: -2px;
    margin-bottom: 1.1rem;
    color: #fff;
}
.hero p {
    font-size: 1.15rem;
    color: #bfc7d6;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary {
    background: linear-gradient(90deg, #7367f0, #55e7fc);
    border: none;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px 0 rgba(115,103,240,0.18);
    transition: 0.2s;
    color: #fff;
}
.btn-primary:hover {
    filter: brightness(0.93);
    box-shadow: 0 6px 18px 0 rgba(115,103,240,0.13);
}
.btn-outline-primary {
    border: 2px solid #55e7fc;
    color: #55e7fc;
    background: none;
    font-weight: 500;
    border-radius: 2rem;
    padding: 0.8rem 2.2rem;
    margin-left: 0.7rem;
    transition: 0.2s;
}
.btn-outline-primary:hover {
    background: #191e2e;
    color: #fff;
    border-color: #7367f0;
}
.about-section, .services-section, .cta-section {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: rgba(35, 38, 59, 0.93);
    border-radius: 2rem;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.11);
    padding: 2.6rem 2rem;
}
.about-section img {
    max-width: 290px;
    margin: 0 auto;
    display: block;
    filter: grayscale(1) brightness(1.14) contrast(1.10) opacity(0.90);
}
.main-content {
    max-width: 820px;
    margin: 6.5rem auto 2.5rem auto;
    background: rgba(35,38,59,0.98);
    border-radius: 2rem;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.10);
    padding: 2.8rem 2.3rem;
}
.main-content h1 {
    color: #55e7fc;
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.main-content h2 {
    color: #7367f0;
    font-size: 1.22rem;
    font-weight: 700;
    margin-top: 2.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}
.main-content ul {
    margin-left: 1.2rem;
    margin-bottom: 1.3rem;
}
.main-content a {
    color: #55e7fc;
    text-decoration: underline;
}
.main-content a:hover {
    color: #7367f0;
}.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 1.5rem;
}
.service-card {
    background: #222540;
    border-radius: 1.6rem;
    box-shadow: 0 2px 8px 0 rgba(115,103,240,0.08);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    border: 1.5px solid #252a41;
}
.service-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px 0 rgba(85,231,252,0.10);
    border-color: #55e7fc;
}
.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #55e7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
}
.service-card h4 {
    font-weight: 700;
    font-size: 1.12rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: #fff;
}
.service-card p {
    font-size: 0.97rem;
    color: #bfc7d6;
    margin-bottom: 0;
}
.trusted-section {
    max-width: 900px;
    margin: 0 auto 2.8rem auto;
    text-align: center;
    color: #7d859e;
    font-size: 1.13rem;
}
.trusted-logos {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}
.trusted-logos img {
    height: 2.3rem;
    opacity: 0.74;
    filter: grayscale(1) brightness(1.08);
    margin: 0.2rem 0;
}
.cta-section {
    background: linear-gradient(120deg, #7367f0 0%, #55e7fc 100%);
    color: #fff;
    text-align: center;
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    box-shadow: 0 4px 24px 0 rgba(85,231,252,0.13);
}
.cta-section h2 {
    font-weight: 800;
    font-size: 2.0rem;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    color: #e6f7ff;
}
.footer {
    text-align: center;
    color: #7d859e;
    font-size: 0.98rem;
    padding: 2.1rem 1rem 1.2rem 1rem;
    margin-top: 1.5rem;
}
.footer a {
    color: #55e7fc;
    margin: 0 0.7rem;
    text-decoration: none;
    transition: 0.18s;
}
.footer a:hover {
    text-decoration: underline;
}
.nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}