html {
    font-size: 12.6px;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 14.4px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #e5e7eb;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0) 24%), radial-gradient(circle at top right, rgba(16,185,129,0.10) 0%, rgba(16,185,129,0) 22%), radial-gradient(circle at bottom right, rgba(14,165,233,0.08) 0%, rgba(14,165,233,0) 20%), linear-gradient(180deg, #07111d 0%, #0b1422 45%, #050b14 100%);
}

main {
    width: 100%;
}

.home-shell {
    width: min(1764px, calc(100vw - 22px));
    max-width: 1764px;
    margin: 0 auto;
    padding: 16px 11px 43px;
}

.hero-banner {
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

    .hero-banner picture,
    .hero-banner img {
        display: block;
        width: 100%;
    }

.hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* SECTION */
.section-panel {
    position: relative;
    margin-top: 14px;
    padding: 18px;
    background: linear-gradient(rgba(7, 17, 29, 0.58), rgba(7, 17, 29, 0.58)), url('/images/ap2.png') center center / cover no-repeat;
    border: 1px solid rgba(120, 160, 190, 0.5);
    border-radius: 22px;
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255,255,255,0.25);
    overflow: hidden;
}

    .section-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 22px;
        pointer-events: none;
        background: radial-gradient(circle at top left, rgba(59,130,246,0.25), transparent 40%), radial-gradient(circle at bottom right, rgba(16,185,129,0.25), transparent 45%);
    }

.section-head {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

.section-head-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
}

.section-head-inline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

    .section-head-inline .section-kicker {
        margin-bottom: 0;
        flex-shrink: 0;
        margin-top: 2px;
    }

.section-head-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 252px;
    flex: 1;
}

    .section-head-text h2 {
        margin: 0 0 4px 0;
        font-size: 1.215rem;
        color: #0f172a;
        line-height: 1.15;
    }

    .section-head-text p {
        margin: 0;
        color: #5f7189;
        line-height: 1.5;
        font-size: 0.828rem;
        max-width: 810px;
    }

.section-kicker {
    display: inline-block;
    margin-bottom: 9px;
    padding: 5px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, #edf6ff 0%, #eefcf5 100%);
    color: #2563eb;
    font-size: .648rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid rgba(190, 214, 236, 0.9);
    box-shadow: 0 4px 9px rgba(37, 99, 235, 0.08);
}

.section-head h2 {
    margin: 0 0 5px 0;
    font-size: 1.215rem;
    color: #0f172a;
    line-height: 1.2;
}

.section-head p {
    margin: 0;
    color: #5f7189;
    line-height: 1.55;
    font-size: 0.828rem;
}

/* WEB SİTELER / WEB APLİKASYONLAR */
.showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    border: 1px solid #dce8f3;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255,255,255,0.75);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
    min-height: 90px;
}

    .showcase-card::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        border-radius: 14px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    }

    .showcase-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255,255,255,.85);
        border-color: #c9def6;
    }

.website-card:hover {
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.12), inset 0 1px 0 rgba(255,255,255,.85);
}

.app-card:hover {
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.12), inset 0 1px 0 rgba(255,255,255,.85);
}

.showcase-image-wrap {
    padding: 8px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.showcase-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    padding: 6px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06), inset 0 0 0 1px #e5e7eb;
    margin: 0 auto;
}

.showcase-body {
    padding: 7px 9px 10px;
}

    .showcase-body h3 {
        margin: 0 0 3px 0;
        font-size: 1.2rem;
        color: #0f172a;
        line-height: 1.25;
    }

    .showcase-body p {
        margin: 0;
        color: #64748b;
        line-height: 1.4;
        font-size: 0.64rem;
    }

/* RAPOR KARTLARI */
.card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.module-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dde7f1;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255,255,255,0.82);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    min-height: 234px;
}

    .module-card:hover {
        transform: translateY(-5px);
        border-color: #cfe0fb;
        box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    }

.module-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
}


.module-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 5px;
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(230, 235, 240, 0.85);
    flex-shrink: 0;
}
.module-title-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    min-height: 58px;
}
.module-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #0f172a;
    line-height: 1.3;
}

.module-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
    font-size: 0.855rem;
}

/* TAG */
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    margin-top: 2px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.702rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.blue {
    background: #eaf2ff;
    color: #1d4ed8;
}

.green {
    background: #eafbf1;
    color: #15803d;
}

.orange {
    background: #fff4e8;
    color: #c2410c;
}

.purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.red {
    background: #ffeaea;
    color: #b91c1c;
}

.teal {
    background: #e5e5e5;
    color: #000000;
}

.yellow {
    background: #ffd400;
    color: #000;
}

/* DOWNLOAD BANNER */
.download-banner-section {
    margin-top: 22px;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
}

    .download-banner-section picture,
    .download-banner-section img {
        display: block;
        width: 100%;
    }

.download-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* DOWNLOAD GRID */
.download-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.download-card {
    display: flex;
    flex-direction: column;
    gap: 6px; /* 12px → 6px yap */
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    border: 1px solid #dbe5f1;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.82);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .download-card:hover {
        transform: translateY(-4px);
        border-color: #cfe0fb;
        box-shadow: 0 13px 25px rgba(37, 99, 235, 0.11), inset 0 1px 0 rgba(255,255,255,0.9);
    }

.download-top {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 6px; /* yazı ile buton arası */
}

.download-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(230,235,240,0.9);
}

.download-body {
    min-width: 0;
}

    .download-body h3 {
        margin: 2px 0 6px 0;
        font-size: 0.84rem;
        color: #0f172a;
        line-height: 1.35;
    }

    .download-body p {
        margin: 0;
        color: #64748b;
        line-height: 1.5;
        font-size: 0.74rem;
    }

.download-btn {
    margin-top: 4px; /* auto yerine küçük boşluk */
    width: 100%;
    border: none;
    border-radius: 13px;
    padding: 9px 13px;
    cursor: pointer;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    font-size: 0.828rem;
    font-weight: 700;
    box-shadow: 0 7px 16px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 11px 22px rgba(37, 99, 235, 0.28), inset 0 1px 0 rgba(255,255,255,0.22);
    }
/* REPORT PAGE */
.report-page {
    max-width: 810px;
    margin: 36px auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    border: 1px solid #e8eef7;
    box-shadow: 0 16px 41px rgba(15, 23, 42, 0.10);
    text-align: center;
}

.report-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 16px;
}

.report-page h1 {
    margin: 0 0 9px 0;
    color: #0f172a;
}

.report-page p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 13px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 700;
}

/* ANONS VE UYARILAR */
.alert-panel {
    position: relative;
    overflow: hidden;
}

    .alert-panel::before {
        content: "";
        position: absolute;
        top: -36px;
        right: -36px;
        width: 162px;
        height: 162px;
        background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, rgba(59,130,246,0) 70%);
        pointer-events: none;
    }

.alert-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.alert-card {
    position: relative;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(250,252,255,0.94) 100%);
    border: 1px solid #e5edf8;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.85);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .alert-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 27px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.92);
    }

.alert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
    flex-wrap: wrap;
}

.alert-date,
.alert-expire {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.702rem;
    font-weight: 700;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.alert-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.945rem;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.alert-text h3 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #0f172a;
    line-height: 1.3;
}

.alert-text p {
    margin: 0;
    color: #64748b;
    font-size: 0.837rem;
    line-height: 1.6;
}

/* Güvenlik seviyeleri */
.alert-danger {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
}

    .alert-danger .alert-icon {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: #ffffff;
    }

    .alert-danger .alert-date,
    .alert-danger .alert-expire {
        background: #fef2f2;
        color: #b91c1c;
        border-color: #fecaca;
    }

.alert-warning {
    border-color: #fde68a;
    background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
}

    .alert-warning .alert-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: #ffffff;
    }

    .alert-warning .alert-date,
    .alert-warning .alert-expire {
        background: #fffbeb;
        color: #b45309;
        border-color: #fde68a;
    }

.alert-info {
    border-color: #bfdbfe;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

    .alert-info .alert-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: #ffffff;
    }

    .alert-info .alert-date,
    .alert-info .alert-expire {
        background: #eff6ff;
        color: #1d4ed8;
        border-color: #bfdbfe;
    }

/* HIZLI ERİŞİM LOGO BÖLÜMÜ */
.quick-links-panel {
    position: relative;
    overflow: hidden;
}

    .quick-links-panel::before {
        content: "";
        position: absolute;
        top: -45px;
        right: -36px;
        width: 162px;
        height: 162px;
        background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, rgba(59,130,246,0) 72%);
        pointer-events: none;
    }

.quick-links-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 90px));
    justify-content: space-between;
    gap: 13px;
    align-items: start;
}

