/* assets/styles/page/main.css */

@charset "UTF-8";

/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --page-font: var(--default-font);
    --heading-font: "Nunito", var(--default-font);
    --nav-font: var(--default-font);
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #f75815; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #000000;  /* The default color of the main navmenu links */
    --nav-hover-color: #f75815; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #f75815; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

.header .top-row {
    padding-bottom: 10px;
}

.header .top-row .logo {
    text-decoration: none;
}

.header .top-row .logo img {
    max-height: 40px;
    margin-right: 10px;
}

.header .top-row .logo .sitename {
    font-size: 32px;
    font-weight: 400;
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin: 0;
}

.header .top-row .logo span {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.header .social-links a {
    color: var(--heading-color);
    padding: 0 8px;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s;
}

.header .social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .header .social-links {
        padding-right: 40px;
    }
}

.header .search-form {
    position: relative;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.header .search-form .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 7px 40px 7px 15px;
    background: transparent;
    transition: 0.3s;
    color: var(--default-color);
    font-size: 14px;
}

.header .search-form .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.header .search-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.header .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: 0;
    color: var(--heading-color);
    transition: 0.3s;
}

.header .search-form button:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .header .search-form {
        display: none;
    }
}

.header .nav-wrap {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.header .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 5px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        background-color: color-mix(in srgb, var(--default-color) 10%, white 15%);
        color: var(--nav-color);
        font-size: 24px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        padding: 5px;
        border-radius: 4px;
        transition: color 0.2s;
    }

    .mobile-nav-toggle:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    text-align: center;
    padding: 16px 0 4px;
}

.page-title .breadcrumbs {
    margin-bottom: 0;
}

.page-title .breadcrumbs .breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.page-title .title-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.page-title .title-wrapper p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-title {
        padding: 12px 0 2px;
    }

    .page-title .title-wrapper h1 {
        font-size: 2rem;
    }

    .page-title .title-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title .title-wrapper h1 {
        font-size: 1.75rem;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title div {
    color: var(--heading-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.tool-post-visual,
.tool-post-visual * {
    box-sizing: border-box;
}

.tool-post-visual {
    --post-start: #334155;
    --post-end: #0ea5e9;
    --post-accent: #fbbf24;
    --post-ink: #ffffff;
    --post-muted: rgba(255, 255, 255, 0.72);
    position: relative;
    display: block;
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: inherit;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.28), transparent 30%),
        radial-gradient(circle at 20% 92%, rgba(251, 191, 36, 0.32), transparent 34%),
        linear-gradient(135deg, var(--post-start), var(--post-end));
    color: var(--post-ink);
    isolation: isolate;
}

.tool-post-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), transparent);
    opacity: 0.7;
    z-index: 0;
}

.tool-post-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 58%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.68));
    z-index: 1;
}

.tool-post-bg-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.tool-post-bg-icons i {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.42);
    font-size: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.tool-post-bg-icons i:nth-child(1) {
    top: 28%;
    right: 22%;
}

.tool-post-bg-icons i:nth-child(2) {
    top: 48%;
    right: 10%;
    width: 58px;
    height: 58px;
    font-size: 1.55rem;
    opacity: 0.72;
}

.tool-post-bg-icons i:nth-child(3) {
    right: 34%;
    bottom: 26%;
}

.tool-post-bg-icons i:nth-child(4) {
    right: 8%;
    bottom: 12%;
}

.tool-post-bg-icons i:nth-child(5) {
    top: 18%;
    right: 42%;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    opacity: 0.58;
}

.tool-post-header,
.tool-post-title,
.tool-post-map,
.tool-post-footer {
    position: relative;
    z-index: 2;
}

.tool-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 0;
}

.tool-post-kicker {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--post-muted);
    font-family: var(--nav-font);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.tool-post-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.tool-post-icon i {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
}

.tool-post-title {
    max-width: 78%;
    padding: 22px 24px 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(1.25rem, 2.4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.tool-post-map {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 10px;
    width: min(82%, 520px);
    margin: 30px 24px 0;
}

.tool-post-node {
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.tool-post-node:not(:nth-child(2)):not(:nth-child(4)) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tool-post-node i {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1;
}

.tool-post-node:nth-child(2),
.tool-post-node:nth-child(4) {
    min-height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.tool-post-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 24px 24px;
    color: var(--post-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.tool-post-footer span + span::before {
    content: "•";
    margin-right: 10px;
}

.tool-post-detail {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    gap: 10px;
    color: #ffffff;
}

.tool-post-detail .tool-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 800;
}

.tool-post-detail .tool-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tool-post-detail .tool-post-detail-title {
    max-width: 88%;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(1.25rem, 2.1vw, 1.9rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.tool-post-detail .tool-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
}

.tool-post-detail .tool-post-read-more i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.home-tool-showcase {
    padding: 34px 0 58px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-tool-showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.home-tool-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-tool-showcase-head h2 {
    margin: 0;
    color: var(--heading-color);
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.home-tool-showcase-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 64%);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 0.92rem;
    font-weight: 900;
}

.home-tool-showcase-link i {
    transition: transform 0.25s ease;
}

.home-tool-showcase-link:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--contrast-color);
}

.home-tool-showcase-link:hover i {
    transform: translateX(4px);
}

.home-family-board {
    display: grid;
    grid-template-columns: minmax(210px, 0.24fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.home-family-index {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 92px;
}

.home-family-index-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--family-start), transparent 78%);
    border-radius: 10px;
    background: #ffffff;
    color: var(--heading-color);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-family-index-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--family-start), transparent 42%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    color: var(--heading-color);
}

.home-family-index-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--family-start), var(--family-end));
    color: #ffffff;
    font-size: 1.2rem;
}

.home-family-index-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.home-family-index-copy strong {
    overflow: hidden;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-family-index-copy small {
    color: color-mix(in srgb, var(--default-color), transparent 38%);
    font-size: 0.78rem;
    font-weight: 800;
}

.home-family-panels {
    display: grid;
    gap: 18px;
}

.home-family-panel {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.home-family-panel-main {
    display: grid;
    grid-template-columns: minmax(290px, 0.48fr) minmax(0, 0.52fr);
    min-height: 280px;
}

.home-family-workspace {
    position: relative;
    display: grid;
    align-content: start;
    gap: 22px;
    min-height: 280px;
    overflow: hidden;
    padding: 24px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, var(--family-start), var(--family-end));
    background-size: 28px 28px, 28px 28px, auto;
    color: #ffffff;
}

.home-family-workspace::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.46));
}

.home-family-workspace-top,
.home-family-workflow,
.home-family-preview {
    position: relative;
    z-index: 1;
}

.home-family-workspace-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.home-family-workspace-top span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.home-family-workspace-top i {
    color: #ffffff;
    font-size: 1.45rem;
}

.home-family-workspace-top small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-family-workflow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
}

.home-family-workflow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.home-family-preview {
    display: grid;
    gap: 10px;
    min-height: 112px;
    margin-top: 8px;
}

.home-family-preview span {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
}

.home-family-preview-architecture {
    grid-template-columns: 1fr 0.35fr 1fr;
    align-items: center;
}

.home-family-preview-architecture span:nth-child(1),
.home-family-preview-architecture span:nth-child(3) {
    min-height: 86px;
    border-radius: 14px;
}

.home-family-preview-architecture span:nth-child(2) {
    min-height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}

.home-family-preview-architecture span:nth-child(4) {
    display: none;
}

.home-family-preview-calculate {
    grid-template-columns: 1fr 1fr;
}

.home-family-preview-calculate span {
    border-radius: 10px;
}

.home-family-preview-calculate span:nth-child(1) {
    min-height: 58px;
}

.home-family-preview-calculate span:nth-child(2) {
    min-height: 88px;
}

.home-family-preview-calculate span:nth-child(3),
.home-family-preview-calculate span:nth-child(4) {
    min-height: 18px;
    border-radius: 999px;
}

.home-family-preview-assessment,
.home-family-preview-scanning,
.home-family-preview-shell {
    grid-template-columns: 1fr;
}

.home-family-preview-assessment span,
.home-family-preview-scanning span,
.home-family-preview-shell span {
    min-height: 18px;
    border-radius: 999px;
}

.home-family-preview-assessment span:nth-child(2),
.home-family-preview-shell span:nth-child(1) {
    width: 82%;
}

.home-family-preview-assessment span:nth-child(3),
.home-family-preview-scanning span:nth-child(3),
.home-family-preview-shell span:nth-child(3) {
    width: 64%;
}

.home-family-preview-scanning span:nth-child(1) {
    width: 88px;
    height: 88px;
    border-radius: 50%;
}

.home-family-preview-shell span {
    background: rgba(15, 23, 42, 0.28);
}

.home-family-panel-copy {
    display: grid;
    align-content: center;
    padding: clamp(26px, 4vw, 42px);
}

