/* =========================================================
   DOWNLOAD.CSS
   نسخه هماهنگ‌شده با استایل style(2).css
   ساختار کلاس‌های download.css حفظ شده است.
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    direction: rtl;
    text-align: right;
    margin: 0;
    background: #f7f7f8;
    color: #333;
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    line-height: 1.8;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #d9213f;
    --primary-dark: #b91832;
    --secondary: #202b38;
    --dark: #18212b;
    --white: #ffffff;
    --light: #f7f7f8;
    --border: #e5e5e5;
    --text: #444;
    --muted: #777;
    --shadow: 0 12px 35px rgba(0, 0, 0, .10);
    --radius: 6px;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* =========================================================
   TOP HEADER
========================================================= */

.top-header {
    background: var(--secondary);
    color: #fff;
    font-size: 13px;
}

.top-header-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-right,
.top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-header a {
    color: #fff;
    transition: color .25s ease;
}

.top-header a:hover {
    color: var(--primary);
}

/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
}

.header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================================
   LOGO
========================================================= */

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.logo-text strong {
    font-size: 21px;
    color: var(--secondary);
}

.logo-text span {
    font-size: 10px;
    color: #888;
}

/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    min-height: 94px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    font-size: 13px;
    white-space: nowrap;
    transition: background-color .25s ease, color .25s ease;
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: var(--primary);
}

/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 9999;
}

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

.dropdown-menu li {
    position: relative;
    border-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 9px 17px;
    color: var(--secondary);
    font-size: 13px;
    transition: background-color .2s ease, color .2s ease;
}

.dropdown-menu a:hover {
    background: #fafafa;
    color: var(--primary);
    padding-right: 17px;
}

/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--secondary);
}

/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {
    position: relative;
    background: linear-gradient(135deg, var(--secondary), #303c49);
    color: #fff;
    border: 0;
    padding: 0;
}

.page-title > .container,
.page-title .container {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
}

.page-title h1 {
    margin: 0;
    background: transparent;
    padding: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
}

/* =========================================================
   DOWNLOADS SECTION
========================================================= */

.downloads-section {
    padding: 80px 0 100px;
    background: var(--light);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

/* =========================================================
   DOWNLOAD CARD
========================================================= */

.download-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.download-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

/* =========================================================
   IMAGE
========================================================= */

.download-image {
    position: relative;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #eee;
}

.download-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.download-card:hover .download-image img {
    transform: scale(1.07);
}

.download-number {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

/* =========================================================
   CONTENT
========================================================= */

.download-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.download-content h2 {
    min-height: 58px;
    margin: 0 0 10px;
    color: var(--secondary);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.author i {
    color: var(--primary);
}

.download-content p {
    min-height: 75px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 2;
}

/* =========================================================
   ACTIONS
========================================================= */

.download-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 0;
    border-top: 0;
}

.download-btn,
.more-btn {
    min-height: 43px;
    flex: 1;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 4px;
    font-size: 12px;
    transition: background-color .25s ease, border-color .25s ease,
                color .25s ease, transform .25s ease;
}

.download-btn {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.download-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.more-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--secondary);
}

.more-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* =========================================================
   PAGINATION
========================================================= */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--secondary);
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color .25s ease, border-color .25s ease,
                color .25s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--secondary);
    color: #ddd;
    font-size: 13px;
}

.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 45px;
}

.footer-column h3 {
    position: relative;
    padding-bottom: 12px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    margin: 0;
    color: #c7cbd0;
    font-size: 13px;
    line-height: 2.2;
}

.footer-column li {
    margin-bottom: 10px;
    color: #c7cbd0;
    font-size: 13px;
    line-height: 2;
}

.footer-column li a {
    color: #c7cbd0;
    transition: color .25s ease, padding-right .25s ease;
}

.footer-column li a:hover {
    padding-right: 5px;
    color: var(--primary);
}

.contact-list strong {
    color: #fff;
    margin-left: 5px;
}

.copyright {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .18);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px;
    color: #aaa;
    font-size: 11px;
    text-align: center;
}

/* =========================================================
   SCROLL TOP
========================================================= */

.scroll-top {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease,
                background-color .25s ease;
    z-index: 9999;
}

.scroll-top:hover {
    background: var(--primary-dark);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .main-menu > li > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }

    .downloads-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }
}

@media (max-width: 950px) {
    .header-inner {
        min-height: 80px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 20px;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0,0,0,.10);
    }

    .navbar.open {
        display: flex;
    }

    .main-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .main-menu > li {
        width: 100%;
        border-bottom: 0;
    }

    .main-menu > li > a {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 0 10px;
        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        padding: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8f9fa;
    }

    .has-dropdown:hover > .dropdown-menu {
        display: block;
    }

    .has-dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 9px 25px;
        border-bottom: 1px solid #eee;
    }

    .menu-toggle {
        display: block;
    }

    .downloads-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-title > .container,
    .page-title .container {
        min-height: 180px;
    }
}

