@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap');
:root {
    --bg-1: #05070c;
    --bg-2: #0a1220;
    --bg-3: #0f1d33;
    --text: #f5f7fb;
    --muted: rgba(245, 247, 251, 0.76);
    --line: rgba(255, 255, 255, 0.12);
    --blue: #1e88ff;
    --blue-2: #55a8ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.metade-azul {
    color: var(--blue);
}

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

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.hero-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero-shell>canvas,
.hero-shell .vanta-canvas {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(18px);
    background: rgba(5, 7, 12, 0.48);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    margin: 0 auto;
    margin-top: 20px;
    width: 90%;
    border-radius: 50px;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    color: var(--text);
    align-items: center;
}

.brand-logo {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.22));
}

.brand-logo img {
    width: 80px;
    height: auto;
}

.brand span {
    font-size: 1rem;
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0.62rem 1rem;
    border-radius: 999px;
}

.nav a {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 0.35rem 0.1rem;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #fff;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: #268dff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.links-redes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.links-redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.links-redes a:hover {
    color: #268dff;
    background: rgba(38, 141, 255, 0.08);
    border-color: rgba(38, 141, 255, 0.28);
    transform: translateY(-1px);
}

.links-redes i {
    font-size: 1rem;
    line-height: 1;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #fff;
}

.hero {
    height: auto;
    position: relative;
    display: grid;
    align-items: center;
    padding: 20px 0;
    height: 90vh;
    z-index: 1;
}