.home-family-eyebrow {
    color: color-mix(in srgb, var(--family-start), transparent 10%);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-family-panel-copy h3 {
    margin: 0;
    padding-top: 10px;
    color: var(--heading-color);
    font-size: clamp(1.7rem, 2.8vw, 2.55rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.home-family-panel-copy p {
    margin: 16px 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 24%);
    font-size: 1rem;
    line-height: 1.65;
}

.home-family-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 38%);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-family-facts span + span::before {
    content: "•";
    margin-right: 10px;
}

.home-family-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.home-family-primary-action,
.home-family-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 900;
}

.home-family-primary-action {
    gap: 8px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--family-start), var(--family-end));
    color: #ffffff;
}

.home-family-primary-action:hover {
    color: #ffffff;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--family-start), transparent 78%);
}

.home-family-primary-action i {
    transition: transform 0.25s ease;
}

.home-family-primary-action:hover i {
    transform: translateX(4px);
}

.home-family-secondary-action {
    padding: 0 16px;
    border: 1px solid color-mix(in srgb, var(--family-start), transparent 62%);
    color: color-mix(in srgb, var(--family-start), #111827 12%);
}

.home-family-secondary-action:hover {
    border-color: var(--family-start);
    background: color-mix(in srgb, var(--family-start), transparent 92%);
    color: color-mix(in srgb, var(--family-start), #111827 12%);
}

.home-family-tool-list {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.home-family-tool-list-head,
.home-family-tool-link {
    display: grid;
    grid-template-columns: 42px minmax(210px, 0.42fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 22px;
}

.home-family-tool-list-head {
    grid-template-columns: minmax(0, 1fr) auto;
    color: color-mix(in srgb, var(--default-color), transparent 38%);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-family-tool-list-head small {
    color: color-mix(in srgb, var(--family-start), transparent 16%);
    font-weight: 900;
}

.home-family-tool-link {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    color: inherit;
}

.home-family-tool-link:hover {
    background: color-mix(in srgb, var(--family-start), transparent 96%);
    color: inherit;
}

.home-family-tool-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--family-start), transparent 88%);
    color: color-mix(in srgb, var(--family-start), #111827 8%);
}

.home-family-tool-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.home-family-tool-copy strong {
    overflow: hidden;
    color: var(--heading-color);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-family-tool-copy small {
    color: color-mix(in srgb, var(--default-color), transparent 42%);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
}

.home-family-tool-link em {
    display: -webkit-box;
    overflow: hidden;
    color: color-mix(in srgb, var(--default-color), transparent 32%);
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

@media (max-width: 1199px) {
    .home-family-board,
    .home-family-panel-main {
        grid-template-columns: 1fr;
    }

    .home-family-index {
        position: static;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .home-family-index-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home-tool-showcase {
        padding: 24px 0 38px;
    }

    .home-tool-showcase-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-tool-showcase-link {
        width: 100%;
    }

    .home-family-index,
    .home-family-tool-list-head,
    .home-family-tool-link {
        grid-template-columns: 1fr;
    }

    .home-family-index-card {
        justify-items: start;
        grid-template-columns: 42px minmax(0, 1fr);
        text-align: left;
    }

    .home-family-workspace {
        min-height: 250px;
    }

    .home-family-workflow {
        grid-template-columns: 1fr;
    }

    .home-family-panel-copy {
        padding: 24px;
    }

    .home-family-actions,
    .home-family-primary-action,
    .home-family-secondary-action {
        width: 100%;
    }

    .home-family-tool-link em {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

.home-landing {
    padding: 28px 0 34px;
    background: linear-gradient(180deg, #fff9f7 0%, #ffffff 100%);
}

.home-landing .home-landing-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(34px, 6vw, 96px);
    min-height: 390px;
    padding: clamp(14px, 2.4vw, 30px) 0 clamp(32px, 4vw, 50px);
}

.home-landing .home-landing-content {
    max-width: 860px;
}

.home-landing .home-landing-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 18px;
    border-radius: 999px;
    background: #fff0ea;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-landing h1 {
    max-width: 900px;
    margin: 0;
    color: var(--heading-color);
    font-size: clamp(2.11rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-landing p {
    max-width: 920px;
    margin: 26px 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 18%);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.75;
}

.home-landing .home-landing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.home-landing .home-landing-features span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 8px;
    background: #ffffff;
    color: color-mix(in srgb, var(--default-color), transparent 12%);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    font-size: 0.96rem;
    font-weight: 800;
}

.home-landing .home-landing-features i {
    color: var(--accent-color);
    font-size: 1.08rem;
}

.home-landing .home-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.home-landing .home-landing-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.home-landing .home-landing-actions .btn-primary {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.home-landing .home-landing-actions .btn-outline {
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 58%);
    background: transparent;
    color: var(--accent-color);
}

.home-landing .home-landing-actions .btn:hover {
    transform: translateY(-2px);
}

.home-landing .home-landing-actions .btn-outline:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--contrast-color);
}

.home-landing .home-landing-media {
    position: relative;
    min-width: 0;
}

.home-landing .home-landing-media img {
    display: block;
    width: 100%;
    min-height: 340px;
    max-height: 450px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.home-landing .home-landing-stat {
    position: absolute;
    right: -22px;
    bottom: 34px;
    display: grid;
    grid-template-columns: 52px auto;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    min-width: 190px;
    padding: 15px 18px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.home-landing .home-landing-stat span {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #fff0ea;
    color: var(--accent-color);
    font-size: 1.55rem;
}

.home-landing .home-landing-stat strong {
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.home-landing .home-landing-stat small {
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    font-size: 0.82rem;
    font-weight: 800;
}

.home-featured-card,
.home-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-card-slider {
    position: relative;
    overflow: hidden;
    padding: 4px 2px 42px;
}

.home-card-slider .swiper-wrapper {
    align-items: stretch;
}

.home-card-slider .swiper-slide {
    display: flex;
    height: auto;
}

.home-card-slider .swiper-slide > article {
    width: 100%;
}

.home-slider-pagination {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
}

.home-slider-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: color-mix(in srgb, var(--accent-color), transparent 38%);
    opacity: 0.42;
    transition: width 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.home-slider-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--accent-color);
    opacity: 1;
}

.home-featured-card:hover,
.home-category-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.home-featured-media,
.home-category-media {
    display: block;
    overflow: hidden;
}

.home-featured-media .tool-post-visual,
.home-category-media .tool-post-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.home-featured-card:hover .tool-post-visual,
.home-category-card:hover .tool-post-visual {
    transform: scale(1.025);
}

.home-featured-content,
.home-category-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 24px 24px;
}

.home-featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-bottom: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 36%);
    font-size: 0.86rem;
    font-weight: 700;
}

.home-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-featured-meta i {
    color: var(--accent-color);
}

.home-featured-content h3,
.home-category-content h3 {
    margin: 0;
    color: var(--heading-color);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.28;
}

.home-featured-content h3 a,
.home-category-content h3 a {
    color: inherit;
}

.home-featured-content p,
.home-category-content p {
    margin: 14px 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 26%);
    font-size: 0.95rem;
    line-height: 1.65;
}

.home-featured-read,
.home-category-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--accent-color);
    font-size: 0.92rem;
    font-weight: 900;
}

.home-featured-read i,
.home-category-read i {
    transition: transform 0.25s ease;
}

.home-featured-read:hover i,
.home-category-read:hover i {
    transform: translateX(4px);
}

.home-category-section {
    background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.home-category-card {
    box-shadow: none;
}

.home-category-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.featured-posts .blog-post-media {
    position: absolute;
    inset: 0;
    display: block;
}

.featured-posts .blog-post-item .tool-post-visual {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 15px;
}

.category-section .featured-post .post-img,
.category-section .list-post .post-img,
.latest-posts .post-img,
.home-cta-visual {
    display: block;
}

.category-section .featured-post .post-img .tool-post-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

.category-section .list-post .post-img .tool-post-visual {
    width: 100px;
    height: 100px;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 8px;
}

.latest-posts .post-img .tool-post-visual {
    min-height: 0;
    aspect-ratio: 3 / 2;
    border-radius: 10px 10px 0 0;
}

.call-to-action-2 .home-cta-visual .tool-post-visual {
    min-height: 300px;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tool-post-visual-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-post-visual-list .tool-post-header {
    padding: 0;
}

.tool-post-visual-list .tool-post-kicker,
.tool-post-visual-list .tool-post-title,
.tool-post-visual-list .tool-post-map,
.tool-post-visual-list .tool-post-footer {
    display: none;
}

.tool-post-visual-list .tool-post-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.tool-post-visual-list .tool-post-icon i {
    font-size: 1.6rem;
}

.category-section .featured-post .category-post-summary {
    margin: 12px 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    font-size: 0.95rem;
    line-height: 1.65;
}

.category-section .featured-post .category-read-more,
.category-section .list-post .list-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--accent-color);
    font-size: 0.92rem;
    font-weight: 800;
}

