:root {
    --bg: #070b14;
    --bg-soft: #0b1220;
    --surface: rgba(16, 23, 39, 0.72);
    --surface-strong: #111a2b;
    --line: rgba(148, 163, 184, 0.26);
    --text: #e5ecfb;
    --muted: #96a4c3;
    --brand: #60a5fa;
    --brand-2: #22d3ee;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --shadow: 0 26px 60px rgba(2, 10, 24, 0.55);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(850px 420px at 8% -8%, rgba(34, 211, 238, 0.20) 0%, rgba(34, 211, 238, 0) 70%),
        radial-gradient(900px 520px at 92% 0%, rgba(96, 165, 250, 0.24) 0%, rgba(96, 165, 250, 0) 72%),
        linear-gradient(180deg, #070b14 0%, #050812 100%);
    line-height: 1.6;
}

h1,
h2,
h3,
.btn {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.site-shell {
    position: relative;
    overflow-x: clip;
}

.blur-orb {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(55px);
    opacity: 0.38;
    z-index: 0;
}

.orb-a {
    width: 260px;
    height: 260px;
    background: #38bdf8;
    top: 130px;
    left: -80px;
}

.orb-b {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: 740px;
    right: -90px;
}

.orb-c {
    width: 240px;
    height: 240px;
    background: #22d3ee;
    top: 1700px;
    left: 50%;
    transform: translateX(-50%);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(6, 10, 20, 0.68);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.btn-pill {
    border-radius: 999px;
    padding: .58rem 1.1rem;
    font-weight: 600;
    border-width: 1px;
}

.btn-outline-light {
    border-color: rgba(229, 236, 251, 0.32);
    color: var(--text);
}

.btn-outline-light:hover {
    color: #07101f;
    background: #dbeafe;
    border-color: #dbeafe;
}

.btn-brand {
    background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
    border: 0;
    color: #081020;
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.35);
}

.btn-brand:hover {
    color: #081020;
    filter: brightness(1.05);
}

.section-space {
    padding: 5.6rem 0;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .78rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.36);
    background: rgba(30, 41, 59, 0.48);
    color: #bae6fd;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(11, 18, 32, 0.85));
    box-shadow: var(--shadow);
    padding: 1.1rem;
}

.hero-wrap::after {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border-radius: 16px;
    background: rgba(7, 13, 28, 0.36);
    pointer-events: none;
    z-index: 1;
}

.hero-img {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(186, 230, 253, 0.22);
}

.hero-copy {
    position: absolute;
    top: 50%;
    right: 1.1rem;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    background: rgba(9, 15, 32, 0.46);
    border: 1px solid rgba(186, 230, 253, 0.25);
    backdrop-filter: blur(2px);
    border-radius: 14px;
    padding: .95rem 1.1rem;
    padding-right: clamp(1.25rem, 4vw, 4.5rem);
    max-width: min(53vw, 770px);
}

.hero-wrap .title {
    margin: 0 0 .8rem auto;
    max-width: 100%;
    color: #f6fbff;
    text-shadow: 0 10px 28px rgba(5, 12, 28, 0.6);
}

.hero-wrap .subtitle {
    margin: 0 0 0 auto;
    max-width: 44ch;
    color: #d6e5ff;
    text-shadow: 0 6px 20px rgba(5, 12, 28, 0.6);
}

.title {
    font-size: clamp(2rem, 7vw, 5.5rem);
    line-height: 1.04;
    margin: 1rem auto 1rem;
    max-width: 950px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.7rem;
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

.grid-card,
.pricing-card,
.testimonial-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 26, 43, 0.86), rgba(11, 18, 32, 0.86));
    box-shadow: var(--shadow);
}

.grid-card {
    padding: 1.35rem;
    height: 100%;
    transition: transform .2s ease, border-color .2s ease;
}

.grid-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.55);
}

.chip {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .86rem;
    font-weight: 700;
    color: #7dd3fc;
    border: 1px solid rgba(125, 211, 252, 0.4);
    background: rgba(14, 165, 233, 0.1);
    margin-bottom: .85rem;
}

.grid-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #dfebff;
    text-align: right;
    padding-left: 50px;
}

.pricing-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 2.2rem;
    text-align: center;
}

.price-tag {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.45);
    color: #bae6fd;
    padding: .3rem .74rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: rgba(14, 165, 233, 0.12);
}

.price {
    font-size: clamp(2.3rem, 7vw, 3.2rem);
    margin: .75rem 0 .7rem;
    line-height: 1;
}

.muted {
    color: var(--muted);
}

.testimonial-card {
    height: 100%;
    padding: 1.4rem;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    margin: 0 12px;
}

.cta {
    border: 1px solid rgba(125, 211, 252, 0.42);
    border-radius: var(--radius-xl);
    background: linear-gradient(130deg, rgba(29, 78, 216, 0.65), rgba(8, 47, 73, 0.85));
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 32px 66px rgba(8, 47, 73, 0.4);
}

.contact-card {
    padding: 2rem;
    max-width: 780px;
    margin: 0 auto;
}

.form-label {
    color: #c4d1ea;
}

.form-control {
    background: rgba(5, 11, 22, 0.75);
    color: #e5ecfb;
    border-color: rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: .75rem .95rem;
}

.form-control::placeholder {
    color: #7f91b3;
}

.form-control:focus {
    color: #e5ecfb;
    background: rgba(5, 11, 22, 0.88);
    border-color: rgba(125, 211, 252, 0.8);
    box-shadow: 0 0 0 .2rem rgba(34, 211, 238, 0.2);
}

.contact-message {
    border-radius: 12px;
    padding: .85rem 1rem;
    font-weight: 500;
}

.contact-message-success {
    border: 1px solid rgba(52, 211, 153, 0.5);
    background: rgba(16, 185, 129, 0.12);
    color: #86efac;
}

.contact-message-error {
    border: 1px solid rgba(248, 113, 113, 0.5);
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
}

footer {
    border-top: 1px solid var(--line);
    color: #7e90b2;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .section-space {
        padding: 4.4rem 0;
    }

    .cta {
        padding: 2.25rem 1.2rem;
    }

    .contact-card {
        padding: 1.4rem;
    }

    .hero-copy {
        max-width: 70vw;
        padding-right: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-copy {
        top: auto;
        right: 0;
        bottom: 1.1rem;
        transform: none;
        max-width: 92%;
        padding-right: 1rem;
    }

    .hero-wrap .title {
        font-size: clamp(1.6rem, 8.5vw, 2.2rem);
        margin-bottom: .45rem;
    }

    .hero-wrap .subtitle {
        font-size: .95rem;
        line-height: 1.4;
    }
}

@media (max-width: 500px) {
    .section-space {
        padding: 2.4rem 0;
    }

    .cta {
        padding: 2.25rem 1.2rem;
    }

    .contact-card {
        padding: 1.4rem;
    }

    .hero-copy {
        max-width: 70vw;
        padding-right: 1.2rem;
    }
}