:root {
    --bg: #05070d;
    --bg-soft: #0b111f;
    --bg-card: rgba(14, 20, 36, 0.82);
    --text: #f3f5fa;
    --muted: #a6afc4;
    --line: rgba(166, 175, 196, 0.2);
    --primary: #5ee9ff;
    --accent: #4f8dff;
    --glow: rgba(94, 233, 255, 0.22);
    --radius: 18px;
    --container: min(1160px, 92vw);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(1000px 460px at 8% -14%, rgba(96, 140, 255, 0.24), transparent 62%),
        radial-gradient(760px 420px at 86% -16%, rgba(94, 233, 255, 0.2), transparent 64%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 95%);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 88px 0;
    position: relative;
}

.section-head {
    max-width: 720px;
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    margin: 0 0 10px;
}

.section-lead {
    color: var(--muted);
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #d4ecff;
    border: 1px solid rgba(212, 236, 255, 0.2);
    background: rgba(79, 141, 255, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(12px);
    background: rgba(5, 7, 13, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    font-size: 1.15rem;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 18px rgba(94, 233, 255, 0.82);
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    color: var(--muted);
    font-size: 0.93rem;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 20px;
    background: linear-gradient(120deg, rgba(94, 233, 255, 0.19), rgba(79, 141, 255, 0.25));
    color: var(--text);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--glow);
    border-color: rgba(94, 233, 255, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.01);
    border-color: var(--line);
}

.btn-sm {
    padding: 10px 15px;
    font-size: 0.88rem;
}

.hero {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 13, 0.58) 0%, rgba(5, 7, 13, 0.9) 60%, rgba(5, 7, 13, 0.98) 100%);
}

.hero-content {
    position: relative;
    max-width: 840px;
    z-index: 1;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    line-height: 1.06;
}

.hero p {
    margin: 18px 0 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #c7d2e8;
    max-width: 670px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.metrics {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 16px;
    max-width: 620px;
}

.metric {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 14px;
}

.metric strong {
    display: block;
    font-size: 1.44rem;
    margin-bottom: 2px;
}

.metric span {
    font-size: 0.86rem;
    color: #bdc6da;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.project-card,
.price-card,
.process-step,
.info-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.project-card:hover,
.price-card:hover,
.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 233, 255, 0.36);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.card h3,
.project-card h3,
.price-card h3,
.process-step h3,
.info-card h3 {
    margin-top: 0;
    font-size: 1.27rem;
}

.muted {
    color: var(--muted);
}

.logo-line {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.logo-ticker {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
    color: #9aa4bb;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.highlight-panel {
    border: 1px solid rgba(94, 233, 255, 0.24);
    border-radius: var(--radius);
    padding: 25px;
    background: radial-gradient(circle at 0% 0%, rgba(94, 233, 255, 0.13), rgba(79, 141, 255, 0.02));
}

.highlight-panel ul,
.card ul,
.price-card ul,
.info-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.highlight-panel li,
.card li,
.price-card li,
.info-card li {
    margin: 9px 0;
    padding-left: 18px;
    position: relative;
    color: #d9e0f1;
}

.highlight-panel li::before,
.card li::before,
.price-card li::before,
.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--primary), var(--accent));
}

.project-card {
    padding: 0;
    overflow: hidden;
}

.project-cover {
    height: 200px;
    background: linear-gradient(140deg, var(--project-hue, rgba(79, 141, 255, 0.58)), rgba(94, 233, 255, 0.18));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.project-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.24), transparent 38%);
}

.project-content {
    padding: 22px;
}

.project-actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.view-btn {
    border: 1px solid rgba(94, 233, 255, 0.32);
    border-radius: 999px;
    padding: 10px 15px;
    background: rgba(94, 233, 255, 0.08);
    color: #d9edff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.view-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(94, 233, 255, 0.52);
    box-shadow: 0 10px 24px rgba(94, 233, 255, 0.16);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 12px;
}

