﻿@import url("../rahmah.css");

:root {
    --reports-teal: #0f8f89;
    --reports-cyan: #46d7cf;
    --reports-ink: #123b39;
    --reports-sand: #f7fbfa;
    --reports-gold: #d7ad52;
}

.reports-shell {
    display: grid;
    gap: 28px;
    margin-top: 28px;
}

.reports-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 34px 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(70, 215, 207, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(15, 143, 137, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 247, 0.98));
    border: 1px solid rgba(15, 143, 137, 0.12);
    box-shadow: 0 26px 60px rgba(10, 70, 67, 0.12);
}

.reports-hero::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(70, 215, 207, 0.26);
    border-radius: 28px;
    pointer-events: none;
}

.reports-hero-badge {
    position: relative;
    z-index: 1;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 143, 137, 0.12), rgba(215, 173, 82, 0.16));
    color: #0d6661;
    font-size: 0.84rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.reports-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    justify-items: center;
}


.reports-hero-copy {
    position: relative;
    width: fit-content;
    max-width: min(100%, 720px);
    margin-inline: auto;
    padding: 8px 28px 20px;
    text-align: center;
}

.reports-hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(circle at center, rgba(70, 215, 207, 0.12), rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.reports-hero-copy::after {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 136px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f8f89, #46d7cf);
    box-shadow: 0 8px 20px rgba(70, 215, 207, 0.2);
}

.reports-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #103f3d;
    font-size: clamp(3.1rem, 5vw, 5.1rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.reports-subtitle {
    margin: 0;
    color: #4d6967;
    font-size: 1rem;
    line-height: 1.9;
    max-width: 760px;
}

.reports-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.reports-highlight-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 143, 137, 0.12);
    color: #0e6964;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(10, 70, 67, 0.06);
}



.reports-grid {
    display: grid;
    gap: 26px;
}

.report-premium-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 22px;
    padding: 28px;
    border-radius: 34px;
    text-decoration: none;
    background:
        radial-gradient(circle at top right, rgba(70, 215, 207, 0.2), transparent 24%),
        radial-gradient(circle at bottom left, rgba(215, 173, 82, 0.14), transparent 24%),
        linear-gradient(145deg, #ffffff 0%, #edf9f7 100%);
    border: 1px solid rgba(15, 143, 137, 0.12);
    box-shadow: 0 28px 48px rgba(10, 70, 67, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.report-premium-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    border: 1px solid rgba(70, 215, 207, 0.22);
    pointer-events: none;
}

.report-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 143, 137, 0.2);
    box-shadow: 0 34px 54px rgba(10, 70, 67, 0.16);
}

.report-premium-topline {
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, #0f8f89, #46d7cf, #d7ad52);
}

.report-premium-head,
.report-premium-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.report-premium-icon-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.report-premium-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f8f89, #3ecdc5);
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 18px 30px rgba(15, 143, 137, 0.22);
}

.report-premium-year {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15, 143, 137, 0.08);
    color: #0d6964;
    font-weight: 900;
}

.report-premium-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.report-premium-title {
    margin: 0;
    color: var(--reports-ink);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.2;
}

.report-premium-text {
    margin: 0;
    color: #5b716e;
    font-size: 0.98rem;
    line-height: 1.9;
    max-width: 860px;
}

.report-premium-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f8f89, #26b6ae);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(15, 143, 137, 0.22);
}

.report-premium-arrow {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 143, 137, 0.08);
    color: #0f736e;
    font-size: 1.1rem;
}

@media (max-width: 920px) {
    .reports-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        justify-items: center;
    }

    .reports-hero-copy {
        width: 100%;
        max-width: none;
        margin-inline: auto;
        padding: 6px 12px 16px;
        text-align: center;
    }

    .reports-hero-copy::after {
        width: 96px;
        height: 3px;
    }

    .reports-title {
        font-size: clamp(2.5rem, 9vw, 3.8rem);
    }
}


@media (max-width: 640px) {
    .reports-hero {
        padding: 22px;
        border-radius: 26px;
    }

    .report-premium-card {
        padding: 22px 18px;
        border-radius: 26px;
    }

    .report-premium-head,
    .report-premium-footer {
        align-items: flex-start;
    }

    .report-premium-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }
}