@media (max-width: 650px) {
    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .top-header-inner {
        justify-content: center;
    }

    .top-left {
        display: none;
    }

    .top-right {
        font-size: 11px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .page-title > .container,
    .page-title .container {
        min-height: 150px;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
    }

    .page-title h1 {
        font-size: 27px;
    }

    .downloads-section {
        padding: 60px 0 75px;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .download-image {
        height: 240px;
    }

    .download-content {
        padding: 22px 20px;
    }

    .download-content h2 {
        min-height: auto;
        font-size: 18px;
    }

    .download-content p {
        min-height: auto;
    }

    .download-actions {
        flex-direction: column;
    }

    .download-btn,
    .more-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0;
    }

    .copyright {
        min-height: auto;
        padding: 18px 0;
    }
}

@media (max-width: 400px) {
    .top-right {
        gap: 7px;
        font-size: 10px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .download-image {
        height: 210px;
    }

    .download-content h2 {
        font-size: 17px;
    }
}

/* =========================================================
   FONT
========================================================= */

body,
body * {
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

/* =========================================================
   SABAHESAB - DOWNLOAD PAGES
   Download.css
   مشترک برای تمام صفحات بخش دانلود
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.8;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --primary: #e63946;
    --primary-dark: #c92f3b;

    --secondary: #1d3557;

    --dark: #17202a;
    --text: #444;
    --muted: #777;

    --light: #f7f8fa;
    --white: #fff;

    --border: #e8e8e8;

    --shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);

    --shadow-hover:
        0 15px 40px rgba(0, 0, 0, 0.13);

    --radius: 12px;

    --container: 1200px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   TOP HEADER
   ========================================================= */

.top-header {
    width: 100%;
    background: #17202a;
    color: #fff;
    font-size: 13px;
}

.top-header-inner {
    min-height: 42px;

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

    gap: 20px;
}

.top-right,
.top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-header a {
    color: rgba(255, 255, 255, 0.9);
    transition: 0.25s ease;
}

.top-header a:hover {
    color: #fff;
}

.top-header span {
    color: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   MAIN HEADER
   ========================================================= */

.main-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #fff;

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.04);
}

.header-inner {
    min-height: 82px;

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

    gap: 25px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;

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

    border-radius: 10px;

    background: var(--primary);
    color: #fff;

    font-size: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.4;
}

.logo-text strong {
    color: var(--secondary);

    font-size: 21px;
    font-weight: 800;
}

.logo-text span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 400;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    margin-right: auto;
}

.main-menu {
    display: flex;
    align-items: center;

    gap: 2px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    min-height: 82px;

    display: flex;
    align-items: center;

    padding: 0 13px;

    color: #333;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.main-menu > li > a i {
    margin-right: 7px;

    font-size: 10px;

    transition: transform 0.25s ease;
}

.main-menu > li:hover > a,
.main-menu > li.active > a {
    color: var(--primary);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);
    right: 0;

    min-width: 235px;

    padding: 8px 0;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 0 0 10px 10px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 10px 18px;

    color: #444;

    font-size: 13px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding 0.2s ease;
}

.dropdown-menu li a:hover {
    color: var(--primary);

    background: #fff5f6;

    padding-right: 23px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

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

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #fff;
    color: var(--secondary);

    cursor: pointer;

    font-size: 19px;
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.page-title {
    position: relative;

    min-height: 180px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #1d3557 0%,
            #243f67 55%,
            #2c4d78 100%
        );

    overflow: hidden;
}

.page-title::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -80px;
    top: -130px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);
}

.page-title::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -70px;
    bottom: -130px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.04);
}

.page-title .container {
    position: relative;
    z-index: 2;

    text-align: center;
}

.page-title h1 {
    color: #fff;

    font-size: 32px;
    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   DOWNLOAD SECTION
   ========================================================= */

.downloads-section {
    padding: 65px 0 80px;

    background: #fff;

    min-height: 420px;
}

.downloads-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   DOWNLOAD CARD
   ========================================================= */

.download-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.download-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(230, 57, 70, 0.25);

    box-shadow: var(--shadow-hover);
}


/* =========================================================
   DOWNLOAD IMAGE
   ========================================================= */

.download-image {
    position: relative;

    height: 215px;

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

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f4f6f9,
            #e9edf3
        );
}

.download-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

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


/* =========================================================
   IMAGE PLACEHOLDER
   ========================================================= */

.download-placeholder {
    width: 90px;
    height: 90px;

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

    border-radius: 22px;

    background: #fff;

    color: var(--primary);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    font-size: 42px;
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.download-number {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(230, 57, 70, 0.3);
}


/* =========================================================
   DOWNLOAD CONTENT
   ========================================================= */

.download-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 23px;
}