.tag {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d1dbf1;
    font-size: 0.74rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-step span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-weight: 700;
    background: rgba(94, 233, 255, 0.14);
    border: 1px solid rgba(94, 233, 255, 0.3);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.price-grid.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card.premium-value {
    border-color: rgba(94, 233, 255, 0.58);
    box-shadow: 0 16px 44px rgba(94, 233, 255, 0.2);
    transform: translateY(-2px);
}

.value-pill {
    display: inline-flex;
    border: 1px solid rgba(94, 233, 255, 0.36);
    background: rgba(94, 233, 255, 0.14);
    color: #e1f3ff;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.price-note {
    color: #d6e5ff;
    margin: 0;
}

.project-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.project-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 18, 0.72);
    backdrop-filter: blur(8px);
}

.project-modal-dialog {
    width: min(680px, 94vw);
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(9, 15, 28, 0.95), rgba(11, 19, 34, 0.92));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
    padding: 26px;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.26s ease;
}

.project-modal.open .project-modal-dialog {
    transform: translateY(0) scale(1);
}

.project-modal-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.project-modal-title {
    margin: 4px 0 6px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.project-modal-type {
    color: #9ed6ff;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.74rem;
}

.project-modal-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    color: #f0f4ff;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.project-modal-copy {
    color: #ccd7ec;
    margin-top: 8px;
}

.project-modal-meta {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.project-modal-meta strong {
    display: block;
    font-size: 0.82rem;
    color: #9ec9ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.project-modal-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.no-scroll {
    overflow: hidden;
}

.price-card.featured {
    border-color: rgba(94, 233, 255, 0.4);
    box-shadow: 0 10px 38px rgba(94, 233, 255, 0.12);
    position: relative;
}

.price-card .price {
    font-size: 2rem;
    margin: 12px 0;
}

.kicker {
    color: #91c6ff;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-wrap {
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    padding: 18px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #c6cfe2;
    display: none;
}

.faq-item.open p {
    display: block;
}

.cta {
    border: 1px solid rgba(94, 233, 255, 0.28);
    border-radius: 24px;
    padding: 38px;
    background: linear-gradient(130deg, rgba(94, 233, 255, 0.16), rgba(79, 141, 255, 0.08));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.site-footer {
    margin-top: 70px;
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px;
}

.site-footer h4 {
    margin-top: 0;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin: 8px 0;
}

.site-footer a {
    color: #c8d1e7;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(94, 233, 255, 0.34);
    background: rgba(94, 233, 255, 0.11);
    color: #dff2ff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 30px;
    padding: 20px 0 30px;
    color: #9da7bf;
    font-size: 0.9rem;
}

.page-hero {
    padding: 78px 0 24px;
}

.page-hero h1 {
    margin: 8px 0 14px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero p {
    max-width: 700px;
    color: #c2cce2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    background: rgba(11, 17, 31, 0.86);
}

.form-row {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

label {
    font-size: 0.9rem;
    color: #d4ddef;
}

input,
textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    padding: 12px 14px;
    font-family: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(94, 233, 255, 0.28);
    border-color: rgba(94, 233, 255, 0.55);
}

.form-status {
    margin-top: 14px;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: #d9e2f2;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.03);
}

.form-status.success {
    border-color: rgba(76, 227, 158, 0.5);
    background: rgba(76, 227, 158, 0.12);
}

.form-status.error {
    border-color: rgba(255, 121, 121, 0.5);
    background: rgba(255, 121, 121, 0.12);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .card-grid,
    .price-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo-ticker {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .price-grid.pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 4vw;
        right: 4vw;
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(5, 7, 13, 0.94);
        backdrop-filter: blur(12px);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav.open {
        display: flex;
    }

    .metrics,
    .card-grid,
    .price-grid,
    .process-grid,
    .logo-ticker {
        grid-template-columns: 1fr;
    }

    .price-grid.pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 76vh;
        padding: 48px 0;
    }

    .section {
        padding: 66px 0;
    }

    .cta {
        padding: 28px;
    }

    .project-modal {
        padding: 12px;
    }

    .project-modal-dialog {
        padding: 20px;
    }
}