.category-section .featured-post .category-read-more i,
.category-section .list-post .list-read-more i {
    transition: transform 0.25s ease;
}

.category-section .featured-post .category-read-more:hover i,
.category-section .list-post .list-read-more:hover i {
    transform: translateX(4px);
}

.latest-posts .latest-summary {
    margin: -8px 0 20px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    line-height: 1.65;
}

.latest-posts .latest-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: color-mix(in srgb, var(--default-color), transparent 38%);
    font-size: 0.88rem;
}

.latest-posts .latest-card-footer span,
.latest-posts .latest-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.latest-posts .latest-card-footer a {
    margin-left: auto;
    color: var(--accent-color);
    font-weight: 800;
}

.latest-posts .latest-card-footer a i {
    transition: transform 0.25s ease;
}

.latest-posts .latest-card-footer a:hover i {
    transform: translateX(4px);
}

.newsletter-visual {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(145deg, #172033 0%, #234264 54%, #f75815 160%);
    background-size: 24px 24px, 24px 24px, auto;
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
}

.newsletter-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.45));
}

.newsletter-visual-top,
.newsletter-envelope,
.newsletter-lines,
.newsletter-compact-card {
    position: relative;
    z-index: 1;
}

.newsletter-visual-top {
    position: absolute;
    top: 22px;
    right: 24px;
    display: flex;
    gap: 14px;
}

.newsletter-visual-top span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
}

.newsletter-envelope {
    position: absolute;
    top: 82px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 2.6rem;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.28);
}

.newsletter-lines {
    position: absolute;
    left: 44px;
    bottom: 72px;
    display: grid;
    gap: 10px;
    width: min(64%, 260px);
}

.newsletter-lines span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.newsletter-lines span:nth-child(2) {
    width: 78%;
}

.newsletter-lines span:nth-child(3) {
    width: 54%;
}

.newsletter-compact-card {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 42px auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    min-width: 190px;
    padding: 13px 15px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--heading-color);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.newsletter-compact-card i {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff0ea;
    color: var(--accent-color);
}

.newsletter-compact-card strong {
    color: var(--accent-color);
    font-size: 1rem;
    line-height: 1.1;
}

.newsletter-compact-card small {
    color: color-mix(in srgb, var(--default-color), transparent 36%);
    font-size: 0.76rem;
    font-weight: 800;
}

@media (max-width: 991px) {
    .home-landing .home-landing-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 34px;
    }

    .home-landing .home-landing-content {
        max-width: 100%;
    }

    .home-landing .home-landing-media img {
        min-height: 300px;
    }

    .home-landing .home-landing-stat {
        right: 18px;
        bottom: 18px;
    }

}

@media (max-width: 768px) {
    .home-landing {
        padding-bottom: 20px;
    }

    .home-landing .home-landing-inner {
        gap: 26px;
    }

    .home-landing .home-landing-features span,
    .home-landing .home-landing-actions .btn {
        width: 100%;
    }

    .home-landing .home-landing-media img {
        min-height: 260px;
        border-radius: 12px;
    }

    .home-landing .home-landing-stat {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .tool-post-title {
        max-width: 88%;
    }

    .category-section .list-post .post-img .tool-post-visual {
        width: 80px;
        height: 80px;
    }
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
    overflow: hidden;
    position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
    height: auto !important;
}

.featured-posts .blog-post-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

@media (max-width: 1200px) {
    .featured-posts .blog-post-item {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .featured-posts .blog-post-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-posts .blog-post-item {
        height: 450px;
    }
}

.featured-posts .blog-post-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-posts .blog-post-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.featured-posts .blog-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--contrast-color);
    z-index: 2;
}

@media (max-width: 1200px) {
    .featured-posts .blog-post-content {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .featured-posts .blog-post-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .featured-posts .blog-post-content {
        padding: 30px;
    }
}

.featured-posts .blog-post-content .post-meta {
    margin-bottom: 15px;
    font-size: 14px;
}

.featured-posts .blog-post-content .post-meta span {
    display: inline-block;
    margin-right: 20px;
}

.featured-posts .blog-post-content .post-meta span i {
    margin-right: 5px;
    font-size: 16px;
}

.featured-posts .blog-post-content .post-meta span:last-child {
    margin-right: 0;
}

.featured-posts .blog-post-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--contrast-color);
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .featured-posts .blog-post-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .featured-posts .blog-post-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .featured-posts .blog-post-content h2 {
        font-size: 22px;
    }
}

.featured-posts .blog-post-content h2 a {
    color: var(--contrast-color);
    transition: 0.3s;
}

.featured-posts .blog-post-content h2 a:hover {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .featured-posts .blog-post-content p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
}

.featured-posts .blog-post-content .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--contrast-color);
    font-weight: 500;
    transition: 0.3s;
}

