/* ── Variables ─────────────────────────────── */
:root {
    --black: #07090d;
    --dark: #0d1117;
    --dark-2: #141920;
    --dark-3: #1c2330;
    --white: #fff;
    --gray-1: #f0f2f5;
    --gray-2: #8b95a1;
    --gray-3: #4a5568;
    --green: #00c471;
    --green-d: #00a85e;
    --green-glow: rgba(0, 196, 113, .18);
    --font: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --nav-h: 72px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

/* ── Navbar ────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none
}

.nav-brand img {
    height: 38px;
    width: 38px;
    border-radius: 9px;
    object-fit: cover
}

.nav-brand-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.15;
}

.nav-brand-text span {
    color: var(--green)
}

.nav-brand-sub {
    font-size: .68rem;
    font-weight: 500;
    color: var(--gray-2);
    letter-spacing: .04em
}

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

.nav-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: .4rem .85rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .07)
}

.nav-cta {
    background: var(--green) !important;
    color: var(--black) !important;
    font-weight: 700 !important;
    border-radius: 9px;
    padding: .5rem 1.2rem !important;
    box-shadow: 0 0 20px var(--green-glow);
    transition: background .2s, box-shadow .2s !important;
}

.nav-cta:hover {
    background: var(--green-d) !important;
    box-shadow: 0 0 32px rgba(0, 196, 113, .35) !important
}

/* ── HERO ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    opacity: .12;
    filter: grayscale(100%);
}

.hero-grad {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0, 196, 113, .07) 0%, transparent 60%),
        linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%);
}

/* Subtle grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, .6) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(0, 196, 113, .1);
    border: 1px solid rgba(0, 196, 113, .25);
    border-radius: 999px;
    padding: .4rem 1.1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 2rem;
}

.hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.75rem;
    max-width: 800px;
}

.hero h1 em {
    font-style: normal;
    color: var(--green)
}

.hero p {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green);
    color: var(--black);
    border: none;
    border-radius: 10px;
    padding: .9rem 2rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 36px var(--green-glow);
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
    background: var(--green-d);
    transform: translateY(-2px);
    box-shadow: 0 0 52px rgba(0, 196, 113, .4)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: .85rem 1.8rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05)
}

/* Trust row */
.hero-trust {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-2);
}

.trust-item::before {
    content: '✓';
    color: var(--green);
    font-weight: 800
}

.trust-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .1)
}

/* ── Section generic ───────────────────────── */
.section {
    padding: 6rem 0
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .85rem;
    display: block;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-2);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

/* ── Solutions Grid ────────────────────────── */
.solutions {
    background: var(--dark)
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sol-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, transform .2s, box-shadow .2s;
    text-decoration: none;
}

.sol-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 196, 113, .12);
}

.sol-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 196, 113, .1);
    border: 1px solid rgba(0, 196, 113, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.sol-card-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 2rem;
    background: var(--dark);
    cursor: pointer;
    width: 100%;
    height: 100%;
    min-height: 200px;
    box-sizing: border-box;
}

.sol-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.sol-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .5rem;
}

.sol-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: .75rem;
}

.sol-card-simple h3 {
    margin-bottom: 0;
    font-size: 1.45rem;
}

.sol-card p {
    font-size: .91rem;
    color: var(--gray-2);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.75rem;
}

.sol-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 196, 113, .1);
    border: 1px solid rgba(0, 196, 113, .2);
    color: var(--green);
    border-radius: 9px;
    padding: .65rem 1.25rem;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: background .2s, border-color .2s;
}

.sol-btn:hover {
    background: rgba(0, 196, 113, .2);
    border-color: rgba(0, 196, 113, .5)
}

.sol-btn svg {
    transition: transform .2s
}

.sol-card:hover .sol-btn svg {
    transform: translateX(3px)
}

/* ── USP Section ───────────────────────────── */
.usp {
    background: var(--black);
    position: relative;
    overflow: hidden
}

.usp::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 196, 113, .06) 0%, transparent 70%);
}

.usp-header {
    text-align: center;
    margin-bottom: 4rem
}

.usp-header .section-sub {
    margin: 0 auto
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.usp-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    transition: border-color .25s;
}

.usp-card:hover {
    border-color: rgba(0, 196, 113, .3)
}

.usp-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 196, 113, .15);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -.05em;
}

.usp-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem
}

.usp-card p {
    font-size: .9rem;
    color: var(--gray-2);
    line-height: 1.7
}

/* ── Team Section ──────────────────────────── */
.team {
    background: var(--dark)
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.team-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: border-color .25s, box-shadow .2s;
}

.team-card:hover {
    border-color: rgba(0, 196, 113, .3);
    box-shadow: 0 12px 40px rgba(0, 196, 113, .08)
}

.team-photo {
    width: 180px;
    flex-shrink: 0;
    background: var(--dark-3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block
}

.team-info {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.team-role {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .5rem;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .85rem;
    letter-spacing: -.015em
}

.team-bio {
    font-size: .88rem;
    color: var(--gray-2);
    line-height: 1.7
}

/* ── Contact CTA strip ─────────────────────── */
.cta-strip {
    background: var(--green);
    padding: 5rem 0;
    text-align: center;
}

.cta-strip h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--black);
    margin-bottom: .85rem;
}

.cta-strip p {
    color: rgba(0, 0, 0, .6);
    font-size: 1.1rem;
    margin-bottom: 2.25rem
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: .9rem 2rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.btn-dark:hover {
    background: #1a1f2a;
    transform: translateY(-2px)
}

/* ── Footer ────────────────────────────────── */
footer {
    background: var(--black);
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem
}

.footer-brand img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    object-fit: cover
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white)
}

.footer-brand-name span {
    color: var(--green)
}

.footer-desc {
    font-size: .85rem;
    color: var(--gray-2);
    line-height: 1.65
}

.footer-col h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    text-decoration: none;
    margin-bottom: .55rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--white)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.5rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .25);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

/* ── Responsive ────────────────────────────── */
@media(max-width:900px) {
    .sol-grid {
        grid-template-columns: 1fr
    }

    .usp-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .nav-links a:not(.nav-cta) {
        display: none
    }
}

@media(max-width:600px) {
    :root {
        --nav-h: 60px
    }

    .container {
        padding: 0 1.25rem
    }

    .section {
        padding: 4rem 0
    }

    .hero-inner {
        padding: 4.5rem 1.25rem 3.5rem
    }

    .hero h1 {
        font-size: 2.35rem
    }

    .hero p {
        font-size: 1rem
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-trust {
        gap: 1rem
    }

    .trust-divider {
        display: none
    }

    .section-title {
        font-size: 1.75rem
    }

    .sol-grid {
        gap: 1rem
    }

    .sol-card {
        padding: 1.75rem 1.5rem
    }

    .usp-grid {
        gap: 1rem
    }

    .team-card {
        flex-direction: column
    }

    .team-photo {
        width: 100%;
        height: 220px
    }

    .team-info {
        padding: 1.5rem
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}