.quick-link-card {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(249,252,255,0.97) 100%);
    border: 1px solid #dde7f2;
    border-radius: 18px;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255,255,255,0.85);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
    overflow: hidden;
}

    .quick-link-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        pointer-events: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
    }

    .quick-link-card:hover {
        transform: translateY(-4px);
        border-color: #cfe0fb;
        box-shadow: 0 13px 25px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    }

.quick-link-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* tamamen doldurur */
    display: block;
    filter: none;
    margin: 0;
    padding: 0;
}

/* EXTRA WIDE */
@media (min-width: 1550px) {
    .home-shell {
        width: min(100vw - 18px, 1584px);
        max-width: 1584px;
        padding-left: 9px;
        padding-right: 9px;
    }

    .alert-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .download-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .showcase-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

@media (min-width: 1850px) {
    .home-shell {
        width: min(100vw - 14px, 1728px);
        max-width: 1728px;
        padding-left: 7px;
        padding-right: 7px;
    }

    .alert-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .download-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .showcase-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

.section-head-row {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

    /* KICKER */
    .section-head-row .section-kicker {
        margin: 0;
        flex-shrink: 0;
    }

    .section-head-row h2 {
        margin: 0;
        font-size: 1.215rem;
        color: rgba(255,255,255,0.96);
        text-shadow: 0 1px 2px rgba(0,0,0,0.35);
        white-space: nowrap;
    }

        .section-head-row h2::after {
            content: "";
            display: inline-block;
            width: 1px;
            height: 16px;
            background: rgba(255,255,255,0.28);
            margin: 0 9px;
            vertical-align: middle;
        }

.alert-panel .section-head-row h2 {
    color: rgba(255,255,255,0.96);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
    .alert-panel .section-head-row h2::after {
        background: rgba(255,255,255,0.28);
    }

    /* AÇIKLAMA */
    .section-head-row p {
        margin: 0;
        color: rgba(255,255,255,0.95);
        text-shadow: 0 1px 2px rgba(0,0,0,0.35);
        font-size: 0.828rem;
        line-height: 1.5;
        flex: 1;
        min-width: 225px;
    }

.alert-meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.alert-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
}

.alert-date {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    font-weight: 600;
}

.alert-expire {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    font-weight: 600;
}
.download-update-strip {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 0;
}

.download-update-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 60px 18px 100px; /* solu içeri aldık */
}

.download-update-text strong {
    font-size: 24px;
    font-weight: 800;
    color: #0B67B2;
    line-height: 1.2;
}

.download-update-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 24px;
    min-width: 120px;
    border-radius: 12px;
    background: #0B67B2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(11, 103, 178, 0.22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    margin-right: 6px; /* butonu da biraz içeri alır */
}

    .download-update-btn:hover {
        transform: translateY(-1px);
        background: #095a9c;
    }
    .download-update-btn:active {
        transform: translateY(0);
    }
/* RESPONSIVE */
@media (max-width: 1400px) {
    .showcase-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .download-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .alert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .download-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .alert-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .download-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-shell {
        width: calc(100vw - 18px);
        padding: 16px 9px 36px;
    }

    .showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .download-grid,
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        justify-content: center;
    }
    .download-update-strip {
        padding: 16px 14px;
        border-radius: 0 0 14px 14px;
    }

    .download-update-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .download-update-text strong {
        font-size: 20px;
        display: block;
        text-align: center;
    }

    .download-update-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-grid {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        width: 100%;
    }

    .showcase-body h3 {
        font-size: 0.82rem;
    }

    .showcase-body p {
        font-size: 0.72rem;
    }

    .module-card {
        min-height: unset;
        padding: 16px;
    }

    .module-logo {
        width: 50px;
        height: 50px;
    }

    .section-head h2 {
        font-size: 1.152rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 90px));
        justify-content: center;
        gap: 11px;
    }

    .quick-link-card {
        width: 86px;
        height: 86px;
        border-radius: 16px;
    }

    .quick-link-logo {
        width: 65px;
        height: 65px;
    }

    .section-head-inline {
        gap: 9px;
    }

    .section-head-text h2 {
        font-size: 1.08rem;
    }

    .section-head-text p {
        font-size: 0.792rem;
    }

    .module-top {
        grid-template-columns: 50px 1fr auto;
        gap: 8px;
    }

    .module-title-wrap {
        min-height: 50px;
    }

    .module-card h3 {
        font-size: 0.9rem;
    }
}