.featured-posts .blog-post-content .read-more i {
    margin-left: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.featured-posts .blog-post-content .read-more:hover {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Category Section Section
--------------------------------------------------------------*/
.category-section .featured-post {
    margin-bottom: 40px;
}

.category-section .featured-post .post-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-section .featured-post .post-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.category-section .featured-post .category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-section .featured-post .post-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-section .featured-post .author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.category-section .featured-post .author-meta .author-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.category-section .featured-post .author-meta .author-name {
    color: var(--heading-color);
    font-weight: 500;
}

.category-section .featured-post .author-meta .post-date {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .featured-post .author-meta .post-date:before {
    content: "-";
    margin: 0 8px;
}

.category-section .featured-post .title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
}

.category-section .featured-post .title a {
    color: var(--heading-color);
    transition: color 0.3s;
}

.category-section .featured-post .title a:hover {
    color: var(--accent-color);
}

.category-section .list-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.category-section .list-post .post-img {
    flex: 0 0 100px;
    border-radius: 8px;
    overflow: hidden;
}

.category-section .list-post .post-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.category-section .list-post .post-content {
    flex: 1;
}

.category-section .list-post .post-category {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: inline-block;
}

.category-section .list-post .title {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.category-section .list-post .title a {
    color: var(--heading-color);
    transition: color 0.3s;
}

.category-section .list-post .title a:hover {
    color: var(--accent-color);
}

.category-section .list-post .post-meta {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .list-post .post-meta .read-time:after {
    content: "•";
    margin: 0 8px;
}

@media (max-width: 992px) {
    .category-section .featured-post .title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .category-section .list-post .post-img {
        flex: 0 0 80px;
    }

    .category-section .list-post .post-img img {
        width: 80px;
        height: 80px;
    }

    .category-section .list-post .title {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
    position: relative;
    padding: 3rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 1rem;
    overflow: hidden;
}

.call-to-action-2 .badge {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2rem;
}

.call-to-action-2 h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.call-to-action-2 p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

.call-to-action-2 .features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
    transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
    font-weight: 500;
}

.call-to-action-2 .cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    color: var(--accent-color);
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.call-to-action-2 .content-right {
    flex-shrink: 0;
    max-width: 100%;
    width: 450px;
}

.call-to-action-2 .content-right img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--surface-color);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
    width: 3rem;
    height: 3rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.call-to-action-2 .decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
    position: absolute;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
}

@media (max-width: 991.98px) {
    .call-to-action-2 {
        padding: 2rem;
    }

    .call-to-action-2 .content-right {
        width: 100%;
        margin-top: 2rem;
    }

    .call-to-action-2 .content-right .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -3rem;
        margin-right: 1rem;
        z-index: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Latest Posts Section
--------------------------------------------------------------*/
.latest-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.latest-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.latest-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.latest-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.latest-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.latest-posts .title a:hover {
    color: var(--accent-color);
}

.latest-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.latest-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.latest-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 54px 0 72px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.call-to-action .container {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 72px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(247, 88, 21, 0.08), transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
}

@media (max-width: 992px) {
    .call-to-action .container {
        padding: 42px;
    }
}

@media (max-width: 575px) {
    .call-to-action .container {
        padding: 28px 18px;
        border-radius: 16px;
    }
}

.call-to-action .cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--accent-color);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.call-to-action .cta-kicker i {
    font-size: 1rem;
}

.call-to-action .cta-content h2 {
    max-width: 680px;
    color: var(--heading-color);
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.call-to-action .cta-content p {
    max-width: 720px;
    color: color-mix(in srgb, var(--default-color), transparent 24%);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.call-to-action .cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.call-to-action .cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    background: #ffffff;
    color: color-mix(in srgb, var(--default-color), transparent 18%);
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.call-to-action .cta-benefits i {
    color: var(--accent-color);
}

.call-to-action .cta-form .form-control {
    min-height: 56px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-right: 0;
    border-radius: 12px 0 0 12px;
    color: var(--heading-color);
    padding-left: 18px;
    font-weight: 700;
}

.call-to-action .cta-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.call-to-action .cta-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    border-radius: 0 12px 12px 0;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0 26px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.call-to-action .cta-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
    .call-to-action .cta-form .btn {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .call-to-action .cta-content {
        text-align: left;
        margin-bottom: 2rem;
    }

    .call-to-action .cta-image {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .call-to-action .cta-form .input-group {
        display: grid;
        gap: 10px;
    }

    .call-to-action .cta-form .form-control,
    .call-to-action .cta-form .btn {
        width: 100%;
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 12px;
    }

    .newsletter-visual {
        min-height: 280px;
    }

    .newsletter-visual-top {
        right: 18px;
    }

    .newsletter-lines {
        left: 24px;
        width: 62%;
    }

    .newsletter-compact-card {
        right: 18px;
        bottom: 18px;
        min-width: 168px;
    }
}

/*--------------------------------------------------------------
# Category Postst Section
--------------------------------------------------------------*/
.category-postst article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.category-postst .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.category-postst .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.category-postst .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.category-postst .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.category-postst .title a:hover {
    color: var(--accent-color);
}

.category-postst .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.category-postst .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.category-postst .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-2 li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-2 li a {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-details .hero-img {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.blog-details .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
    color: var(--contrast-color);
    margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
    color: var(--contrast-color);
    font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .blog-details .hero-img {
        height: 350px;
        margin-top: -30px;
        margin-bottom: 2rem;
    }
}

.blog-details .article-content {
    padding: 0 1rem;
}

.blog-details .article-content .content-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.blog-details .article-content .content-header .title-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    font-family: var(--page-font);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.4;
}

.blog-details .article-content .content-header .title-meta .category {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
}

.blog-details .article-content .content-header .title-meta .divider {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .article-content .content-header .title-meta .reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.blog-details .article-content .content-header .title {
    max-width: 720px;
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 4.6vw, 2.8rem);
    line-height: 1.14;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 0;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .blog-details .article-content .content-header .title {
        font-size: clamp(2rem, 9vw, 2.35rem);
        line-height: 1.16;
    }
}

.blog-details .article-content .content-header .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
    margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
    margin: 0 0.75rem;
}

@media (max-width: 767.98px) {
    .blog-details .article-content {
        padding: 0;
    }

    .blog-details .article-content .content-header {
        margin-bottom: 2rem;
    }

    .blog-details .article-content .content-header .title-meta {
        font-size: 0.95rem;
    }

    .blog-details .article-content .content-header .author-info {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .blog-details .article-content .content-header .author-info .author-details {
        gap: 0.9rem;
    }

    .blog-details .article-content .content-header .author-info .author-details .author-img {
        width: 44px;
        height: 44px;
    }

    .blog-details .article-content .content-header .author-info .author-details .info h4 {
        font-size: 1rem;
    }

    .blog-details .article-content .content-header .author-info .author-details .info .role,
    .blog-details .article-content .content-header .author-info .post-meta {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .blog-details .article-content .content-header .author-info .post-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
    }

    .blog-details .article-content .content-header .author-info .post-meta .divider {
        margin: 0;
    }
}

.blog-details .article-content .content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-details .article-content .content h2 {
    font-size: 2rem;
    color: var(--heading-color);
    margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
    margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.blog-details .article-content .content .content-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
    float: right;
    max-width: 450px;
    margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
    .blog-details .article-content .content .content-image.right-aligned {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.blog-details .article-content .content .content-image img {
    width: 100%;
    height: auto;
}

.blog-details .article-content .content .content-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
    color: var(--heading-color);
    font-weight: 500;
}

.blog-details .article-content .content .content-grid {
    margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
    transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-details .article-content .content blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    font-family: serif;
    line-height: 1;
}

.blog-details .article-content .content blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--heading-color);
    margin: 0 0 1rem;
    position: relative;
}

.blog-details .article-content .content blockquote cite {
    font-style: normal;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    display: block;
}

.blog-details .article-content .meta-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    display: grid;
    gap: 1.5rem;
}

.blog-details .article-content .meta-bottom h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .author-box {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-author .author-box:hover {
    transform: translateY(-5px);
}

.blog-author .author-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--surface-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-author .author-img:hover {
    transform: scale(1.05);
}

.blog-author .author-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    margin: 0 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-author .author-social-links a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.blog-author .author-social-links a.linkedin:hover {
    background-color: #0077b5;
}

.blog-author .author-social-links a.twitter:hover {
    background-color: #000000;
}

.blog-author .author-social-links a.github:hover {
    background-color: #333333;
}

.blog-author .author-social-links a.facebook:hover {
    background-color: #1877f2;
}

.blog-author .author-social-links a.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.blog-author .author-content {
    padding-left: 1rem;
}

@media (max-width: 767.98px) {
    .blog-author .author-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
}

.blog-author .author-content .author-name {
    font-size: 1.75rem;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.blog-author .author-content .author-title {
    display: inline-block;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 0.5rem;
    font-family: var(--heading-font);
}

.blog-author .author-content .author-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--default-color);
    margin: 1rem 0;
}

.blog-author .author-content .author-website {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .blog-author .author-content .author-website {
        justify-content: center;
    }
}

.blog-author .author-content .author-website a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.blog-author .author-content .author-website a i {
    font-size: 1.1rem;
}

.blog-author .author-content .author-website a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    transform: translateX(3px);
}

.blog-author .author-content .author-website .more-posts {
    font-weight: 500;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding-bottom: 30px;
}

.blog-comments .section-header {
    margin-bottom: 40px;
}

.blog-comments .section-header h3 {
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-comments .section-header h3 .comment-count {
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
    font-size: 24px;
    font-weight: 500;
}

.blog-comments .comments-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-comments .comment-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.blog-comments .comment-card:hover {
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.blog-comments .comment-card.reply {
    margin-left: 48px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
}

@media (min-width: 768px) {
    .blog-comments .comment-card.reply {
        margin-left: 85px;
    }
}

.blog-comments .reply-thread {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-comments .comment-header {
    margin-bottom: 20px;
}

.blog-comments .comment-header .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-comments .comment-header .user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comments .comment-header .user-info .meta .name {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .meta .date {
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-comments .comment-header .user-info .meta .date i {
    font-size: 13px;
}

.blog-comments .comment-content p {
    color: var(--default-color);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.blog-comments .comment-actions {
    display: flex;
    gap: 20px;
}

.blog-comments .comment-actions .action-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
    transform: scale(1.2);
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
    transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .blog-comments .section-header {
        margin-bottom: 30px;
    }

    .blog-comments .section-header h3 {
        font-size: 28px;
    }

    .blog-comments .section-header h3 .comment-count {
        font-size: 20px;
    }

    .blog-comments .comment-card {
        padding: 20px;
    }

    .blog-comments .comment-card.reply {
        margin-left: 35px;
    }

    .blog-comments .comment-header .user-info img {
        width: 40px;
        height: 40px;
    }

    .blog-comments .comment-header .user-info .meta .name {
        font-size: 15px;
    }

    .blog-comments .comment-header .user-info .meta .date {
        font-size: 13px;
    }

    .blog-comments .comment-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .blog-comments .comment-actions .action-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
    max-width: 900px;
    margin: 0 auto 0 auto;
    padding-top: 30px;
}

.blog-comment-form form {
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.blog-comment-form .section-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 15px;
    margin: 0;
}

.blog-comment-form .form-group {
    margin-bottom: 20px;
}

.blog-comment-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
    font-size: 14px;
}

.blog-comment-form .form-group .form-control {
    height: 48px;
    padding: 10px 15px;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
    border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.blog-comment-form .btn-submit {
    padding: 12px 32px;
    border-radius: 50px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 768px) {
    .blog-comment-form {
        padding: 20px;
    }

    .blog-comment-form .section-header h3 {
        font-size: 24px;
    }

    .blog-comment-form .btn-submit {
        width: 100%;
        padding: 12px 20px;
    }
}

/*--------------------------------------------------------------
# Author Profile Section
--------------------------------------------------------------*/
.author-profile.section {
    --accent-color: #2563eb;
    --profile-accent: #2563eb;
    --profile-accent-soft: #eff6ff;
    --profile-secondary: #1d4ed8;
    --profile-secondary-soft: #dbeafe;
    --profile-border: #e2e8f0;
    --profile-muted: #64748b;
    background: #ffffff;
}

.author-profile .author-profile-1 .row {
    --bs-gutter-x: 1.75rem;
}

.author-profile .author-card {
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    border: 1px solid var(--profile-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.author-profile .author-card::before,
.author-profile .author-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--profile-accent), var(--profile-secondary));
}

.author-profile .author-card .author-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.author-profile .author-card .author-image .profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid var(--profile-border);
    background: #f8fafc;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.author-profile .author-card .author-info {
    text-align: center;
}

.author-profile .author-card .author-info h2 {
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.author-profile .author-card .author-info .designation {
    color: var(--profile-accent);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.author-profile .author-card .author-info .author-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--profile-muted);
}

.author-profile .author-card .author-stats {
    border-top: 1px solid var(--profile-border);
    border-bottom: 1px solid var(--profile-border);
    padding: 1rem 0;
}

.author-profile .author-card .author-stats .stat-item h4 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--profile-secondary);
}

.author-profile .author-card .author-stats .stat-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--profile-muted);
}

.author-profile .author-card .social-links {
    margin-top: 1.5rem;
}

.author-profile .author-card .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--profile-accent-soft);
    color: var(--profile-accent);
    border: 1px solid #bfdbfe;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.author-profile .author-card .social-links a:hover {
    background-color: var(--profile-accent);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.author-profile .author-card .social-links a i {
    font-size: 1rem;
}

