:root {
    --blue: #0876bd;
    --dark: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f7fafc;
    --green: #2f7d32;
    --gold: #bd8426
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.55
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.top {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.brand img {
    height: 34px
}

.menu {
    display: flex;
    gap: 22px;
    align-items: center;
    font-weight: 700;
    font-size: 14px
}

.menu a {
    color: #1f2937
}

.menu a:hover {
    color: var(--blue)
}

.actions {
    display: flex;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer
}

.btn.primary {
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
    color: white;
    box-shadow: 0 12px 30px rgba(8, 118, 189, .25)
}

.btn.ghost {
    border-color: var(--line);
    background: white
}

.hero {
    background: radial-gradient(circle at 85% 10%, rgba(8, 118, 189, .16), transparent 34%), linear-gradient(180deg, #f9fbff 0, #fff 60%);
    padding: 72px 0 46px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center
}

.eyebrow {
    color: var(--blue);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px
}

.h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    margin: 12px 0 18px;
    letter-spacing: -1.8px
}

.lead {
    font-size: 19px;
    color: #4b5563;
    max-width: 680px
}

.hero-card {
    position: relative;
    border-radius: 34px;
    padding: 24px;
    background: white;
    box-shadow: 0 26px 80px rgba(20, 30, 50, .14);
    overflow: hidden
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 260px;
    height: 260px;
    background: rgba(8, 118, 189, .13);
    border-radius: 50%
}

.hero-card img {
    width: 100%;
    display: block;
    border-radius: 22px;
    position: relative
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px
}

.stat {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px
}

.stat b {
    font-size: 28px;
    color: var(--blue);
    display: block
}

.section {
    padding: 70px 0
}

.section.alt {
    background: var(--bg)
}

.title {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 0 0 12px;
    letter-spacing: -1px
}

.sub {
    color: var(--muted);
    max-width: 760px;
    margin: 0 0 28px
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06)
}

.product {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.product img {
    width: 100%;
    height: 220px;
    object-fit: contain
}

.tag {
    display: inline-flex;
    width: max-content;
    padding: 6px 10px;
    border-radius: 99px;
    background: #eef7ff;
    color: var(--blue);
    font-weight: 800;
    font-size: 12px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center
}

.feature-list {
    display: grid;
    gap: 14px
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #e9f6ee;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 28px
}

.form {
    display: grid;
    gap: 14px
}

.input,
textarea,
select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
    background: white
}

textarea {
    min-height: 120px
}

.footer {
    background: #0b1220;
    color: white;
    padding: 46px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 28px
}

.footer p,
.footer a {
    color: #cbd5e1
}

.page-hero {
    padding: 58px 0;
    background: linear-gradient(135deg, #f8fbff, #eef7ff)
}

.crumb {
    color: var(--muted);
    font-weight: 700
}

.software-hero-img {
    max-width: 520px;
    margin: auto;
    display: block
}

.mobile-menu {
    display: none
}

.contact-info {
    display: grid;
    gap: 10px
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

@media(max-width:900px) {

    .menu,
    .actions {
        display: none
    }

    .mobile-menu {
        display: block;
        font-weight: 900
    }

    .hero-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .grid {
        grid-template-columns: 1fr 1fr
    }

    .stats {
        grid-template-columns: 1fr
    }

    .nav {
        height: 56px
    }

    .brand img {
        height: 32px
    }
}

@media(max-width:580px) {

    .grid,
    .mini-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 42px
    }

    .section {
        padding: 48px 0
    }

    .product img {
        height: 180px
    }

    .btn {
        width: 100%
    }
}

/* Dropdown navigation */
.mobile-menu {
    border: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 20px;
    cursor: pointer
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center
}

.dropdown>a:after {
    content: "▾";
    font-size: 10px;
    margin-left: 6px;
    color: #64748b
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 230px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
    z-index: 50
}

.dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap
}

.dropdown-panel a:hover {
    background: #eef7ff;
    color: var(--blue)
}

.mega-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 8px;
    min-width: min(940px, 92vw);
    left: 50%;
    transform: translate(-50%, 8px)
}

