@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Sora:wght@400;500;600;700&display=swap");
:root {
    color-scheme: dark;
    --bg: #060607;
    --bg-soft: #0b0d10;
    --panel: #0f1217;
    --panel-strong: #111723;
    --text: #f2f6ff;
    --muted: #9aa4b3;
    --accent: #2f8cff;
    --accent-2: #2f8cff;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    --header-height: 72px;
}

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

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #0c1320 0%, #060607 55%, #050506 100%);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    padding-top: var(--header-height);
}

body.nav-open {
    overflow: hidden;
}

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

.page {
    position: relative;
    overflow: hidden;
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), radial-gradient(circle at 20% 10%, rgba(47, 140, 255, 0.1), transparent 60%);
    background-size: 120px 120px, cover;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.container-2 {
    width: 100%;
    height: auto;
    padding: 0px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: var(--header-height);
    background: rgba(6, 6, 7, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Sora", sans-serif;
    font-weight: 600;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: radial-gradient(circle at top, #2f8cff, #1a2b4d);
    position: relative;
    box-shadow: 0 0 20px rgba(47, 140, 255, 0.4);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    background: #07090d;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text {
    display: flex;
    align-items: center;
}

.brand-text img {
    width: 100%;
    height: 50px;
}

.brand-text span {
    margin-top: 5px;
}

.brand-text .accent {
    color: var(--accent);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.95rem;
    color: var(--muted);
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 12;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #1f6fe0);
    color: #f7fbff;
    box-shadow: 0 16px 30px rgba(47, 140, 255, 0.35);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-small {
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--accent);
    color: #f7fbff;
}

.hero {
    position: relative;
    padding: 100px 0 120px;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

#hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    background: linear-gradient( 180deg, rgba(5, 8, 12, 0) 0%, rgba(5, 8, 12, 0.55) 45%, rgba(6, 10, 16, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

#hero .container {
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: center;
    justify-items: center;
}

.hero-content h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    line-height: 1.1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-content .accent {
    color: var(--accent);
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0 34px;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-2);
}

.eyebrow.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(47, 140, 255, 0.12);
    border: 1px solid rgba(47, 140, 255, 0.3);
}

.eyebrow.pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(47, 140, 255, 0.7);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    color: var(--muted);
    text-align: center;
}

.hero-content {
    text-align: center;
}

.trust-row h3 {
    font-size: 1.4rem;
    font-family: "Sora", sans-serif;
    color: var(--text);
}

.hero-visual {
    display: grid;
    gap: 18px;
    align-items: center;
    justify-items: end;
}

.hero-card {
    width: 100%;
    max-width: 520px;
    height: 220px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(47, 140, 255, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover::after {
    opacity: 1;
}

.hero-card.small {
    max-width: 260px;
    height: 110px;
    justify-self: center;
}

.hero-card.wide {
    max-width: 360px;
    height: 110px;
    justify-self: start;
}

.hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(47, 140, 255, 0.08);
    position: absolute;
    top: 18px;
    left: 18px;
}

.hero-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    border: 2px solid rgba(47, 140, 255, 0.7);
}

.hero-icon.chip::after {
    border-radius: 6px;
}

.hero-icon.shield::after {
    border-radius: 12px;
}

.hero-lines {
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-lines::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 60%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.section {
    padding: 90px 0;
}

.section.blue {
    background: linear-gradient(to left, rgba(5, 7, 10, 0) 0%, rgba(33, 115, 239, 0.13) 100%);
}

.section-divider {
    position: relative;
    height: 70px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(8, 12, 18, 0.9) 100%);
}

.hero+.section-divider {
    height: 120px;
    background: linear-gradient(180deg, rgba(5, 8, 12, 0) 0%, rgba(6, 10, 16, 0.2) 15%, rgba(8, 12, 18, 0.75) 55%, rgba(8, 12, 18, 1) 100%);
}

.hero+.section-divider::before,
.hero+.section-divider::after {
    opacity: 0;
}

#hero::before {
    height: 90px;
    background: linear-gradient(180deg, rgba(5, 8, 12, 0) 0%, rgba(5, 8, 12, 0.35) 55%, rgba(6, 10, 16, 0.75) 100%);
}