.author-profile .author-content {
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    border: 1px solid var(--profile-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.author-profile .author-content .content-header {
    margin-bottom: 1.5rem;
}

.author-profile .author-content .content-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0;
}

.author-profile .author-content .content-header h3::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--profile-accent);
    box-shadow: 0 0 0 5px var(--profile-accent-soft);
}

.author-profile .author-content .content-body p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--profile-muted);
}

.author-profile .author-content .content-body .expertise-areas h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--heading-color);
}

.author-profile .author-content .content-body .expertise-areas .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.author-profile .author-content .content-body .expertise-areas .tags span {
    background: #f8fafc;
    color: #334155;
    border: 1px solid var(--profile-border);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.author-profile .author-content .content-body .expertise-areas .tags span:hover {
    background-color: var(--profile-accent);
    color: var(--contrast-color);
}

.author-profile .author-content .content-body .featured-articles h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.author-profile .author-content .content-body .featured-articles .article-card {
    background: var(--background-color);
    border: 1px solid var(--profile-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img {
    height: 200px;
    overflow: hidden;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img:hover img {
    transform: scale(1.1);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details {
    padding: 1.25rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-category {
    display: inline-block;
    background: var(--profile-secondary-soft);
    color: var(--profile-secondary);
    border: 1px solid #bfdbfe;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 a:hover {
    color: var(--profile-accent);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 32%);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta span {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta span i {
    margin-right: 0.35rem;
    font-size: 1rem;
}

.author-profile .author-content .website-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--profile-accent);
    font-weight: 700;
}

.author-profile .author-content .website-link i {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .author-profile .author-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .author-profile .featured-articles .article-card {
        margin-bottom: 1.5rem;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
    margin-bottom: 1rem;
}

.about .section-badge i {
    font-size: 1rem;
}

.about .about-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.about .about-description,
.about .section-text {
    color: color-mix(in srgb, var(--default-color) 80%, transparent);
    line-height: 1.6;
}

.about .features-boxes .feature-box {
    height: 100%;
    position: relative;
}

.about .features-boxes .feature-box .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
    color: var(--accent-color);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.about .features-boxes .feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about .features-boxes .feature-box h3 a {
    color: var(--heading-color);
}

.about .features-boxes .feature-box p {
    color: color-mix(in srgb, var(--default-color) 80%, transparent);
    margin-bottom: 0;
    line-height: 1.6;
}

.about .features-boxes .feature-box:hover .icon-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.about .features-boxes .feature-box:hover h3 a {
    color: var(--accent-color);
}

.about .video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about .video-box img {
    width: 100%;
    border-radius: 20px;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    position: relative;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    transition: 0.3s;
}

.team .team-member:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
    flex: 0 0 200px;
    overflow: hidden;
}

.team .team-member .member-img img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
    padding: 25px;
    text-align: left;
}

.team .team-member .member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.team .team-member .member-info span {
    font-size: 0.9rem;
    font-weight: 400;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    display: block;
    margin-bottom: 15px;
}

.team .team-member .member-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
    display: flex;
    gap: 10px;
}

.team .team-member .member-info .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    color: var(--heading-color);
    transition: 0.3s;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
    .team .team-member {
        flex-direction: column;
    }

    .team .team-member .member-img {
        flex: auto;
    }

    .team .team-member .member-img img {
        width: 100%;
        border-radius: 8px 8px 0 0;
    }

    .team .team-member .member-info {
        text-align: center;
    }

    .team .team-member .member-info .social {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Privacy Policy Page
--------------------------------------------------------------*/
.privacy-policy {
    --accent-color: #2563eb;
    --privacy-accent: #2563eb;
    --privacy-accent-dark: #1d4ed8;
    --privacy-blue: #2563eb;
    --privacy-blue-soft: #eff6ff;
    --privacy-border: #e2e8f0;
    --privacy-muted: #64748b;
    --privacy-text: #334155;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    font-family: var(--default-font);
}

.privacy-policy .privacy-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 28px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--surface-color);
    border: 1px solid var(--privacy-border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.privacy-policy .privacy-hero-icon,
.privacy-policy .privacy-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--privacy-accent);
    background: var(--privacy-blue-soft);
    border: 1px solid #bfdbfe;
}

.privacy-policy .privacy-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    font-size: 34px;
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.12);
}

.privacy-policy .privacy-kicker {
    margin: 0 0 8px;
    color: var(--privacy-accent);
    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.privacy-policy h1 {
    margin: 0 0 10px;
    color: #0f172a;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
}

.privacy-policy .privacy-hero p:not(.privacy-kicker) {
    max-width: 760px;
    margin: 0;
    color: var(--privacy-text);
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.privacy-policy .privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.privacy-policy .privacy-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    color: #1e293b;
    background: var(--privacy-blue-soft);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.privacy-policy .privacy-meta i {
    color: var(--privacy-blue);
}

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

.privacy-policy .privacy-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    min-width: 0;
    padding: clamp(1.25rem, 2vw, 1.65rem);
    background: var(--surface-color);
    border: 1px solid var(--privacy-border);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.privacy-policy .privacy-card-wide {
    grid-column: 1 / -1;
}

.privacy-policy .privacy-contact-card {
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.privacy-policy .privacy-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 21px;
}

.privacy-policy .privacy-card h2 {
    margin: 0 0 10px;
    color: #1e293b;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 850;
    line-height: 1.25;
}

.privacy-policy .privacy-card p,
.privacy-policy .privacy-card li {
    color: var(--privacy-text);
    font-size: 15px;
    line-height: 1.65;
    hyphens: auto;
    text-align: justify;
    text-justify: inter-word;
}

.privacy-policy .privacy-card p {
    margin: 0;
}

.privacy-policy .privacy-card p + p {
    margin-top: 10px;
}

.privacy-policy .privacy-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 1.1rem;
}

.privacy-policy .privacy-card li::marker {
    color: var(--privacy-accent);
}

.privacy-policy .privacy-card a {
    font-weight: 800;
}

@media (max-width: 991px) {
    .privacy-policy .privacy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .privacy-policy .privacy-hero,
    .privacy-policy .privacy-card {
        grid-template-columns: 1fr;
    }

    .privacy-policy .privacy-hero-icon,
    .privacy-policy .privacy-card-icon {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact.section {
    --accent-color: #2563eb;
    --contact-accent: #2563eb;
    --contact-accent-soft: #eff6ff;
    --contact-secondary: #1d4ed8;
    --contact-border: #e2e8f0;
    --contact-muted: #64748b;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.045), transparent 28%);
}

.contact .row.mb-5 {
    margin-bottom: 2.5rem !important;
}

.contact .info-card {
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--contact-border);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.contact .info-card .icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--contact-accent-soft);
    border: 1px solid #bfdbfe;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.contact .info-card .icon-box i {
    font-size: 24px;
    color: var(--contact-accent);
}

.contact .info-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact .info-card p {
    margin: 0;
    color: var(--contact-muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact .form-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    border: 1px solid var(--contact-border);
    border-radius: 8px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.contact .form-wrapper::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--contact-accent), var(--contact-secondary));
}

.contact .contact-form {
    display: grid;
    gap: 22px;
}

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

.contact .form-field-full {
    grid-column: 1 / -1;
}

.contact .field-control {
    display: flex;
    min-height: 58px;
    overflow: hidden;
    background: var(--surface-color);
    border: 1px solid var(--contact-border);
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .field-control:focus-within {
    border-color: var(--contact-accent);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.14);
}

.contact .field-icon {
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-accent);
    background: var(--contact-accent-soft);
    border-right: 1px solid var(--contact-border);
}

.contact .field-control .form-control {
    min-width: 0;
    width: 100%;
    color: var(--default-color);
    background-color: var(--surface-color);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    padding: 14px 18px;
}

.contact .field-control .form-control:focus {
    box-shadow: none;
}

.contact .field-control .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .field-control-select {
    position: relative;
}

