@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

.premium-home {
    --ink: #0c1b31;
    --muted: #65758a;
    --line: #d8e2ef;
    --paper: #ffffff;
    --brand: #1f67da;
    --brand-2: #0d3d8a;
    --deep: #07172d;
    --success: #198754;
    --warning: #a56900;
    --accent: #5e35b1;
    --soft-glow: rgba(72, 133, 230, 0.2);
    font-family: 'Sora', 'Segoe UI', sans-serif;
    color: var(--ink);
    position: relative;
}

.premium-home::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--soft-glow) 0%, rgba(72, 133, 230, 0) 70%);
    filter: blur(5px);
    pointer-events: none;
}

.premium-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(1.25rem, 2.4vw, 3rem);
    border: 1px solid rgba(190, 212, 246, 0.45);
    background:
        radial-gradient(90% 150% at 0% 0%, rgba(63, 138, 255, 0.26) 0%, rgba(63, 138, 255, 0) 60%),
        linear-gradient(125deg, #081b34 0%, #0d2a50 52%, #12366a 100%);
    box-shadow: 0 25px 60px rgba(6, 20, 44, 0.4);
}

.hero-gridline {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(178, 210, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(178, 210, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.06));
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.65;
    pointer-events: none;
}

.hero-orb-a {
    width: 270px;
    height: 270px;
    right: -70px;
    top: -60px;
    background: radial-gradient(circle, rgba(126, 186, 255, 0.4), rgba(126, 186, 255, 0));
}

.hero-orb-b {
    width: 340px;
    height: 340px;
    left: -110px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(55, 119, 211, 0.52), rgba(55, 119, 211, 0));
}

.premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 1.15rem;
    position: relative;
    z-index: 1;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0.65rem;
    border-radius: 14px;
    border: 1px solid rgba(195, 220, 255, 0.45);
    background: rgba(245, 250, 255, 0.94);
    box-shadow: 0 8px 26px rgba(0, 15, 40, 0.25);
}

.hero-brand img {
    width: clamp(86px, 10vw, 128px);
    height: auto;
    display: block;
}

.hero-brand strong {
    display: block;
    color: #153f7f;
    font-size: 0.77rem;
    letter-spacing: 0.08em;
}

.hero-brand span {
    display: block;
    color: #406089;
    margin-top: 0.15rem;
    font-size: 0.72rem;
}

.kicker {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: #9dc3ff;
    font-weight: 700;
}

.premium-copy h1 {
    margin: 0.8rem 0 0;
    max-width: 18ch;
    color: #f4f8ff;
    line-height: 1.08;
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    font-weight: 800;
    text-wrap: balance;
}

.subtitle {
    margin: 1rem 0 0;
    max-width: 62ch;
    color: #d1e2ff;
    line-height: 1.68;
    font-size: clamp(0.95rem, 1.2vw, 1.07rem);
}

