﻿body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
    color: #1f2937;
}

:root {
    --brand-primary: #2563eb;
    --brand-dark: #0f172a;
    --brand-accent: #f59e0b;
    --brand-soft: #e0e7ff;
}

.hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1e3a8a 55%, var(--brand-primary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 30%), radial-gradient(circle at bottom right, rgba(255,255,255,.10), transparent 25%);
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.section-subtitle {
    color: #64748b;
    max-width: 760px;
    margin: 0 auto;
}

.soft-card {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    background: #fff;
    height: 100%;
}

.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(37, 99, 235, 0.12);
    color: var(--brand-primary);
}

.feature-list li {
    margin-bottom: .75rem;
}

.metric-box {
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}

.badge-soft {
    background: var(--brand-soft);
    color: #3730a3;
    border-radius: 999px;
    padding: .55rem .9rem;
    font-weight: 600;
}

.cta-band {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    border-radius: 2rem;
}

.mock-window {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    background: #fff;
    border: 1px solid #dbe2ea;
}

.mock-header {
    background: linear-gradient(180deg, #eef2f7 0%, #e2e8f0 100%);
    padding: .9rem 1rem;
    display: flex;
    gap: .5rem;
    border-bottom: 1px solid #d7dee7;
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #94a3b8;
}

.mock-body {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
}

.mock-panel {
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #dbe2ea;
    padding: 1rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.mock-label {
    color: #475569;
    font-size: .9rem;
    font-weight: 600;
}

.mock-value {
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.mock-title {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.mock-subtitle {
    color: #64748b;
    font-size: .88rem;
    font-weight: 600;
}

.mock-stat-label {
    color: #475569;
    font-size: .9rem;
    font-weight: 600;
}

.mock-stat-value {
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.mock-bar {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    margin-bottom: .75rem;
    position: relative;
    overflow: hidden;
}

    .mock-bar > span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, var(--brand-primary), #60a5fa);
        border-radius: 999px;
    }

.footer-link {
    color: rgba(255,255,255,.8);
    text-decoration: none;
}

    .footer-link:hover {
        color: #fff;
    }

.contact-card {
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
    border: 1px solid #e5e7eb;
}

.brand-mini {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.topbar {
    background: #0b1220;
    color: #fff;
}

    .topbar .muted-link {
        color: rgba(255,255,255,.78);
        text-decoration: none;
    }

        .topbar .muted-link:hover {
            color: #fff;
        }

.saas-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-brand-copy .brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
}

.header-brand-copy .brand-tagline {
    font-size: .92rem;
    color: #64748b;
    font-weight: 500;
}

.header-owner {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.header-owner-copy {
    text-align: right;
}

    .header-owner-copy .owner-label {
        font-size: .75rem;
        color: #64748b;
        margin-bottom: .15rem;
    }

    .header-owner-copy .owner-name {
        font-size: .98rem;
        font-weight: 700;
        color: var(--brand-dark);
        line-height: 1.2;
    }

.header-logo-frame {
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: .5rem;
}

    .header-logo-frame.app {
        width: 160px;
        height: 95px;
        border-radius: 18px;
        box-shadow: 0 10px 24px rgba(245, 158, 11, .14);
    }

    .header-logo-frame img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.header-cta {
    font-weight: 700;
    padding-inline: 1.25rem;
}

.hero .display-5,
.hero .lead,
.metric-box,
.metric-box .small,
.metric-box .fs-4 {
    text-shadow: none;
}

    .metric-box .fs-4 {
        color: #fff;
        font-weight: 800;
        letter-spacing: .2px;
    }

    .metric-box .small {
        color: rgba(255,255,255,.92) !important;
        font-size: .88rem;
        font-weight: 500;
    }

.hero .lead {
    color: rgba(255,255,255,.96) !important;
    font-size: 1.08rem;
    line-height: 1.9;
}

.hero h1 {
    line-height: 1.25;
    letter-spacing: -.2px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.35;
    color: #fff;
}

.hero-text {
    color: rgba(255,255,255,.78);
    font-size: 1.1rem;
    line-height: 1.9;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    color: rgba(255,255,255,.88);
    font-weight: 600;
}

    .hero-points div {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        padding: .7rem 1rem;
        border-radius: 999px;
    }

    .hero-points i {
        color: #f7c948;
        margin-left: .35rem;
    }

.poster-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 430px;
    background: #071b3a;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

    .poster-card img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

    .poster-card:hover img {
        transform: scale(1.05);
    }

.poster-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(to top, rgba(5, 15, 35, .92), rgba(5, 15, 35, .08));
}

    .poster-overlay h5 {
        font-weight: 800;
        margin-bottom: .5rem;
    }

    .poster-overlay p {
        color: rgba(255,255,255,.78);
        margin-bottom: 0;
        line-height: 1.7;
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .poster-card,
    .poster-card img {
        min-height: 340px;
        height: 340px;
    }
}
@media (max-width: 991.98px) {
    .header-shell {
        flex-direction: column;
        align-items: stretch;
    }

    .header-owner {
        justify-content: space-between;
    }

    .header-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .header-brand {
        align-items: flex-start;
    }

    .header-logo-frame {
        width: 110px;
        height: 64px;
    }

    .header-logo-frame.app {
        width: 72px;
        height: 72px;
    }
}