.contact .contact-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px 18px;
    padding-right: 52px;
}

.contact .contact-select:invalid {
    color: color-mix(in srgb, var(--default-color), transparent 58%);
}

.contact .field-control-message {
    min-height: 210px;
}

.contact .field-control-message .field-icon {
    align-items: flex-start;
    padding-top: 20px;
}

.contact .field-control-message textarea.form-control {
    min-height: 210px;
    resize: vertical;
}

.contact .form-status {
    margin: 0;
}

.contact .form-actions {
    display: flex;
    justify-content: center;
}

.contact .form-wrapper button {
    background: linear-gradient(135deg, var(--contact-accent), var(--contact-secondary));
    border: 0;
    padding: 12px 40px;
    color: var(--contrast-color);
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
}

.contact .form-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(29, 78, 216, 0.22);
}

@media (max-width: 767.98px) {
    .contact .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Search Results Posts Section
--------------------------------------------------------------*/
.search-results-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.search-results-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.search-results-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.search-results-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.search-results-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.search-results-posts .title a:hover {
    color: var(--accent-color);
}

.search-results-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.search-results-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.search-results-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 3 Section
--------------------------------------------------------------*/
.pagination-3 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-3 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-3 li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-3 li a {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.pagination-3 li a.active,
.pagination-3 li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pagination-3 li a.active a,
.pagination-3 li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .error-404 .search-box {
        margin: 0 20px;
    }
}

/*--------------------------------------------------------------
# InfraStack Shell Header And Footer
--------------------------------------------------------------*/
.infrastack-header {
    position: sticky;
    top: 0;
    padding: 0;
    border-bottom: 1px solid #e5eaf2;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.045);
    backdrop-filter: blur(16px);
}

.infrastack-header-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 72px;
}

.infrastack-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    text-decoration: none;
}

.infrastack-logo:hover {
    color: #0f172a;
}

.infrastack-logo span {
    color: #0f172a;
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.infrastack-nav {
    justify-self: center;
}

@media (min-width: 1200px) {
    .infrastack-nav ul {
        gap: 6px;
    }

    .infrastack-nav a,
    .infrastack-nav a:focus {
        padding: 26px 12px 24px;
        color: #0f172a;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
    }

    .infrastack-nav a:hover,
    .infrastack-nav .active,
    .infrastack-nav .active:focus {
        color: #2563eb;
    }

    .infrastack-nav .active::after,
    .infrastack-nav a:hover::after {
        content: "";
        position: absolute;
        right: 12px;
        bottom: 0;
        left: 12px;
        height: 3px;
        border-radius: 999px 999px 0 0;
        background: #2563eb;
    }
}

.infrastack-header .search-form {
    width: 270px;
}

.infrastack-header .search-form .form-control {
    min-height: 40px;
    border-color: #dbe4ee;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 13px;
}

.infrastack-header .search-form .form-control::placeholder {
    color: #64748b;
}

.infrastack-header .search-form .form-control:focus {
    border-color: #93c5fd;
    background: #ffffff;
}

.infrastack-header .search-form button {
    color: #2563eb;
}

.infrastack-footer {
    color: #cbd5e1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #07111f;
    background-size: 40px 40px, 40px 40px, auto;
}

.infrastack-footer .footer-top {
    padding-top: 58px;
    padding-bottom: 34px;
    border-top: 0;
}

.infrastack-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.infrastack-footer-logo:hover {
    color: #ffffff;
}

.infrastack-footer-logo span {
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.infrastack-footer .footer-about p,
.infrastack-footer .footer-contact p {
    color: #cbd5e1;
    font-family: var(--default-font);
    line-height: 1.65;
}

.infrastack-footer .footer-contact a {
    color: #bfdbfe;
    text-decoration: none;
}

.infrastack-footer .footer-contact a:hover {
    color: #ffffff;
}

.infrastack-footer h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.infrastack-footer .footer-links ul li {
    padding: 7px 0;
}

.infrastack-footer .footer-links ul a {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
}

.infrastack-footer .footer-links ul a:hover {
    color: #60a5fa;
}

.infrastack-footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #94a3b8;
    text-align: left;
}

.infrastack-footer .copyright p,
.infrastack-footer .credits {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

@media (max-width: 1199px) {
    body.mobile-nav-active::before {
        content: none;
    }

    .mobile-nav-active .infrastack-header {
        z-index: 10002;
    }

    .infrastack-header-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
    }

    .infrastack-nav {
        position: relative;
        justify-self: end;
    }

    .infrastack-header .search-form {
        display: none;
    }

    .infrastack-header .mobile-nav-toggle {
        position: static;
        margin: 0;
        width: 52px;
        height: 52px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #eef2f7;
        color: #0f172a;
        display: inline-grid;
        place-items: center;
        font-size: 28px;
        line-height: 1;
        box-shadow: none;
        appearance: none;
    }

    .infrastack-header .mobile-nav-toggle:hover,
    .infrastack-header .mobile-nav-toggle:focus-visible {
        border-color: #cbd5e1;
        background: #e2e8f0;
        color: #0f172a;
    }

    .mobile-nav-active .infrastack-header .mobile-nav-toggle {
        position: static;
        inset: auto;
        z-index: auto;
        width: 52px;
        height: 52px;
        border-color: #bfdbfe;
        background: #eff6ff;
        color: #2563eb;
        font-size: 30px;
    }

    body.mobile-nav-active .infrastack-header #navmenu.infrastack-nav {
        position: relative;
        inset: auto;
        z-index: auto;
        display: block;
        padding: 0;
        background: transparent;
        overflow: visible;
        transition: none;
    }

    body.mobile-nav-active .infrastack-header #navmenu.infrastack-nav > ul {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 10003;
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: min(360px, calc(100vw - 32px));
        min-height: 0;
        max-height: calc(100dvh - 92px);
        margin: 0;
        padding: 14px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        background: #ffffff;
        list-style: none;
        opacity: 1;
        visibility: visible;
        box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: none;
    }

    .mobile-nav-active .infrastack-nav > ul > li {
        display: block;
        min-height: 46px;
    }

    .mobile-nav-active .infrastack-nav a,
    .mobile-nav-active .infrastack-nav a:focus {
        width: 100%;
        min-height: 46px;
        padding: 12px 14px;
        border-radius: 12px;
        background: #ffffff;
        color: #0f172a;
        font-family: var(--page-font);
        font-size: 15px;
        font-weight: 800;
        line-height: 1.25;
        white-space: normal;
    }

    .mobile-nav-active .infrastack-nav a:hover,
    .mobile-nav-active .infrastack-nav .active,
    .mobile-nav-active .infrastack-nav .active:focus {
        background: #eff6ff;
        color: #2563eb;
    }
}

@media (max-width: 420px) {
    .mobile-nav-active .infrastack-header .mobile-nav-toggle {
        right: auto;
    }

    body.mobile-nav-active .infrastack-header #navmenu.infrastack-nav > ul {
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        width: calc(100vw - 24px);
        max-height: calc(100dvh - 100px);
        border-radius: 14px;
    }
}

@media (max-width: 767px) {
    .infrastack-header-row {
        min-height: 64px;
    }

    .infrastack-logo span {
        font-size: 19px;
    }

    .infrastack-footer .footer-top .row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
        row-gap: 30px;
        margin-right: 0;
        margin-left: 0;
    }

    .infrastack-footer .footer-top .row > * {
        width: auto;
        max-width: none;
        padding-right: 0;
        padding-left: 0;
    }

    .infrastack-footer .footer-about {
        grid-column: 1 / -1;
    }

    .infrastack-footer .footer-links ul a {
        overflow-wrap: anywhere;
    }

    .infrastack-footer .copyright {
        align-items: flex-start;
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# InfraStack Home Directory
--------------------------------------------------------------*/
.home-platform-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 82px 0 58px;
    color: #ffffff;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #07111f 0%, #10183f 48%, #062f3c 100%);
    background-position: 0 0, 0 0, center;
    background-size: 42px 42px, 42px 42px, auto;
    animation: home-platform-hero-grid-drift 22s linear infinite;
}

.home-platform-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, rgba(96, 165, 250, 0.18), transparent 32%),
        linear-gradient(245deg, rgba(20, 184, 166, 0.18), transparent 36%);
    pointer-events: none;
}

.home-platform-hero::after {
    content: "";
    position: absolute;
    inset: -16% -6% -12%;
    z-index: 0;
    background:
        linear-gradient(rgba(147, 197, 253, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 197, 253, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 72% 34%, rgba(34, 211, 238, 0.16), transparent 36%);
    background-position: 0 0, 0 0, center;
    background-size: 42px 42px, 42px 42px, 100% 100%;
    opacity: 0.74;
    pointer-events: none;
    animation: home-platform-overlay-grid-drift 18s linear infinite;
    will-change: background-position, opacity;
}

.home-platform-hero .container {
    position: relative;
    z-index: 1;
}

.home-platform-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 58px;
    align-items: center;
}