.hero-actions {
    margin-top: 1.3rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    border: 0;
    background: linear-gradient(135deg, #3e89ff 0%, #1f67da 100%);
    box-shadow: 0 14px 24px rgba(27, 95, 198, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #3379e5 0%, #1857bd 100%);
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(27, 95, 198, 0.45);
}

.hero-actions .btn-outline-light {
    border-color: rgba(214, 230, 255, 0.72);
    color: #e2edff;
}

.hero-actions .btn-outline-light:hover {
    background: rgba(236, 244, 255, 0.1);
    color: #ffffff;
}

.hero-metrics {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.hero-metrics article {
    border: 1px solid rgba(175, 207, 255, 0.36);
    background: rgba(214, 231, 255, 0.08);
    border-radius: 12px;
    padding: 0.62rem 0.7rem;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hero-metrics article:hover {
    background: rgba(169, 204, 255, 0.2);
    border-color: rgba(196, 221, 255, 0.8);
}

.hero-metrics strong {
    display: block;
    color: #f6f9ff;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}

.hero-metrics span {
    display: block;
    margin-top: 0.1rem;
    color: #b9d2fb;
    font-size: 0.74rem;
}

.trust-badges {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 219, 252, 0.3);
    background: rgba(205, 226, 255, 0.08);
    color: #deebff;
    font-size: 0.83rem;
}

.hero-card {
    border-radius: 16px;
    border: 1px solid rgba(196, 219, 255, 0.26);
    background: rgba(5, 20, 39, 0.45);
    backdrop-filter: blur(4px);
    padding: 1.15rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 34px rgba(2, 11, 28, 0.36);
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hero-card:hover {
    background: rgba(17, 43, 79, 0.72);
    border-color: rgba(161, 199, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 36px rgba(2, 11, 28, 0.45);
}

.hero-card h2 {
    margin: 0;
    color: #f4f8ff;
    font-size: 1.04rem;
}

.hero-card ul {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.68rem;
}

.hero-card li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.55rem;
    color: #cadeff;
    font-size: 0.93rem;
    line-height: 1.5;
}

.hero-card i {
    color: #8db9ff;
    margin-top: 0.15rem;
}

.innovation-strip,
.software-showcase,
.execution-model,
.premium-cta {
    margin-top: 2rem;
}

.innovation-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.innovation-strip article {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(150deg, #ffffff 0%, #f6faff 100%);
    padding: 0.92rem;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.65rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.innovation-strip article:hover {
    transform: translateY(-4px);
    border-color: #b9d2fb;
    background: linear-gradient(150deg, #edf5ff 0%, #deecff 100%);
    box-shadow: 0 14px 26px rgba(17, 45, 85, 0.11);
}

.innovation-strip i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e6f0ff;
    color: #205eba;
}

.innovation-strip h3 {
    margin: 0.05rem 0 0;
    font-size: 0.95rem;
}

.innovation-strip p {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.87rem;
}

.section-head p {
    margin: 0;
    color: #2a63be;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.section-head h2 {
    margin: 0.4rem 0 0;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.15;
    max-width: 22ch;
}

.section-note {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.software-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.software-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(15, 35, 66, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.software-card:hover {
    transform: translateY(-7px);
    border-color: #b5d0fb;
    box-shadow: 0 20px 38px rgba(11, 33, 64, 0.17);
    background: linear-gradient(160deg, #eaf3ff 0%, #dbe9ff 100%);
}

.software-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(140deg, #eff5ff 0%, #dbe8ff 100%);
}

.software-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.35s ease;
}

.software-card:hover .software-image-wrap img {
    transform: scale(1.04);
}

.tag {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 0.26rem 0.62rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
}

.tag-rent {
    background: var(--success);
}

.tag-sale {
    background: var(--warning);
}

.tag-hybrid {
    background: var(--accent);
}

.software-body {
    padding: 1rem;
    transition: background-color 0.28s ease, color 0.28s ease;
}

.software-body h3 {
    margin: 0;
    font-size: 1.03rem;
    transition: color 0.28s ease;
}

.software-body p {
    margin: 0.56rem 0 0;
    color: var(--muted);
    line-height: 1.58;
    font-size: 0.93rem;
    transition: color 0.28s ease;
}

.software-body ul {
    margin: 0.72rem 0 0;
    padding-left: 1rem;
    color: #314a67;
    display: grid;
    gap: 0.3rem;
    font-size: 0.88rem;
    transition: color 0.28s ease;
}

.software-card:hover .software-body {
    background: linear-gradient(180deg, rgba(228, 240, 255, 0.7) 0%, rgba(219, 233, 255, 0.95) 100%);
}

.software-card:hover .software-body h3 {
    color: #0d3d8a;
}

.software-card:hover .software-body p,
.software-card:hover .software-body ul {
    color: #1f3f68;
}

.screens-row {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

.screens-row img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 16px rgba(12, 33, 61, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.screens-row img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(12, 33, 61, 0.14);
}

.execution-model .section-head h2 {
    max-width: 20ch;
}

.steps {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.steps article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfdff;
    padding: 0.95rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.steps article:hover {
    transform: translateY(-4px);
    border-color: #bfd6fb;
    background: linear-gradient(150deg, #eef5ff 0%, #e0ecff 100%);
    box-shadow: 0 12px 24px rgba(16, 43, 81, 0.12);
}

.steps span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dfebff;
    color: #14407c;
    font-size: 0.84rem;
    font-weight: 800;
}

.steps h3 {
    margin: 0.65rem 0 0.3rem;
    font-size: 0.98rem;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.premium-cta {
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(174, 203, 247, 0.7);
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(117, 170, 255, 0.35) 0%, rgba(117, 170, 255, 0) 56%),
        linear-gradient(128deg, #0d3d8a 0%, #1f67da 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.premium-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    top: -130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(208, 226, 255, 0.36) 0%, rgba(208, 226, 255, 0) 66%);
    pointer-events: none;
}

.cta-kicker {
    margin: 0;
    color: #cde0ff;
    letter-spacing: 0.13em;
    font-size: 0.74rem;
    font-weight: 700;
}

.premium-cta h2 {
    margin: 0.42rem 0 0;
    color: #ffffff;
    max-width: 30ch;
    line-height: 1.15;
    font-size: clamp(1.25rem, 2.8vw, 1.95rem);
}

.premium-cta p {
    margin: 0.58rem 0 0;
    color: #e1ecff;
    max-width: 66ch;
}

.premium-cta .btn {
    white-space: nowrap;
    font-weight: 700;
    color: #0d3d8a;
}

.premium-cta .btn:hover {
    background: #dce9ff;
    color: #0d3d8a;
}

@media (max-width: 1100px) {
    .premium-grid,
    .hero-metrics,
    .innovation-strip,
    .software-grid,
    .screens-row,
    .steps,
    .premium-cta {
        grid-template-columns: 1fr;
    }

    .premium-copy h1,
    .section-head h2,
    .premium-cta h2 {
        max-width: 100%;
    }

    .premium-cta {
        justify-items: start;
    }
}

@media (max-width: 575px) {
    .premium-hero {
        border-radius: 16px;
        padding: 1rem;
    }

    .hero-card,
    .software-card,
    .steps article,
    .premium-cta {
        border-radius: 12px;
    }

    .software-image-wrap {
        height: 190px;
    }

    .hero-brand {
        width: 100%;
        justify-content: flex-start;
    }

    .screens-row img {
        height: 145px;
    }

    .hero-actions .btn,
    .premium-cta .btn {
        width: 100%;
    }
}