.dropdown:hover .mega-panel {
    transform: translate(-50%, 0)
}

.mega-panel b {
    display: block;
    color: #0f172a;
    font-size: 13px;
    padding: 10px 12px 4px
}

@media(max-width:900px) {
    .nav {
        position: relative
    }

    .menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        background: white;
        border-bottom: 1px solid var(--line);
        padding: 12px 4%;
        box-shadow: 0 20px 50px rgba(17, 24, 39, .12);
        z-index: 60
    }

    .menu.open {
        display: block
    }

    .menu a,
    .dropdown {
        display: block
    }

    .dropdown-panel,
    .mega-panel {
        position: static;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: 0;
        background: #f8fafc;
        border-radius: 14px;
        margin: 6px 0 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block
    }

    .mega-panel {
        display: block
    }

    .dropdown>a:after {
        float: right
    }

    .dropdown-panel a {
        padding: 8px 14px
    }

    .mega-panel b {
        padding-top: 12px
    }

    .mobile-menu {
        display: block
    }
}

/* Ana Sayfa Banner */
.main-banner {
    position: relative;
    min-height: 680px;
    background:
        linear-gradient(rgba(8, 22, 38, .82), rgba(8, 22, 38, .82)),
        url("img/kutu_parus.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 32, .45);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.banner-content h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.12;
    margin: 0 0 26px;
    font-weight: 900;
}

.banner-sub {
    font-size: 26px;
    line-height: 1.7;
    margin: 0 0 30px;
    color: #f1f5f9;
}

.banner-text {
    max-width: 680px;
    font-size: 18px;
    color: #dbeafe;
    margin-bottom: 32px;
}

.banner-buttons {
    display: flex;
    gap: 14px;
}

.btn.light {
    background: white;
    color: #0f172a;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .75);
    background: transparent;
    color: white;
    font-size: 48px;
    line-height: 45px;
    cursor: pointer;
}

.banner-arrow.left {
    left: 32px;
}

.banner-arrow.right {
    right: 32px;
}

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.banner-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .8);
}

.banner-dots span.active {
    width: 32px;
    border-radius: 20px;
    background: white;
}

@media(max-width:900px) {
    .main-banner {
        min-height: 560px;
        padding: 60px 0;
    }

    .banner-arrow {
        display: none;
    }

    .banner-sub {
        font-size: 20px;
    }

    .banner-buttons {
        flex-direction: column;
        max-width: 280px;
    }
}

