```css
/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #080b12;
    color: #f5f7fb;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
}

.section {
    padding: 120px 0;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8,11,18,0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrapper {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: #7182ff;
}

.logo small {
    color: #8c94a5;
    font-size: 12px;
    font-weight: 500;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navigation > a,
.dropdown-button {
    color: #aeb5c4;
    font-size: 13px;
    background: none;
    border: none;
    cursor: pointer;
}

.navigation > a:hover,
.dropdown-button:hover {
    color: #ffffff;
}

.nav-dropdown {
    position: relative;
}

.dropdown-button {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: -20px;
    width: 270px;
    padding: 12px;
    background: #111622;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: #9ca4b5;
    font-size: 12px;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background: rgba(113,130,255,0.1);
    color: #ffffff;
}

.header-cta {
    padding: 10px 18px;
    border: 1px solid rgba(113,130,255,0.6);
    border-radius: 6px;
    font-size: 12px;
}

.header-cta:hover {
    background: #7182ff;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    padding-top: 78px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(113,130,255,0.12),
            transparent 35%
        );
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: center;
}

.eyebrow {
    color: #7182ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -4px;
}

.hero h1 span {
    color: #7182ff;
}

.hero-content > p {
    color: #9ca4b5;
    max-width: 620px;
    margin: 28px 0;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.button.primary {
    background: #7182ff;
    color: white;
}

.button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(113,130,255,0.25);
}

.button.secondary {
    border: 1px solid rgba(255,255,255,0.12);
    color: #d5d9e1;
}

.button.secondary:hover {
    border-color: #7182ff;
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 50px;
}

.hero-trust div {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 15px;
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 13px;
}

.hero-trust span {
    font-size: 11px;
    color: #737c8e;
}


/* =========================================
   HERO PANEL
========================================= */

.hero-panel {
    background: linear-gradient(
        145deg,
        #171d2c,
        #0c1019
    );
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.panel-header {
    height: 60px;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 10px;
    color: #7e8798;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5fd09a;
}

.panel-content {
    padding: 35px;
}

.panel-title {
    display: flex;
    justify-content: space-between;
}

.panel-title strong {
    color: #5fd09a;
}

.analytics-chart {
    height: 220px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        );
    background-size: 100% 44px;
}

.chart-path {
    position: absolute;
    width: 140%;
    height: 170px;
    top: 80px;
    left: -20px;
    border-top: 3px solid #7182ff;
    transform: rotate(-7deg);
    border-radius: 50%;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.metrics div {
    padding: 15px;
    background: rgba(255,255,255,0.035);
    border-radius: 6px;
}

.metrics span {
    display: block;
    font-size: 10px;
    color: #747e90;
}

.metrics strong {
    font-size: 19px;
}


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

.about {
    background: #0b0f18;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.section-intro h2,
.section-heading h2,
.why-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-intro h2 span,
.why-content h2 span {
    color: #7182ff;
}

.about-text {
    max-width: 580px;
}

.about-text p {
    color: #8e97a8;
    margin-bottom: 20px;
}

.about-text .large-text {
    color: #e0e3ea;
    font-size: 20px;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: #7182ff;
    font-size: 13px;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background: #080b12;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-heading p {
    color: #8e97a8;
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.service-card {
    padding: 32px;
    min-height: 420px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.015);
    border-radius: 8px;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(113,130,255,0.4);
}

.service-card.featured {
    background: linear-gradient(
        150deg,
        rgba(113,130,255,0.12),
        rgba(255,255,255,0.01)
    );
}

.service-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #7182ff;
    background: rgba(113,130,255,0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.service-card p {
    color: #858e9f;
    font-size: 13px;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #aeb5c3;
    font-size: 11px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* =========================================
   INDUSTRIES
========================================= */

.industries {
    background: #0b0f18;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
}

.industry {
    padding: 40px;
    background: #0b0f18;
}

.industry span {
    color: #7182ff;
    font-size: 11px;
}

.industry h3 {
    margin: 20px 0 10px;
    font-size: 20px;
}

.industry p {
    color: #858e9f;
    font-size: 13px;
}


/* =========================================
   WHY US
========================================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.why-content p {
    color: #8e97a8;
    margin-top: 25px;
    max-width: 500px;
}

.why-list {
    display: grid;
    gap: 25px;
}

.why-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-item > strong {
    color: #7182ff;
}

.why-item h3 {
    font-size: 18px;
}

.why-item p {
    color: #858e9f;
    font-size: 13px;
    margin-top: 7px;
}


/* =========================================
   APPROACH
========================================= */

.approach {
    background: #0b0f18;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.approach-step {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 30px 10px;
}

.approach-step span {
    color: #7182ff;
    font-size: 12px;
}

.approach-step h3 {
    margin: 35px 0 10px;
}

.approach-step p {
    color: #858e9f;
    font-size: 13px;
}


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

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

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

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

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
}

.faq-question span {
    color: #7182ff;
    font-size: 20px;
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: #858e9f;
    font-size: 13px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 100px 0;
}

.contact-box {
    padding: 90px;
    background:
        linear-gradient(
            135deg,
            rgba(113,130,255,0.16),
            rgba(20,25,38,0.9)
        );
    border: 1px solid rgba(113,130,255,0.2);
    border-radius: 12px;
}

.contact-content {
    max-width: 720px;
}

.contact-content h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.contact-content p {
    color: #9ba3b3;
    margin: 25px 0 30px;
    max-width: 600px;
}


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

.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-company p {
    color: #747d8e;
    font-size: 12px;
    max-width: 330px;
    margin-top: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    color: #747d8e;
    font-size: 12px;
}

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

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    color: #666f80;
    font-size: 11px;
}

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

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


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .navigation {
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-panel {
        max-width: 650px;
    }

    .industries-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-grid,
    .why-grid,
    .faq-grid {
        gap: 60px;
    }

}


@media (max-width: 800px) {

    .navigation {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        padding: 25px;
        background: #0b0f18;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    .navigation.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .about-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media (max-width: 550px) {

    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-trust {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-trust div {
        min-width: 100px;
    }

    .services-grid,
    .industries-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 50px 25px;
    }

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

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

}
```