.section-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(47, 140, 255, 0.18) 0%, transparent 40%), repeating-linear-gradient(90deg, rgba(47, 140, 255, 0.15) 0 2px, transparent 2px 40px);
    opacity: 0.5;
}

.section-divider::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 14px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.7), transparent);
    box-shadow: 0 0 18px rgba(47, 140, 255, 0.6);
}

.section.alt {
    background: #080a0e;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 24px;
}

.cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0 6px;
    cursor: grab;
}

.carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 22px;
    will-change: transform;
}

.carousel .card {
    min-width: 520px;
    height: 300px;
    flex: 0 0 320px;
}

@media (max-width: 900px) {
    .carousel .card {
        min-width: 280px;
        flex: 0 0 280px;
    }
}

@media (max-width: 640px) {
    .carousel .card {
        min-width: 240px;
        flex: 0 0 240px;
    }
}

.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 2;
}

.cards-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.case-card,
.quote-card {
    background: linear-gradient(180deg, #0f1319, #0a0c10) transparent;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.card {
    padding-top: 74px;
}

.card-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(47, 140, 255, 0.08);
    border: 1px solid rgba(47, 140, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    box-shadow: inset 0 0 0 2px rgba(47, 140, 255, 0.15);
    font-size: 1.05rem;
}

.card h3,
.case-card h3,
.quote-card strong {
    font-family: "Sora", sans-serif;
}

.card p,
.case-card p,
.quote-card p {
    color: var(--muted);
    margin-top: 10px;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.pill-grid span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.split-panel {
    display: grid;
    gap: 20px;
}

.panel-card {
    background: var(--panel-strong);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
}

.panel-card h3 {
    font-family: "Sora", sans-serif;
}

.metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.metric strong {
    color: var(--accent);
    font-size: 1.2rem;
}

.avatars {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #1d4f9a);
    border: 2px solid #07090d;
}

.timeline {
    display: grid;
    gap: 18px;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.timeline-item {
    display: grid;
    gap: 12px;
    background: transparent;
    padding: 10px 0;
}

.timeline-item span {
    font-family: "Sora", sans-serif;
    font-size: 2.4rem;
    color: #2f8cff;
}

.timeline-item h3 {
    font-family: "Sora", sans-serif;
}

.timeline-item p {
    color: var(--muted);
}

.case-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(47, 140, 255, 0.12);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.case-meta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.quote-card {
    display: grid;
    gap: 16px;
}

.quote-card::before {
    content: "“”";
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.2rem;
    color: rgba(47, 140, 255, 0.35);
}

.quote-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-meta .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #1d4f9a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.quote-meta span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.cta {
    padding: 80px 0;
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #0b111b, #0d131c);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(47, 140, 255, 0.2);
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-box p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 560px;
}

.faq details {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    background: #0b0d11;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq summary::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--accent);
}

.faq details[open] summary::after {
    content: "–";
}

.faq p {
    color: var(--muted);
    margin-top: 12px;
}

.contact {
    background: linear-gradient(to right, rgba(5, 7, 10, 0) 0%, rgba(39, 121, 245, 0.177) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-cards div {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
}

.contact-form {
    background: var(--panel);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #0b0f16;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    color: var(--text);
    font-family: inherit;
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
}

.site-footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #050506;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.footer-grid h4 {
    font-family: "Sora", sans-serif;
    margin-bottom: 12px;
}

.footer-grid a {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 26px;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .site-nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        gap: 18px;
        background: rgba(5, 7, 10, 0.96);
        padding: calc(var(--header-height) + 20px) 20px 32px;
        border-radius: 0;
        border: none;
        box-shadow: none;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-toggle {
        display: flex;
    }
    .site-nav a {
        font-size: 1.15rem;
        color: var(--text);
    }
    .site-nav .btn {
        width: min(260px, 90vw);
        justify-content: center;
    }
    .cta-box {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 70px 0 90px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        width: 100%;
    }
    .section {
        padding: 70px 0;
    }
}