/* Ati Slider */
/* Ati Slider */
.ati-slider {
    position: relative;
    min-height: 480px;
    background: url("img/patterns/pattern-1.jpg") repeat;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.slider-track {
    position: relative;
    min-height: 480px;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-content {
    min-height: 480px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
    color: #333;
}

.slider-text h2 {
    font-size: 34px;
    line-height: 1.12;
    margin: 0 0 16px;
    font-weight: 400;
    color: #333;
}

.slider-text h2 strong {
    font-weight: 900;
    color: #333;
}

.slider-text h2 span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 800;
    color: #76b82a;
    text-transform: uppercase;
}

.slider-text p {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.slider-img img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(80,80,80,.45);
    background: transparent;
    color: #555;
    font-size: 38px;
    cursor: pointer;
}

.slider-prev {
    left: 32px;
}

.slider-next {
    right: 32px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 0;
    background: #777;
    cursor: pointer;
}

.slider-dots button.active {
    width: 13px;
    border-radius: 50%;
    background: #333;
}

@media(max-width:900px) {
    .ati-slider,
    .slider-track,
    .slider-content {
        min-height: auto;
    }

    .slider-content {
        grid-template-columns: 1fr;
        padding: 45px 0 70px;
        text-align: center;
    }

    .slider-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .slider-img img {
        max-height: 260px;
    }

    .slider-arrow {
        display: none;
    }
}
.card.milli {
    border-left: 5px solid #e11d48;
    background: linear-gradient(135deg,#ffffff,#fafafa);
}

.milli-baslik{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.milli-baslik img{
    width:32px;
    height:22px;
    object-fit:cover;
    border-radius:3px;
    box-shadow:0 1px 3px rgba(0,0,0,.15);
}

.section-bayi {
    background: linear-gradient(135deg, #f4f9ff 0%, #eef6ff 100%);
    padding: 80px 0;
}

.section-bayi .split {
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}
.hero-feature-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.hero-feature-list li{
    padding:7px 0;
    font-size:17px;
    color:#0f172a;
    font-weight:500;
}

.hero-modules{
    margin-top:15px;
}

.hero-modules h3{
    margin-bottom:18px;
    color:#0f172a;
}

.module-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.module-grid span{
    background:#f8fafc;
    border:1px solid #dbe4ee;
    border-radius:12px;
    padding:10px 12px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}

.software-hero-img{
    filter:drop-shadow(0 15px 35px rgba(0,0,0,.12));
}
.about-logo-card {
    text-align: center;
    padding: 28px;
}

.about-logo-card img {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.about-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.about-card{

    background:#fff;
    border-radius:22px;
    padding:35px 28px;

    text-align:center;

    border:1px solid #dff4ff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.30s;
}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 55px rgba(0,0,0,.12);
}

.about-icon{

    width:95px;
    height:95px;

    margin:auto;

    border-radius:50%;

    border:2px solid #d9f3ff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#12b5ff;

    font-size:42px;

    margin-bottom:25px;
}

.about-card h3{

    font-size:34px;

    margin-bottom:20px;

    color:#222;
}

.about-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;
}

@media(max-width:1200px){

.about-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-grid{

grid-template-columns:1fr;

}

}

.about-image{

    display:flex;
    align-items:center;
    justify-content:center;

}

.about-image img{

    width:100%;
    max-width:700px;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.12));

}

.atimech-card{
    position:relative;
    padding:24px;
    overflow:visible;
}

.atimech-card .software-hero-img{
    width:100%;
    max-width:520px;
    border-radius:22px;
    display:block;
    margin:0 auto;
}

.atimech-card .design-thumb{
    position:absolute;
    right:-35px;
    bottom:-45px;

    width:260px;
    max-width:45%;

    background:#fff;
    padding:10px;
    border-radius:18px;

    box-shadow:0 18px 45px rgba(0,0,0,.22);
}

@media(max-width:900px){
    .atimech-card .design-thumb{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        max-width:420px;
        margin:20px auto 0;
    }
}

/* =========================================================
   BAYİ DOWNLOAD MERKEZİ
   ========================================================= */

.page-header {
    padding: 54px 0 38px;
    background:
        linear-gradient(135deg, rgba(16, 44, 84, 0.96), rgba(27, 92, 153, 0.92)),
        url("img/download-bg.jpg") center/cover no-repeat;
    color: #fff;
    margin-bottom: 30px;
}

.page-header h1 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-header h1 i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-header p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    min-height: 122px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e8edf3;
    box-shadow: 0 12px 32px rgba(24, 42, 66, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -28px;
    bottom: -38px;
    border-radius: 50%;
    background: rgba(32, 112, 187, 0.08);
}

.stat-card span {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    font-size: 34px;
    line-height: 1;
    color: #173b63;
}

.card {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e8edf3;
    box-shadow: 0 12px 32px rgba(24, 42, 66, 0.07);
    margin-bottom: 28px;
}

.toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(210px, 280px) auto;
    gap: 14px;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c99aa;
    pointer-events: none;
}

.search-box input,
.toolbar select {
    width: 100%;
    height: 46px;
    border: 1px solid #dce3eb;
    border-radius: 12px;
    background: #f9fbfd;
    color: #24364b;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
}

