﻿.hero h1 {
    font-size: clamp(34px, 6vw, 56px);
    margin-bottom: 18px;
    line-height: 1.25;
}

.hero-subtitle {
    color: var(--text-1);
    font-size: 16px;
}

.hero-visual {
    position: relative;
}

.hero-headline {
    display: grid;
    gap: 18px;
    justify-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(73, 194, 255, 0.4);
    background: rgba(73, 194, 255, 0.1);
    color: var(--text-1);
    font-size: 13px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: left;
}

.hero-feature {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(120, 140, 200, 0.2);
    background: rgba(15, 22, 44, 0.7);
}

    .hero-feature h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .hero-feature p {
        color: var(--text-2);
        font-size: 13px;
    }

.feature-strip {
    padding-top: 20px;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pain h2,
.suite h2,
.industry h2,
.benefits h2,
.proof h2,
.process h2,
.cta h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 12px;
}

.section-lead {
    color: var(--text-1);
    max-width: 520px;
}

.suite {
    background: linear-gradient(180deg, rgba(10, 16, 32, 0.1), rgba(10, 16, 32, 0.6));
}

.suite-copy {
    display: grid;
    gap: 18px;
}

.suite-cards {
    display: grid;
    gap: 18px;
}

.suite-card {
    position: relative;
    padding: 22px;
    border-radius: 999px;
    border: 1px solid rgba(120, 140, 200, 0.25);
    background: rgba(14, 21, 41, 0.8);
    box-shadow: 0 0 0 1px rgba(73, 194, 255, 0.08), 0 16px 40px rgba(7, 12, 28, 0.45);
}

.suite-pill {
    position: absolute;
    left: 26px;
    top: -12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-0), var(--accent-1));
    color: #071022;
    font-size: 12px;
    font-weight: 700;
}

.suite-card-body {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
}

.suite-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent-0);
    font-size: 20px;
    background: radial-gradient(circle, rgba(73, 194, 255, 0.18), rgba(73, 194, 255, 0.02) 60%);
    border: 1px solid rgba(73, 194, 255, 0.35);
}

    .suite-icon::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 1px solid rgba(73, 194, 255, 0.25);
        box-shadow: 0 0 18px rgba(73, 194, 255, 0.35);
    }

    .suite-icon::after {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 50%;
        border: 1px dashed rgba(73, 194, 255, 0.35);
        opacity: 0.6;
    }

.suite-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.suite-card ul {
    margin-top: 6px;
    color: var(--text-2);
    font-size: 13px;
    list-style: disc;
    padding-left: 18px;
}

.suite-card li {
    margin-bottom: 6px;
}

.suite-modules {
    margin-top: 70px;
    text-align: center;
}

.modules-head {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-bottom: 30px;
}

    .modules-head h3 {
        font-size: clamp(24px, 4vw, 34px);
    }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.module-card {
    text-align: left;
    background: rgba(20, 28, 52, 0.9);
    border-radius: 22px;
    border: 1px solid rgba(120, 140, 200, 0.28);
    padding: 26px 24px 24px;
    position: relative;
    box-shadow: 0 18px 40px rgba(8, 12, 26, 0.55);
}

    .module-card::after {
        content: "";
        position: absolute;
        right: 18px;
        top: 26px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-0), var(--accent-1));
        box-shadow: 0 0 12px rgba(73, 194, 255, 0.6);
    }

.module-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(73, 194, 255, 0.25), rgba(77, 99, 255, 0.35));
    border: 1px solid rgba(120, 140, 200, 0.4);
    font-size: 24px;
    color: #f5f7ff;
    margin-bottom: 16px;
}

.module-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.module-card p {
    color: var(--text-2);
    font-size: 13px;
    margin-bottom: 12px;
}

.module-card ul {
    color: var(--text-2);
    font-size: 12px;
    list-style: disc;
    padding-left: 18px;
}

.module-card li {
    margin-bottom: 6px;
}