.home-platform-hero-copy {
    max-width: 650px;
}

.home-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(147, 197, 253, 0.22);
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.16);
    color: #c7d2fe;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.home-platform-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 58px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
}

.home-platform-hero p {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

.home-platform-search {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: min(100%, 560px);
    margin-top: 28px;
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.36);
}

.home-platform-search i {
    padding-left: 10px;
    color: #93c5fd;
    font-size: 17px;
}

.home-platform-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.home-platform-search input::placeholder {
    color: rgba(226, 232, 240, 0.58);
}

.home-platform-search button {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-platform-search button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.home-platform-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}

.home-platform-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 232, 240, 0.82);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.home-platform-meta i {
    color: #a7f3d0;
}

.home-platform-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-platform-primary,
.home-platform-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home-platform-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28);
}

.home-platform-secondary {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.42);
    color: #dbeafe;
}

.home-platform-primary:hover,
.home-platform-secondary:hover {
    transform: translateY(-2px);
}

.home-platform-primary:hover {
    color: #ffffff;
    background: #1d4ed8;
}

.home-platform-secondary:hover {
    color: #ffffff;
    border-color: rgba(191, 219, 254, 0.52);
}

.home-platform-hero-visual {
    display: grid;
    gap: 18px;
}

.home-platform-console {
    position: relative;
    min-height: 330px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        rgba(15, 23, 42, 0.56);
    background-position: 0 0, 0 0, center;
    background-size: 34px 34px, 34px 34px, auto;
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(14px);
    animation: home-platform-console-grid-drift 12s linear infinite;
    will-change: background-position;
}

.home-platform-console-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-platform-console-top strong {
    color: #bfdbfe;
}

.home-platform-console-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.home-platform-stage-card {
    position: relative;
    display: grid;
    min-height: 150px;
    align-content: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--family-start), transparent 40%), color-mix(in srgb, var(--family-end), transparent 56%));
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transform: perspective(900px) rotateX(8deg) rotateY(-8deg);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-platform-stage-card:nth-child(2) {
    transform: perspective(900px) translateY(-18px) rotateX(8deg);
}

.home-platform-stage-card:nth-child(3) {
    transform: perspective(900px) rotateX(8deg) rotateY(8deg);
}

.home-platform-stage-card:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.36);
}

.home-platform-stage-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 21px;
}

.home-platform-stage-card strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.home-platform-stage-card small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
}

.home-platform-console-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    color: rgba(226, 232, 240, 0.72);
    font-size: 12px;
    font-weight: 900;
}

.home-platform-console-flow span {
    padding: 8px 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.48);
}

.home-platform-console-flow i {
    color: #93c5fd;
}

.home-platform-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-platform-stat {
    display: grid;
    gap: 8px;
    min-height: 128px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.54);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-platform-stat:hover {
    color: #ffffff;
    border-color: rgba(147, 197, 253, 0.44);
    transform: translateY(-3px);
}

.home-platform-stat i {
    color: #60a5fa;
    font-size: 24px;
}

.home-platform-stat strong {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.home-platform-stat span {
    color: rgba(226, 232, 240, 0.74);
    font-size: 13px;
    line-height: 1.25;
}

@keyframes home-platform-hero-grid-drift {
    0% {
        background-position: 0 0, 0 0, center;
    }

    100% {
        background-position: 42px 42px, 42px 42px, center;
    }
}

@keyframes home-platform-overlay-grid-drift {
    0% {
        background-position: 0 0, 0 0, center;
        opacity: 0.62;
    }

    50% {
        opacity: 0.82;
    }

    100% {
        background-position: -42px 42px, -42px 42px, center;
        opacity: 0.62;
    }
}

@keyframes home-platform-console-grid-drift {
    0% {
        background-position: 0 0, 0 0, center;
    }

    100% {
        background-position: 34px 34px, 34px 34px, center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-platform-hero,
    .home-platform-hero::after {
        animation: none;
    }

    .home-platform-console {
        animation: none;
    }
}

.home-directory-section {
    padding: 56px 0;
    background: #ffffff;
}

.home-directory-section-tight {
    padding-top: 18px;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.home-section-head span {
    display: block;
    margin-bottom: 8px;
    color: #f97316;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home-section-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.18;
}

.home-section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.home-section-link:hover {
    color: #1d4ed8;
}

.home-section-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.home-slider-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dbe4ee;
    border-radius: 10px;
    background: #ffffff;
    color: #2563eb;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.home-slider-button:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.home-slider-button.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.home-one-row-slider {
    overflow: hidden;
    padding: 2px 2px 12px;
}

.home-one-row-slider .swiper-wrapper {
    align-items: stretch;
}

.home-one-row-slider .swiper-slide {
    display: flex;
    height: auto;
}

.home-family-catalog,
.home-category-catalog {
    display: grid;
    gap: 16px;
}

.home-family-catalog {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-family-catalog-card {
    display: grid;
    min-height: 214px;
    align-content: start;
    gap: 10px;
    padding: 22px;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-family-catalog-card:hover {
    color: #0f172a;
    border-color: color-mix(in srgb, var(--family-start), transparent 62%);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

.home-family-catalog-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--family-start), transparent 16%), color-mix(in srgb, var(--family-end), transparent 24%));
    color: #ffffff;
    font-size: 22px;
}

.home-family-catalog-card strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.18;
}

.home-family-catalog-card small {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.home-family-catalog-card em {
    margin-top: 4px;
    color: #475569;
    font-size: 13px;
    font-style: normal;
    line-height: 1.55;
}

.home-category-catalog {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.home-category-slider .home-category-catalog,
.home-tool-slider .home-tool-grid {
    display: flex;
    gap: 0;
}

.home-category-slider .swiper-slide {
    width: 148px;
}

.home-category-catalog-card {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 146px;
    place-items: center;
    align-content: center;
    gap: 9px;
    padding: 18px 14px;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-category-catalog-card:hover {
    color: #0f172a;
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.075);
    transform: translateY(-4px);
}

.home-category-catalog-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #2563eb;
    background: #eff6ff;
    font-size: 24px;
}

.home-category-catalog-card-cyan span {
    color: #0891b2;
    background: #ecfeff;
}

.home-category-catalog-card-emerald span,
.home-category-catalog-card-green span {
    color: #059669;
    background: #ecfdf5;
}

.home-category-catalog-card-indigo span {
    color: #4f46e5;
    background: #eef2ff;
}

.home-category-catalog-card-teal span {
    color: #0f766e;
    background: #f0fdfa;
}

.home-category-catalog-card-slate span,
.home-category-catalog-card-dark span {
    color: #0f172a;
    background: #f1f5f9;
}

.home-category-catalog-card strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.home-category-catalog-card small {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

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

.home-tool-slider .swiper-slide {
    width: calc((100% - 36px) / 3);
    min-width: 320px;
}

.home-tool-card {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 258px;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 13px;
    padding: 22px;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-tool-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

.home-tool-card-head,
.home-tool-card-foot,
.home-tool-card-tags {
    display: flex;
    align-items: center;
}

.home-tool-card-head,
.home-tool-card-foot {
    justify-content: space-between;
    gap: 12px;
}

.home-tool-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tool-start), var(--tool-end));
    color: #ffffff;
    font-size: 20px;
}

.home-tool-card-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.home-tool-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
}

.home-tool-card h3 a {
    color: inherit;
    text-decoration: none;
}

.home-tool-card h3 a:hover {
    color: #2563eb;
}

.home-tool-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}

.home-tool-card-tags {
    flex-wrap: wrap;
    gap: 7px;
}

.home-tool-card-tags span {
    padding: 5px 8px;
    border-radius: 7px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.home-tool-card-foot {
    padding-top: 2px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.home-tool-card-foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #dbe4ee;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.home-tool-card-foot a:hover {
    color: #ffffff;
    background: #2563eb;
    transform: translateX(2px);
}

.home-tools-center-action {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.home-tools-center-action a {
    min-width: 180px;
    padding: 12px 22px;
    border: 1px solid #2563eb;
    border-radius: 10px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-tools-center-action a:hover {
    color: #ffffff;
    background: #2563eb;
}

.home-build-banner {
    padding: 30px 0;
    background: #ffffff;
}

.home-build-banner-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 30px;
    border-radius: 16px;
    background:
        linear-gradient(110deg, rgba(37, 99, 235, 0.1), rgba(20, 184, 166, 0.08)),
        #f8fbff;
}

.home-build-banner-inner > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: #ffffff;
    font-size: 30px;
}

.home-build-banner h2 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
}