.hero-grid {
    width: min(calc(100% - 40px), 1400px);
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.hero-copy {
    max-width: 640px;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(30, 136, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

.hero h1 {
    margin: 18px 0 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    letter-spacing: -0.05em;
}

.hero p {
    margin: 22px 0 0;
    max-width: 68ch;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    box-shadow: 0 16px 34px rgba(30, 136, 255, 0.26);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
}

.hero-media {
    position: relative;
    min-height: 440px;
    border-radius: 30px;
    padding: 18px;
    overflow: hidden;
}

.hero-media::before {
    content: '';
    position: absolute;
    inset: auto auto -20% -18%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(36px);
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    min-height: 404px;
    object-fit: cover;
    border-radius: 22px;
}

@media (max-width: 768px) {
    .header-inner {
        min-height: 72px;
    }
    .menu-toggle {
        display: inline-block;
        background-color: none;
    }
    .nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 10px;
        padding: 16px 14px;
        border-radius: 22px;
        background: rgba(7, 10, 16, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav a {
        text-align: center;
        padding: 0.7rem 0.9rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }
    .links-redes {
        display: none;
    }
    .hero {
        min-height: calc(100vh - 72px);
        padding: 20px 0 42px;
    }
    .hero-grid {
        width: min(calc(100% - 32px), 1400px);
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .hero-copy {
        max-width: 100%;
        text-align: center;
    }
    .hero h1 {
        max-width: 100%;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-media {
        min-height: 320px;
    }
    .hero-video {
        min-height: 284px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }
    .hero-grid {
        width: min(calc(100% - 24px), 1400px);
        padding: 16px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .hero-copy {
        text-align: left;
    }
    .hero-actions {
        justify-content: stretch;
    }
    .hero-media {
        border-radius: 22px;
        padding: 12px;
        min-height: 250px;
    }
    .hero-video {
        min-height: 226px;
        border-radius: 18px;
    }
    .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.7rem);
        max-width: 100%;
    }
}

.process-section {
    padding: 88px 0 96px;
    background: radial-gradient(circle at top center, rgba(38, 141, 255, 0.08), transparent 34%), linear-gradient(180deg, #070a10 0%, #090d15 100%);
}

.process-wrap {
    width: min(calc(100% - 32px), 1400px);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #268dff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-head h2 {
    margin: 16px 0 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 18px auto 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.process-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-card {
    position: relative;
    padding: 28px 24px 30px;
    min-height: 290px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 141, 255, 0.06), transparent 40%);
    pointer-events: none;
}

.process-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #268dff;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(38, 141, 255, 0.28);
}

.process-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin: 16px auto 28px;
    border-radius: 50%;
    color: #268dff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.process-icon i {
    font-size: 1.5rem;
}

.process-card h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.process-card p {
    margin: 14px 0 0;
    text-align: center;
    color: rgba(245, 247, 251, 0.72);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .process-grid-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .process-section {
        padding: 72px 0 80px;
    }
    .process-grid-cards {
        grid-template-columns: 1fr;
    }
    .process-card {
        min-height: auto;
    }
}

.pentest-section {
    padding: 56px 0 100px;
    background: radial-gradient(circle at 18% 20%, rgba(30, 136, 255, 0.14), transparent 28%), radial-gradient(circle at 82% 78%, rgba(38, 141, 255, 0.10), transparent 24%), linear-gradient(180deg, #06070c 0%, #05060a 100%);
}

.pentest-wrap {
    width: min(calc(100% - 32px), 1180px);
}

.pentest-head {
    margin-bottom: 56px;
}

.pentest-steps {
    display: grid;
    gap: 40px;
}

.pentest-step {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
}

.pentest-step.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.pentest-step.reverse .pentest-visual {
    order: 2;
}

.pentest-step.reverse .pentest-copy {
    order: 1;
}

.pentest-copy {
    position: relative;
    padding-top: 0;
    max-width: 560px;
}

.step-index {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: rgba(30, 136, 255, 0.12);
    border: 1px solid rgba(38, 141, 255, 0.65);
    box-shadow: 0 0 0 6px rgba(38, 141, 255, 0.06);
}

.pentest-copy h3 {
    margin: 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    letter-spacing: -0.04em;
}

.pentest-copy p {
    margin: 14px 0 0;
    max-width: 50ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.pentest-visual {
    position: relative;
    min-height: 240px;
    width: 100%;
}

.visual-left {
    justify-self: start;
}

.visual-right {
    justify-self: end;
}

.mock-window {
    position: relative;
    width: min(100%, 390px);
    min-height: 220px;
    border-radius: 20px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(16, 20, 32, 0.96), rgba(8, 11, 18, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.mock-window-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(38, 141, 255, 0.5), rgba(38, 141, 255, 0.08));
    margin-bottom: 16px;
}

.mock-window-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
    min-height: 162px;
}

.mock-panel {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-blue {
    background: linear-gradient(180deg, rgba(38, 141, 255, 0.24), rgba(38, 141, 255, 0.06));
}

.panel-dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.mock-card {
    position: absolute;
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(30, 136, 255, 0.16);
    border: 1px solid rgba(38, 141, 255, 0.24);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.mock-card-primary {
    left: -18px;
    bottom: -14px;
    min-width: 170px;
}

.mock-card-primary span {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.mock-card-primary strong,
.mock-card-secondary strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    margin-top: 2px;
}

.mock-card-primary p,
.mock-card-secondary p {
    margin: 4px 0 0;
    color: rgba(245, 247, 251, 0.76);
    font-size: 0.82rem;
    line-height: 1.4;
}

.mock-card-secondary {
    right: -8px;
    top: 22px;
    min-width: 182px;
    background: rgba(255, 255, 255, 0.04);
}

.mock-card-secondary i {
    color: #268dff;
    margin-bottom: 6px;
}

.mock-window-alt,
.mock-window-report,
.mock-window-final {
    width: min(100%, 390px);
}

.mock-window-dashboard {
    display: grid;
    gap: 14px;
    padding: 10px 6px 0;
}

.dashboard-chip {
    display: inline-flex;
    width: fit-content;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.76rem;
    background: rgba(38, 141, 255, 0.16);
    border: 1px solid rgba(38, 141, 255, 0.28);
}

.dashboard-graph {
    height: 86px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(38, 141, 255, 0.22), rgba(38, 141, 255, 0.06)), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 50%, transparent 50%);
    background-size: 100% 100%, 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-list {
    display: grid;
    gap: 8px;
}

.dashboard-list span,
.report-line,
.report-meta {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.mock-window-report-body {
    display: grid;
    gap: 12px;
}

.severity {
    width: fit-content;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.severity-high {
    color: #fff;
    background: rgba(38, 141, 255, 0.18);
    border: 1px solid rgba(38, 141, 255, 0.28);
}

.report-title {
    margin-top: 18px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.report-line {
    width: 100%;
    margin: 16px 0 14px;
    background: linear-gradient(90deg, rgba(38, 141, 255, 0.36), rgba(38, 141, 255, 0.06));
}

.report-meta {
    width: 78%;
    margin-bottom: 10px;
}

.report-meta.short {
    width: 56%;
}

.mock-window-score {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    padding-top: 10px;
}

.score-ring {
    width: 110px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 141, 255, 0.28) 0 38%, rgba(255, 255, 255, 0.02) 39% 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.score-ring span {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.score-bars {
    display: grid;
    gap: 12px;
}

.score-bars span {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(38, 141, 255, 0.58), rgba(38, 141, 255, 0.06));
}

.pentest-cta {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

@media (max-width: 1024px) {
    .pentest-step,
    .pentest-step.reverse {
        grid-template-columns: 1fr;
    }
    .pentest-step.reverse .pentest-visual,
    .pentest-step.reverse .pentest-copy {
        order: initial;
    }
    .pentest-visual {
        justify-self: center;
    }
    .pentest-copy {
        text-align: center;
        max-width: 100%;
    }
    .pentest-copy p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .pentest-section {
        padding: 20px 0 80px;
    }
    .mock-window,
    .mock-window-alt,
    .mock-window-report,
    .mock-window-final {
        width: 100%;
    }
    .mock-card-primary,
    .mock-card-secondary {
        position: static;
        margin-top: 14px;
        width: 100%;
    }
    .mock-window-score {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .pentest-cta {
        margin-top: 36px;
    }
}

.founders-section {
    background: #06070a;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-card {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background-color: #0a0a0d;
    background-size: cover;
    background-position: center top;
}

.founder-card-left {
    background-image: url('assets/img/img-teste-1.png');
    background-position: center;
}

.founder-card-right {
    background-image: url('assets/img/img-teste-2.png');
    background-position: center;
}

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.88) 100%), linear-gradient(90deg, rgba(38, 141, 255, 0.10), transparent 40%);
}

.founder-content {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 78px;
    z-index: 1;
    color: #fff;
}

.founder-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: #ff1b1b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.founder-content h3 {
    margin: 0;
    max-width: 12ch;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.founder-content p {
    margin: 22px 0 0;
    max-width: 54ch;
    font-size: 1.03rem;
    line-height: 1.8;
    color: rgba(245, 247, 251, 0.92);
}

.founder-line {
    width: 100%;
    max-width: 88%;
    height: 1px;
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
    .founder-card {
        min-height: 620px;
    }
    .founder-content {
        bottom: 56px;
    }
}

@media (max-width: 640px) {
    .founder-card {
        min-height: 520px;
    }
    .founder-content {
        left: 6%;
        right: 6%;
        bottom: 36px;
    }
    .founder-content h3 {
        max-width: 100%;
    }
    .founder-line {
        max-width: 100%;
    }
}

.cta-strip {
    position: relative;
    padding: 140px 0 150px;
    background: radial-gradient(circle at 50% 40%, rgba(38, 141, 255, 0.08), transparent 28%), radial-gradient(circle at 10% 25%, rgba(255, 255, 255, 0.04), transparent 22%), linear-gradient(180deg, #06070a 0%, #0b0d11 100%);
    overflow: hidden;
}

.cta-strip::before,
.cta-strip::after {
    content: '';
    position: absolute;
    inset: auto;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-strip::before {
    width: 280px;
    height: 280px;
    left: -70px;
    top: 10%;
    background: rgba(38, 141, 255, 0.14);
}

.cta-strip::after {
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: 12%;
    background: rgba(38, 141, 255, 0.08);
}

.cta-strip-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #268dff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.cta-strip h2 {
    margin: 22px 0 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4.4vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.cta-strip p {
    margin: 20px auto 0;
    max-width: 62ch;
    color: rgba(245, 247, 251, 0.72);
    font-size: 1.04rem;
    line-height: 1.8;
}

.cta-strip-btn {
    margin-top: 34px;
    min-width: 240px;
    padding-left: 1.7rem;
    padding-right: 1.7rem;
}

@media (max-width: 768px) {
    .cta-strip {
        padding: 100px 0 110px;
    }
    .cta-strip-btn {
        width: auto;
        min-width: 220px;
    }
}

@media (max-width: 520px) {
    .cta-strip {
        padding: 84px 0 92px;
    }
    .cta-strip-btn {
        width: 100%;
        min-width: 0;
    }
}

.testimonials-section {
    padding: 72px 0 92px;
    background:
        radial-gradient(circle at 50% 0%, rgba(38, 141, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #080b12 0%, #090d15 100%);
}

.testimonials-wrap {
    width: min(calc(100% - 32px), 1180px);
}

.testimonials-head {
    max-width: 760px;
    margin: 0 auto 34px;
}

.testimonials-head h2 {
    margin: 16px 0 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
    text-align: center;
}

.testimonials-head p {
    margin: 16px auto 0;
    max-width: 62ch;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.testimonial-card-featured {
    background: linear-gradient(180deg, rgba(38, 141, 255, 0.18), rgba(255, 255, 255, 0.05));
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #268dff, #1a4f9d);
}

.testimonial-top h3 {
    margin: 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.08rem;
}

.testimonial-top span {
    color: rgba(245, 247, 251, 0.62);
    font-size: 0.88rem;
}

.testimonial-card p {
    margin: 0;
    color: rgba(245, 247, 251, 0.78);
    line-height: 1.8;
    min-height: 108px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 18px;
    color: #268dff;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 54px 0 72px;
    }

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

    .testimonial-card p {
        min-height: 0;
    }
}

.contact-section {
    padding: 40px 0 92px;
    background: linear-gradient(180deg, #090d15 0%, #06070a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 24px;
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
}

.contact-copy {
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-copy h2 {
    margin: 16px 0 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
}

.contact-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-points div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-points strong {
    display: block;
    color: #268dff;
    margin-bottom: 4px;
}

.contact-points span {
    color: rgba(245, 247, 251, 0.76);
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(245, 247, 251, 0.76);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(38, 141, 255, 0.45);
    background: rgba(38, 141, 255, 0.08);
}

.contact-form .btn {
    width: fit-content;
    min-width: 180px;
    margin-top: 6px;
    align-self: start;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 24px 0 72px;
    }

    .contact-copy,
    .contact-form {
        padding: 22px;
    }

    .contact-form .btn {
        width: 100%;
        min-width: 0;
        align-self: stretch;
    }
}

.team-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #070a10 0%, #0b0d13 100%);
}

.team-wrap {
    width: min(calc(100% - 32px), 1180px);
}

.team-head {
    max-width: 720px;
    margin: 0 auto 34px;
}

.team-head h2 {
    margin: 16px 0 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
    text-align: center;
}

.team-head p {
    margin: 16px auto 0;
    max-width: 60ch;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.team-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.team-card-highlight {
    background: linear-gradient(180deg, rgba(38, 141, 255, 0.18), rgba(255, 255, 255, 0.05));
}

.team-photo {
    position: relative;
    height: 230px;
    background: linear-gradient(180deg, #dfe4ea 0%, #cfd7e3 100%);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.team-photo-focus img {
    object-position: center 18%;
    transform: scale(1);
}

.team-photo-blue {
    background: linear-gradient(180deg, rgba(38, 141, 255, 0.12), rgba(17, 23, 35, 0.1));
}

.team-photo-blue img {
    background-position: center;
}

.team-body {
    padding: 18px 18px 20px;
}

.team-role {
    display: inline-flex;
    color: #268dff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.team-body h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.22rem;
    letter-spacing: -0.03em;
}

.team-body p {
    margin: 0;
    color: rgba(245, 247, 251, 0.74);
    line-height: 1.7;
    min-height: 74px;
}

.team-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.team-socials a:hover {
    color: #268dff;
    border-color: rgba(38, 141, 255, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .team-section {
        padding: 24px 0 80px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-photo {
        height: 250px;
    }
    .team-body p {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 2;
        backdrop-filter: blur(18px);
        background: rgba(5, 7, 12, 0.48);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
        display: flex;
        margin: 0 auto;
        margin-top: 0px;
        width: 100%;
        border-radius: 0px;
    }
    .hero {
        height: auto;
        width: auto;
    }
    .hero-copy h1 {
        max-width: 100%;
        font-size: 2rem;
    }
}

.site-footer {
    padding: 52px 0 22px;
    background: radial-gradient(circle at 20% 0%, rgba(38, 141, 255, 0.10), transparent 28%), linear-gradient(180deg, #070a10 0%, #05060a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-brand-link {
    display: inline-flex;
    margin-bottom: 14px;
}

.footer-brand p {
    margin: 0;
    color: rgba(245, 247, 251, 0.72);
    line-height: 1.8;
}

.footer-col h3 {
    margin: 0 0 16px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.footer-col {
    display: grid;
    gap: 10px;
}

.footer-col a {
    color: rgba(245, 247, 251, 0.72);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #268dff;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    color: #268dff;
    border-color: rgba(38, 141, 255, 0.35);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(245, 247, 251, 0.64);
}

.footer-bottom a:hover {
    color: #268dff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 0 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