.modules-note {
    margin-top: 20px;
    color: var(--text-2);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .modules-note::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent-1);
        box-shadow: 0 0 10px rgba(77, 99, 255, 0.6);
    }

.industry-wrap {
    display: grid;
    gap: 36px;
}

.industry-head {
    text-align: center;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.industry-stack {
    display: grid;
    gap: 20px;
}

.industry-panel {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(120, 140, 200, 0.25);
    background: rgba(16, 23, 44, 0.85);
    box-shadow: 0 18px 40px rgba(8, 12, 26, 0.55);
    align-items: center;
}

    .industry-panel::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 28px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-0), var(--accent-1));
        box-shadow: 0 0 12px rgba(73, 194, 255, 0.6);
    }

.industry-pill {
    position: absolute;
    left: 24px;
    top: -14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4fd2ff, #4f63ff);
    color: #071022;
    font-size: 12px;
    font-weight: 700;
}

.industry-media {
    height: 220px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(120, 140, 200, 0.28);
    overflow: hidden;
}

.industry-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.industry-body p {
    color: var(--text-1);
    font-size: 14px;
    margin-bottom: 12px;
}

.industry-body ul {
    color: var(--text-2);
    font-size: 13px;
    list-style: disc;
    padding-left: 18px;
}

.industry-body li {
    margin-bottom: 6px;
}

.industry-outcomes {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
}

.outcomes-copy h3 {
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 12px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.outcome-card {
    background: linear-gradient(180deg, rgba(20, 32, 56, 0.95), rgba(37, 78, 120, 0.85));
    border: 1px solid rgba(120, 140, 200, 0.3);
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(8, 12, 26, 0.45);
}

.outcome-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 auto 12px;
    font-size: 20px;
}

.outcome-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 12px;
    color: var(--text-1);
}

.industry-why {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
}

.why-card {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(120, 140, 200, 0.3);
    background: rgba(50, 56, 74, 0.7);
    padding: 36px;
    min-height: 280px;
    display: grid;
    align-content: space-between;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 32px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
}

.case-btn {
    align-self: end;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f7ff;
    color: #101322;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 14px;
}

.case-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #101322;
    color: #fff;
    font-size: 14px;
}

.why-list {
    display: grid;
    gap: 12px;
}

.why-items {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.why-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(120, 140, 200, 0.25);
    background: rgba(24, 32, 52, 0.85);
}

.why-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(73, 194, 255, 0.9), rgba(77, 99, 255, 0.9));
    color: #0c1326;
    font-weight: 900;
}

.why-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 12px;
    color: var(--text-2);
}

.benefits {
    padding-bottom: 40px;
}

.proof {
    background: linear-gradient(180deg, rgba(13, 19, 38, 0.85), rgba(10, 16, 34, 0.1));
}

.process {
    padding-top: 60px;
}

.process-head {
    text-align: center;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 40px;
    text-align: center;
}

.process-step {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.process-number {
    font-size: 72px;
    font-weight: 800;
    color: #5cc2ff;
    letter-spacing: 2px;
    text-shadow: 0 10px 24px rgba(73, 194, 255, 0.35), 0 0 18px rgba(73, 194, 255, 0.35);
}

.process-rule {
    width: 150px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(83, 182, 255, 0), rgba(83, 182, 255, 0.95), rgba(83, 182, 255, 0));
    box-shadow: 0 0 18px rgba(83, 182, 255, 0.55);
    margin-top: -8px;
}

.process-step h3 {
    font-size: 22px;
}

.process-sub {
    color: var(--text-1);
    font-size: 15px;
}

.process-desc {
    color: var(--text-2);
    font-size: 13px;
    max-width: 300px;
}

.process-cta {
    margin-top: 70px;
    text-align: center;
    display: grid;
    gap: 16px;
    justify-items: center;
}

    .process-cta h3 {
        font-size: clamp(24px, 4vw, 36px);
    }

.cases-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.cases-list {
    padding-top: 40px;
}

.cases-stack {
    display: grid;
    gap: 40px;
}