.home-build-banner p {
    max-width: 720px;
    margin: 8px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.home-build-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.home-build-banner-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    border: 1px solid #2563eb;
    border-radius: 10px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-build-banner-actions a:first-child,
.home-build-banner-actions a:hover {
    color: #ffffff;
    background: #2563eb;
}

.home-build-banner-actions a:first-child:hover {
    background: #1d4ed8;
}

.home-recent-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-recent-card {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 3px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-recent-card:hover {
    color: #0f172a;
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.075);
    transform: translateY(-3px);
}

.home-recent-card > strong {
    grid-row: 1 / span 2;
    color: #64748b;
    font-size: 17px;
    font-weight: 900;
}

.home-recent-card > span {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--tool-start), var(--tool-end));
    color: #ffffff;
    font-size: 18px;
}

.home-recent-card em {
    min-width: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-recent-card small {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1199px) {
    .home-platform-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-platform-hero-copy {
        max-width: 780px;
    }

    .home-family-catalog {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-category-catalog {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .home-tool-slider .swiper-slide {
        width: min(420px, 74vw);
        min-width: 0;
    }

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

@media (max-width: 767px) {
    .home-platform-hero {
        padding: 56px 0 38px;
    }

    .home-platform-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .home-platform-hero p {
        font-size: 15px;
    }

    .home-platform-search {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .home-platform-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .home-platform-console {
        min-height: auto;
        padding: 18px;
    }

    .home-platform-console-stage,
    .home-platform-stat-grid,
    .home-family-catalog,
    .home-category-catalog,
    .home-tool-grid,
    .home-recent-strip {
        grid-template-columns: 1fr;
    }

    .home-platform-stage-card,
    .home-platform-stage-card:nth-child(2),
    .home-platform-stage-card:nth-child(3) {
        min-height: 118px;
        transform: none;
    }

    .home-platform-console-flow {
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .home-directory-section {
        padding: 40px 0;
    }

    .home-directory-section-tight {
        padding-top: 10px;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-section-actions {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 10px;
        width: 100%;
    }

    .home-slider-controls {
        width: 100%;
    }

    .home-section-link {
        white-space: normal;
    }

    .home-category-slider .swiper-slide {
        width: min(170px, 68vw);
    }

    .home-tool-slider .swiper-slide {
        width: min(360px, 88vw);
    }

    .home-family-catalog-card {
        min-height: auto;
    }

    .home-build-banner-inner {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .home-build-banner-actions {
        justify-content: stretch;
    }

    .home-build-banner-actions a {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Author-Style Typography Alignment
--------------------------------------------------------------*/
.home-platform-hero h1,
.home-platform-hero h2,
.home-platform-hero h3,
.home-platform-hero h4,
.home-platform-hero h5,
.home-platform-hero h6,
.home-platform-hero p,
.home-platform-hero a,
.home-platform-hero span,
.home-platform-hero strong,
.home-platform-hero em,
.home-platform-hero small,
.home-platform-hero input,
.home-platform-hero button,
.home-directory-section h1,
.home-directory-section h2,
.home-directory-section h3,
.home-directory-section h4,
.home-directory-section h5,
.home-directory-section h6,
.home-directory-section p,
.home-directory-section a,
.home-directory-section span,
.home-directory-section strong,
.home-directory-section em,
.home-directory-section small,
.home-directory-section button,
.home-build-banner h1,
.home-build-banner h2,
.home-build-banner h3,
.home-build-banner h4,
.home-build-banner h5,
.home-build-banner h6,
.home-build-banner p,
.home-build-banner a,
.home-build-banner span,
.home-build-banner strong,
.home-build-banner em,
.home-build-banner small,
.author-profile h1,
.author-profile h2,
.author-profile h3,
.author-profile h4,
.author-profile h5,
.author-profile h6,
.author-profile p,
.author-profile a,
.author-profile span,
.author-profile strong,
.author-profile em,
.author-profile small,
.author-profile div,
.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4,
.privacy-policy h5,
.privacy-policy h6,
.privacy-policy p,
.privacy-policy a,
.privacy-policy span,
.privacy-policy strong,
.privacy-policy em,
.privacy-policy small,
.privacy-policy li,
.contact h1,
.contact h2,
.contact h3,
.contact h4,
.contact h5,
.contact h6,
.contact p,
.contact a,
.contact span,
.contact strong,
.contact em,
.contact small,
.contact label,
.contact input,
.contact textarea,
.contact select,
.contact button {
    font-family: var(--page-font);
}

.home-platform-hero,
.home-directory-section,
.home-build-banner,
.author-profile,
.privacy-policy,
.contact {
    --page-title-size: 2.25rem;
    --page-section-title-size: 1.65rem;
    --page-subheading-size: 1.25rem;
    --page-body-size: 1rem;
    --page-label-size: 0.92rem;
    --page-small-size: 0.85rem;
    --page-title-weight: 700;
    --page-heading-weight: 700;
    --page-subheading-weight: 600;
    --page-body-weight: 400;
    --page-label-weight: 600;
}

.home-platform-hero h1,
.privacy-policy h1,
.author-profile .author-card .author-info h2 {
    font-family: var(--page-font);
    font-size: var(--page-title-size);
    font-weight: var(--page-title-weight);
    letter-spacing: 0;
    line-height: 1.15;
}

.home-section-head h2,
.home-build-banner h2,
.author-profile .author-content .content-header h3 {
    font-family: var(--page-font);
    font-size: var(--page-section-title-size);
    font-weight: var(--page-heading-weight);
    letter-spacing: 0;
    line-height: 1.25;
}

.author-profile .author-content .content-body .expertise-areas h4,
.author-profile .author-content .content-body .featured-articles h4,
.author-profile .author-content .content-body .featured-articles .article-card .article-details h5,
.privacy-policy .privacy-card h2,
.contact .info-card h3,
.home-tool-card h3,
.home-category-catalog-card strong,
.home-recent-card em,
.home-build-banner h2 {
    font-family: var(--page-font);
    font-size: var(--page-subheading-size);
    font-weight: var(--page-subheading-weight);
    letter-spacing: 0;
    line-height: 1.4;
}

.home-platform-hero p,
.home-tool-card p,
.home-build-banner p,
.author-profile .author-card .author-info .designation,
.author-profile .author-card .author-info .author-bio,
.author-profile .author-content .content-body p,
.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta,
.privacy-policy .privacy-hero p:not(.privacy-kicker),
.privacy-policy .privacy-card p,
.privacy-policy .privacy-card li,
.contact .info-card p,
.contact .field-control .form-control {
    font-family: var(--page-font);
    font-size: var(--page-body-size);
    font-weight: var(--page-body-weight);
    line-height: 1.7;
}

.author-profile .author-card .author-stats .stat-item h4,
.home-platform-stat strong {
    font-family: var(--page-font);
    font-size: var(--page-section-title-size);
    font-weight: var(--page-heading-weight);
    line-height: 1;
}

.home-platform-badge,
.home-platform-meta span,
.home-platform-primary,
.home-platform-secondary,
.home-platform-search input,
.home-platform-search button,
.home-section-head span,
.home-section-link,
.home-tool-card-badge,
.home-tool-card-tags span,
.home-tool-card-foot,
.home-tools-center-action a,
.home-build-banner-actions a,
.home-recent-card small,
.privacy-policy .privacy-kicker,
.privacy-policy .privacy-meta span,
.contact .field-control .form-control,
.contact .form-wrapper button {
    font-family: var(--page-font);
    letter-spacing: 0;
}

.home-platform-badge,
.home-platform-meta span,
.privacy-policy .privacy-kicker,
.privacy-policy .privacy-meta span,
.author-profile .author-content .content-body .expertise-areas .tags span,
.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-category {
    font-size: var(--page-label-size);
    font-weight: var(--page-label-weight);
    line-height: 1.35;
}

.home-platform-primary,
.home-platform-secondary,
.home-platform-search button,
.home-section-link,
.home-tools-center-action a,
.home-build-banner-actions a,
.contact .form-wrapper button {
    font-size: var(--page-label-size);
    font-weight: var(--page-label-weight);
}

.home-tool-card-badge,
.home-tool-card-tags span,
.home-tool-card-foot,
.home-recent-card small,
.home-platform-stage-card strong {
    font-size: var(--page-small-size);
    font-weight: var(--page-label-weight);
}

.home-category-catalog-card small,
.home-platform-stage-card small,
.author-profile .author-card .author-stats .stat-item p {
    font-size: var(--page-small-size);
    font-weight: var(--page-body-weight);
}

@media (max-width: 767px) {
    .home-platform-hero,
    .home-directory-section,
    .home-build-banner,
    .author-profile,
    .privacy-policy,
    .contact {
        --page-title-size: 2rem;
        --page-section-title-size: 1.45rem;
        --page-subheading-size: 1.15rem;
        --page-body-size: 0.98rem;
    }

    .home-platform-hero h1,
    .privacy-policy h1,
    .author-profile .author-card .author-info h2 {
        line-height: 1.18;
    }
}