.search-box input {
    padding: 0 16px 0 44px;
}

.toolbar select {
    padding: 0 42px 0 14px;
}

.search-box input:focus,
.toolbar select:focus {
    background: #fff;
    border-color: #2d7fc2;
    box-shadow: 0 0 0 4px rgba(45, 127, 194, 0.12);
}

.btn {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #1f6da8;
    color: #fff;
    box-shadow: 0 8px 18px rgba(31, 109, 168, 0.22);
}

.btn-primary:hover {
    background: #185d91;
}

.btn-success {
    min-width: 118px;
    background: #16875e;
    color: #fff;
    box-shadow: 0 8px 18px rgba(22, 135, 94, 0.2);
}

.btn-success:hover {
    background: #106f4d;
    color: #fff;
}

#downloadContainer {
    padding-bottom: 42px;
}

.download-group {
    margin-bottom: 34px;
}

.download-group > h2 {
    position: relative;
    margin: 0 0 16px;
    padding: 0 0 12px 16px;
    font-size: 23px;
    line-height: 1.3;
    color: #173b63;
    font-weight: 800;
    border-bottom: 1px solid #e4eaf1;
}

.download-group > h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 5px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(180deg, #1f73b7, #4ca0dd);
}

.download-list {
    display: grid;
    gap: 14px;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e4eaf1;
    box-shadow: 0 8px 24px rgba(33, 54, 78, 0.06);
    transition: transform 0.2s ease,
                box-shadow 0.2s ease,
                border-color 0.2s ease;
}

.download-card:hover {
    transform: translateY(-2px);
    border-color: #c9d9e7;
    box-shadow: 0 14px 34px rgba(33, 54, 78, 0.11);
}

.download-left {
    min-width: 0;
    flex: 1;
}

.download-left h3 {
    margin: 0 0 10px;
    color: #1d3551;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-left h3 i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf5fb;
    color: #1f73b7;
    font-size: 18px;
}

.download-left > div {
    margin-bottom: 9px;
    font-size: 14px;
    color: #607086;
}

.download-left > div b {
    color: #29435f;
}

.download-left p {
    margin: 0 0 12px;
    max-width: 850px;
    color: #5d6b7c;
    font-size: 14px;
    line-height: 1.7;
}

.download-left small {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #8491a1;
    font-size: 13px;
}

.download-empty {
    padding: 50px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px dashed #cfd9e4;
    text-align: center;
    color: #728094;
}

.download-empty i {
    display: block;
    margin-bottom: 14px;
    font-size: 42px;
    color: #a5b3c2;
}

.download-empty strong {
    display: block;
    margin-bottom: 6px;
    color: #31455d;
    font-size: 18px;
}

.download-loading {
    padding: 45px 20px;
    text-align: center;
    color: #607086;
}

.download-loading i {
    margin-right: 8px;
}

/* Tablet */

@media (max-width: 900px) {
    .toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .toolbar .btn {
        grid-column: 1 / -1;
    }
}

/* Mobil */

@media (max-width: 680px) {
    .page-header {
        padding: 38px 0 30px;
    }

    .page-header h1 {
        font-size: 27px;
        align-items: flex-start;
    }

    .page-header h1 i {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .page-header p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        min-height: 100px;
        padding: 20px;
    }

    .stat-card strong {
        font-size: 29px;
    }

    .card {
        padding: 14px;
        border-radius: 14px;
    }

    .toolbar {
        grid-template-columns: 1fr;
    }

    .toolbar .btn {
        grid-column: auto;
        width: 100%;
    }

    .download-group > h2 {
        font-size: 20px;
    }

    .download-card {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
    }

    .download-card > div:last-child {
        width: 100%;
    }

    .download-card .btn-success {
        width: 100%;
    }

    .download-left h3 {
        align-items: flex-start;
        font-size: 17px;
    }
}