.case-panel {
    display: grid;
    gap: 18px;
    background: rgba(14, 20, 40, 0.9);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(120, 140, 200, 0.25);
    box-shadow: 0 18px 40px rgba(8, 12, 26, 0.55);
}

.case-title {
    font-size: 22px;
    margin-bottom: 4px;
}

.case-subtitle {
    color: var(--text-2);
    font-size: 14px;
}

.case-media {
    height: 220px;
    border-radius: 16px;
    border: 1px solid rgba(120, 140, 200, 0.25);
    background-size: cover;
    background-position: center;
}

.case-media-a {
    background-image: linear-gradient(135deg, rgba(73, 194, 255, 0.2), rgba(10, 16, 34, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400'%3E%3Crect width='800' height='400' fill='%231b2442'/%3E%3Crect x='30' y='40' width='220' height='320' rx='18' fill='%232b3a64'/%3E%3Crect x='280' y='40' width='490' height='160' rx='18' fill='%233b6abf'/%3E%3Crect x='280' y='220' width='490' height='140' rx='18' fill='%232a4a86'/%3E%3C/svg%3E");
}

.case-media-b {
    background-image: linear-gradient(135deg, rgba(77, 99, 255, 0.2), rgba(10, 16, 34, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400'%3E%3Crect width='800' height='400' fill='%231a213b'/%3E%3Crect x='30' y='40' width='220' height='320' rx='18' fill='%232a3b66'/%3E%3Crect x='280' y='40' width='490' height='320' rx='18' fill='%233f7fc4'/%3E%3C/svg%3E");
}

.case-media-c {
    background-image: linear-gradient(135deg, rgba(47, 227, 176, 0.2), rgba(10, 16, 34, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400'%3E%3Crect width='800' height='400' fill='%231a213b'/%3E%3Crect x='30' y='40' width='220' height='320' rx='18' fill='%232a3b66'/%3E%3Crect x='280' y='40' width='490' height='320' rx='18' fill='%23397bb7'/%3E%3C/svg%3E");
}

.case-media-d {
    background-image: linear-gradient(135deg, rgba(73, 194, 255, 0.2), rgba(10, 16, 34, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400'%3E%3Crect width='800' height='400' fill='%231a213b'/%3E%3Crect x='30' y='40' width='220' height='320' rx='18' fill='%232a3b66'/%3E%3Crect x='280' y='40' width='490' height='320' rx='18' fill='%234070b0'/%3E%3C/svg%3E");
}

.case-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.case-block {
    background: rgba(18, 26, 48, 0.9);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(120, 140, 200, 0.2);
}

    .case-block h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .case-block ul {
        color: var(--text-2);
        font-size: 13px;
        list-style: disc;
        padding-left: 18px;
    }

    .case-block li {
        margin-bottom: 6px;
    }

.process-panel {
    width: min(100%, 720px);
    margin-top: 20px;
    padding: 24px 28px;
    border-radius: 22px;
    background: rgba(45, 52, 72, 0.85);
    border: 1px solid rgba(120, 140, 200, 0.35);
    text-align: left;
}

    .process-panel ul {
        list-style: none;
        display: grid;
        gap: 12px;
        color: var(--text-1);
        font-size: 14px;
    }

    .process-panel li {
        position: relative;
        padding-left: 34px;
    }

        .process-panel li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 22px;
            height: 22px;
            border-radius: 6px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(73, 194, 255, 0.9), rgba(77, 99, 255, 0.9));
            color: #0b0f1e;
            font-weight: 900;
        }

.cta {
    padding-bottom: 120px;
}

@media (max-width: 980px) {
    .strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .suite-card {
        border-radius: var(--radius-lg);
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .industry-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .industry-media {
        height: 200px;
    }

    .industry-outcomes {
        grid-template-columns: 1fr;
    }

    .industry-why {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .case-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .suite-card {
        padding: 20px;
    }

    .suite-card-body {
        grid-template-columns: 1fr;
    }

    .suite-pill {
        left: 18px;
    }
}