.download-content h2 {
    margin-bottom: 9px;

    color: var(--secondary);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: #999;

    font-size: 12px;
}

.author i {
    color: var(--primary);

    font-size: 12px;
}

.download-content p {
    margin-bottom: 22px;

    color: var(--text);

    font-size: 13px;

    line-height: 2;

    flex: 1;
}


/* =========================================================
   DOWNLOAD ACTIONS
   ========================================================= */

.download-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 17px;

    border-top: 1px solid #f0f0f0;
}

.download-btn,
.more-btn {
    min-height: 40px;

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

    gap: 7px;

    padding: 7px 15px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.download-btn {
    background: var(--primary);
    color: #fff;

    border: 1px solid var(--primary);
}

.download-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);

    transform: translateY(-2px);
}

.more-btn {
    background: #fff;

    color: var(--secondary);

    border: 1px solid var(--border);
}

.more-btn:hover {
    color: var(--primary);

    border-color: var(--primary);

    transform: translateY(-2px);
}

.more-btn i {
    font-size: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #17202a;

    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1.2fr;

    gap: 45px;

    padding: 60px 0 45px;
}

.footer-column {
    min-width: 0;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 2.2;
}

.footer-column h3 {
    position: relative;

    margin-bottom: 20px;
    padding-bottom: 12px;

    color: #fff;

    font-size: 16px;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: var(--primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-column li {
    font-size: 12px;

    line-height: 1.9;
}

.footer-column li a {
    color: rgba(255, 255, 255, 0.65);

    transition:
        color 0.2s ease,
        padding-right 0.2s ease;
}

.footer-column li a:hover {
    color: #fff;

    padding-right: 5px;
}

.contact-list {
    gap: 13px !important;
}

.contact-list strong {
    color: #fff;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.copyright {
    padding: 18px 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.5);

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   SCROLL TOP
   ========================================================= */

.scroll-top {
    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 999;

    width: 44px;
    height: 44px;

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

    border: 0;
    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    cursor: pointer;

    font-size: 15px;

    box-shadow:
        0 7px 20px rgba(230, 57, 70, 0.3);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
}


/* =========================================================
   EMPTY / NO DOWNLOAD
   ========================================================= */

.no-downloads {
    grid-column: 1 / -1;

    padding: 70px 25px;

    text-align: center;

    background: #fafafa;

    border: 1px dashed #ddd;

    border-radius: var(--radius);

    color: var(--muted);
}

.no-downloads i {
    margin-bottom: 15px;

    color: #ccc;

    font-size: 45px;
}

.no-downloads h2 {
    margin-bottom: 8px;

    color: var(--secondary);

    font-size: 20px;
}

.no-downloads p {
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE - 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .main-menu > li > a {
        padding-right: 9px;
        padding-left: 9px;

        font-size: 13px;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .downloads-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE - 900px
   ========================================================= */

@media (max-width: 900px) {

    .top-header-inner {
        justify-content: center;
    }

    .top-left {
        display: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .navbar {
        position: absolute;

        top: 100%;
        right: 0;
        left: 0;

        display: none;

        width: 100%;

        padding: 10px 20px 20px;

        background: #fff;

        border-top: 1px solid var(--border);

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

    .navbar.active {
        display: block;
    }

    .main-menu {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .main-menu > li > a {
        min-height: 48px;

        justify-content: space-between;

        padding: 0 12px;

        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        padding: 0;

        border: 0;
        border-radius: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .has-dropdown:hover > .dropdown-menu {
        display: none;
    }

    .has-dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding:
            9px 25px 9px 15px;

        background: #fafafa;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        margin-right: 0;
    }

    .page-title {
        min-height: 150px;
    }

    .page-title h1 {
        font-size: 27px;
    }

}


/* =========================================================
   RESPONSIVE - 600px
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(
            var(--container),
            calc(100% - 28px)
        );
    }

    .top-header {
        font-size: 11px;
    }

    .top-header-inner {
        min-height: 38px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;

        font-size: 19px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .downloads-section {
        padding: 40px 0 55px;
    }

    .downloads-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .download-image {
        height: 190px;
    }

    .download-content {
        padding: 19px;
    }

    .download-content h2 {
        font-size: 16px;
    }

    .download-actions {
        flex-wrap: wrap;
    }

    .download-btn,
    .more-btn {
        flex: 1;

        min-width: 120px;
    }

    .page-title {
        min-height: 125px;
    }

    .page-title h1 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 0 30px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .scroll-top {
        left: 15px;
        bottom: 15px;

        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   RESPONSIVE - 400px
   ========================================================= */

@media (max-width: 400px) {

    .top-right {
        gap: 7px;
    }

    .logo-text {
        display: none;
    }

    .download-image {
        height: 170px;
    }

    .download-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn,
    .more-btn {
        width: 100%;
    }

}