:root {
    --primary-color: #1D4ED8;
    --secondary-color: #FFFFFF;
    --accent-color: #7C3AED;
    --accent-secondary-color: #2563EB;
    --highlight-color: #9333EA;
    --bg-color: #F8FAFC;
    --text-color: #0F172A;
    --white-color: #FFFFFF;
    --divider-color: #1D4ED81A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Inter", sans-serif;
    --accent-font: "Playfair Display", serif;
    --main-gradient: linear-gradient(135deg, #60A5FA 0%, #7C3AED 100%);
    --btn-gradient: linear-gradient(135deg, #2563EB, #7C3AED);
    --btn-hover-gradient: linear-gradient(135deg, #1D4ED8, #6D28D9);
    --card-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    --card-border: 1px solid #E2E8F0;
    --card-radius: 20px;
}

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

html {
    overflow-x: hidden
}

body {
    font-family: var(--default-font);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--white-color);
    margin-left: 6px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    color: var(--text-color);
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 0;
}

.dropdown-menu-lg {
    min-width: 320px;
    padding: 20px;
}

.dropdown-menu-end {
    left: auto;
    right: 0;
}

.item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-color);
    transition: background .2s;
}

.dropdown-item:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.header {
    background: var(--white-color);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.hboxrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}

.hboxrow .left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hboxrow .center {
    flex: 1;
    max-width: 700px;
}

.hboxrow .right {
    flex-shrink: 0;
}

.logo {
    font-size: 0;
    line-height: 0;
}

.logo a {
    display: block;
}

.sb-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sb-wrap button{
    background: #ffa50000;
    outline: none;
    border: none;
}

.sb {
    display: flex;
    align-items: center;
    background: var(--bg-color);
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    overflow: hidden;
    transition: border-color .3s;
    flex: 1;
}

.sb:focus-within {
    border-color: var(--primary-color);
}

.s-select select {
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    cursor: pointer;
    font-family: var(--default-font);
    border-right: 1px solid #E2E8F0;
    min-width: 100px;
}

.sinput {
    flex: 1;
    position: relative;
}

.sinput input {
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    font-family: var(--default-font);
    color: var(--text-color);
}

.sinput input::placeholder {
    color: #94A3B8;
}

.vsrc {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.vsrc i {
    font-size: 18px;
    color: #94A3B8;
}

.sbutton {
    background: var(--btn-gradient);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.sbutton:hover {
    background: var(--btn-hover-gradient);
}

.sbutton i {
    font-size: 16px;
    color: #fff;
}

.askai-wrap {
    padding-left: 8px;
    position: relative;
    flex-shrink: 0;
}

.askai-wrap small {
    position: absolute;
    top: -8px;
    right: -4px;
    background: var(--accent-color);
    color: #fff;
    border: 2px solid #fff;
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

.askai {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    width: 120px;
    height: 43px;
    color: #002f94;
    border-radius: 32px;
    border: 2.5px solid transparent;
    animation: gradientBorder 24s linear infinite;
    background: linear-gradient(to right, #fff, #fff) content-box, conic-gradient(from var(--angle), #120020 0deg, #ff6b6b 45deg, #f36fff 90deg, #8b5ff7 135deg, #268aff 180deg, #00d4ff 225deg, #52eaea 270deg, #00ff88 315deg, #120020 360deg) border-box;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.askai svg {
    width: 23px;
    height: 23px;
    margin-right: 5px;
}

.askai:hover {
    box-shadow: 4px 2px 15px rgba(0, 0, 0, 0.3);
}

@keyframes gradientBorder {
    from {
        --angle: 0turn
    }

    to {
        --angle: 10turn
    }
}

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

.tgl2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tgl2 .item {
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 12px;
    transition: background .2s;
    position: relative;
}

.tgl2 .item:hover {
    background: var(--bg-color);
}

.tgl2 .item .figure {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgl2 .item .title {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    margin-top: 2px;
}

.icon-none .dropdown-toggle::after {
    display: none;
}

.cart-modal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cart-modal-btn i {
    font-size: 22px;
    color: var(--text-color);
}

.cart-modal-btn span {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--error-color);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerlogincok {
    font-size: 11px;
    font-weight: 500;
}

.nav {
    background: var(--white-color);
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
    position: relative;
    z-index: 100;
}

.full-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.full-nav .item {
    padding: 0 5px;
    cursor: pointer;
    transition: background .2s;
    font-size: 14px;
    font-weight: 500;
}

.full-nav .item:hover {
    background: var(--bg-color);
}

.full-nav .item > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fnav-icon-wrap {
    background: var(--btn-gradient);
    color: var(--white-color);
    border-radius: 8px 0 0 8px;
    padding: 10px 12px !important;
    position: relative;
}

.fnav-icon-wrap:hover {
    background: var(--btn-hover-gradient) !important;
}

.fnav-icon-wrap:hover .fnav-icon:after {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 1000;
}

.fnav-icon-wrap:hover .top-nav {
    display: block;
}

.fnav-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    position: relative;
}

.fnav-icon svg {
    width: 19px;
    height: 18px;
    fill: var(--white-color);
}

.full-nav .nav-item {
    display: inline-flex;
    white-space: nowrap;
    padding: 15px 25px 15px 10px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    transition: color .2s;
    position: relative;
}

.full-nav .nav-item:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    opacity: 0.6;
    transition: 0.2s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
}

.full-nav .item:hover .nav-item:after {
    transform: translateY(-50%) rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23125BA6'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
}

.full-nav .nav-item.view-all:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23125BA6'%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
}

.full-nav .item:hover .nav-item.view-all:after {
    transform: translateY(-50%) rotate(0deg);
}

.full-nav .nav-item:hover {
    color: var(--primary-color);
}

.submenu {
    display: none;
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 0;
    top: 100%;
    background: #fff;
    padding: 20px 50px;
    border: 1px solid #d9d9d9;
    border-left: none;
    border-right: none;
    box-shadow: 0 2px 7px rgba(0,0,0,0.1);
}

.submenu-wrap {
    display: flex;
}

.submenu-wrap > * {
    flex-basis: 20%;
    max-width: 20%;
}

.submenu .title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
    display: inline-block;
    color: #000;
}

.submenu .view {
    color: var(--primary-color);
    margin-top: 15px;
    display: inline-block;
    font-size: 14px;
}

.submenu .view:hover {
    text-decoration: underline;
}

.submenu .sublinks li {
    margin-bottom: 6px;
    font-size: 14px;
}

.submenu a {
    color: #000;
}

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

.full-nav .item:hover .submenu {
    display: block !important;
}

.sublinks a {
    color: #666;
}

.top-nav {
    display: none;
    position: absolute;
    min-width: 320px;
    height: 532px;
    top: 100%;
    left: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,0.20);
    padding: 10px 0 10px 10px;
    border-radius: 0 5px 5px 5px;
}

.top-nav-links > li > a {
    border-radius: 5px 0 0 5px;
    padding: 11px 10px;
    display: flex;
    align-items: center;
    line-height: normal;
    position: relative;
    color: #000;
}

.top-nav-links > li:hover > a {
    color: #1257a6;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.top-nav-links > li:hover > a:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: #fff;
    top: 0;
    right: -7px;
    z-index: 5;
}

.top-nav-links > li:hover .hover-links {
    display: block !important;
}

.top-nav-links > li > a h4 {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
}

.top-nav-links > li > a svg {
    width: 17px;
    height: 17px;
    fill: #999;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}

.top-nav-links > li > a:hover svg {
    right: 10px;
}

.top-nav-links > li:last-child a {
    padding: 15px 10px 17px;
    color: #1257a6;
    text-align: center;
}

.top-nav-links > li:last-child a:hover {
    box-shadow: none;
}

.top-nav-links > li:last-child a:hover:after {
    display: none;
}

.hover-links {
    display: none;
    left: 318px;
    position: absolute;
    min-width: 1050px;
    height: 532px;
    top: 0;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.2);
    font-size: 14px;
    line-height: 20px;
    padding: 25px;
    overflow-y: auto;
}

@media(max-width: 1600px) {
    .hover-links { min-width: 900px }
}
@media(max-width: 1440px) {
    .hover-links { min-width: 800px }
}
@media(max-width: 1200px) {
    .hover-links { min-width: 650px }
}

.hover-links .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.hover-links .col-4 {
    max-width: 33.3%;
    flex-basis: 33.3%;
    padding: 0 15px;
}

.hover-links .col-4 ul {
    margin-bottom: 30px;
}

.hover-links .col-4 ul li:first-child {
    font-weight: 600;
    color: #1257a6;
    margin-bottom: 7px;
    line-height: 16px;
}

.hover-links .col-4 ul li:first-child a {
    color: #1257a6;
}

.hover-links .col-4 ul li:first-child a:hover {
    text-decoration: none;
}

.hover-links .col-4 ul li {
    margin-bottom: 4px;
}

.hover-links .col-4 ul li a {
    display: inline-block;
    color: #333;
}

.hover-links .col-4 ul li a:hover {
    color: #1257a6;
    text-decoration: underline;
}

.hover-links .text-center .view-all {
    color: #1257a6;
    background: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    display: inline;
}

.hover-links .text-center .view-all:hover {
    text-decoration: underline;
    background: none;
    box-shadow: none;
}

.view-all {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 28px;
    background: var(--btn-gradient);
    color: var(--white-color);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all .3s;
}

.view-all:hover {
    background: var(--btn-hover-gradient);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.text-center {
    text-align: center;
}

.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    font-size: 14px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.sect-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sect-head h2 {
    font-size: 22px;
    font-weight: 700;
}

.sect-head h2 span {
    color: var(--primary-color);
}

.sect-head .view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.bg-white {
    background: var(--white-color);
}

.hero-slider {
    padding: 0;
    background: var(--primary-color);
    min-height: 380px;
    position: relative;
}

.hero-slider .slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 380px;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .6s ease;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 200, 0.35) 0%, rgba(124, 58, 237, 0.25) 100%);
    z-index: 1;
}

.hero-slider .slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slider .slide .hero-content {
    padding: 80px 0 100px;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #FDE68A, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.hero-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
}

.hero-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
}

.hero-stat p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

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

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all .3s;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--white-color);
    border-color: var(--white-color);
    transform: scale(1.2);
}

.d4t-home-solutions {
    clear: both;
    background: #fff;
    padding: 44px 0;
    position: relative;
    overflow: hidden;
}

.d4t-home-solutions:before,
.d4t-home-solutions:after {
    display: none;
}

.d4t-hsol-wrap {
    position: relative;
    z-index: 1;
}

.d4t-hsol-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.d4t-hsol-head:before {display: none;}

.d4t-hsol-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    color: #475569;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.d4t-hsol-eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.d4t-hsol-title {
    font-size: 32px;
    line-height: 1.15;
    color: #1A1A2E;
    margin: 14px 0 10px;
    font-weight: 800;
    letter-spacing: -.4px;
}

.d4t-hsol-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    max-width: 820px;
}

.d4t-hsol-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.d4t-hsol-highlights span {
    background: #F8FAFC;
    color: #1A1A2E;
    border: 1px solid #E8EDF3;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
}

.d4t-hsol-panel {
    background: linear-gradient(145deg, #1A1A2E, #2D2D5E);
    color: #fff;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.d4t-hsol-panel:after {display: none;}

.d4t-hsol-panel strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.d4t-hsol-panel span {
    display: block;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.d4t-hsol-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.d4t-hsol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.d4t-hsol-btn.primary {
    background: var(--primary-color);
    color: #fff;
}

.d4t-hsol-btn.light {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

.d4t-hsol-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
    opacity: .9;
}

.sol-swiper {
    padding: 4px 0 12px;
}

.sol-swiper .swiper-wrapper {
    padding: 4px 0;
}

.sol-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.sol-scroll-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 14px 18px;
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 18px;
    text-decoration: none;
    transition: all .35s ease;
    gap: 8px;
}

.sol-scroll-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.sol-scroll-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.sol-scroll-icon.sq {background: linear-gradient(135deg,#667eea,#764ba2);}
.sol-scroll-icon.ai {background: linear-gradient(135deg,#4facfe,#00f2fe);}
.sol-scroll-icon.ir {background: linear-gradient(135deg,#f093fb,#f5576c);}
.sol-scroll-icon.vk {background: linear-gradient(135deg,#43e97b,#38f9d7); color: #1a1a2e;}
.sol-scroll-icon.ml {background: linear-gradient(135deg,#fa709a,#fee140); color: #1a1a2e;}
.sol-scroll-icon.wb {background: linear-gradient(135deg,#a18cd1,#fbc2eb);}
.sol-scroll-icon.we {background: linear-gradient(135deg,#1D4ED8,#7C3AED);}
.sol-scroll-icon.bm {background: linear-gradient(135deg,#0f3460,#533483);}
.sol-scroll-icon.bc {background: linear-gradient(135deg,#1a1a2e,#16213e);}
.sol-scroll-icon.cc {background: linear-gradient(135deg,#2563eb,#06b6d4);}
.sol-scroll-icon.lx {background: linear-gradient(135deg,#e11d48,#fb923c);}
.sol-scroll-icon.wa {background: linear-gradient(135deg,#16a34a,#4ade80); color: #1a1a2e;}
.sol-scroll-icon.hr {background: linear-gradient(135deg,#7c3aed,#c084fc);}

.sol-scroll-tag {
    font-size: 10px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sol-scroll-name {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    line-height: 1.3;
}

.sol-scroll-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
}

.sol-button-prev,
.sol-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E8EDF3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A2E;
    font-size: 16px;
    transition: all .25s;
}

.sol-button-prev:hover,
.sol-button-next:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sol-button-prev::after,
.sol-button-next::after {
    display: none;
}

.sol-button-prev {left: 6px;}
.sol-button-next {right: 6px;}
.sol-button-prev.swiper-button-lock,
.sol-button-next.swiper-button-lock {display: none;}

.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0 16px;
    scroll-behavior: smooth;
}

.scroll-row::-webkit-scrollbar {
    height: 4px;
}

.scroll-row::-webkit-scrollbar-track {
    background: #E2E8F0;
    border-radius: 2px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.scroll-item {
    flex-shrink: 0;
}

.trd-box {
    width: 150px;
    background: var(--white-color);
    border: 1px solid #E8EDF3;
    border-radius: 14px;
    overflow: hidden;
    transition: all .35s ease;
    cursor: pointer;
}

.trd-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #D0D9E6;
    transform: translateY(-2px);
}

.trd-box figure {
    height: 100px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #F1F5F9;
}

.trd-box figure img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all .4s;
}

.trd-box:hover figure img {
    transform: scale(1.08);
}

.trd-box {
    display: flex;
    flex-direction: column;
}

.trd-box .title {
    padding: 8px 10px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #1A1A2E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trd-box .get-quote-btn {
    margin: 4px 8px 8px;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .3s;
    width: calc(100% - 16px);
}

.trd-box .get-quote-btn:hover {
    background: #1D4ED8;
    box-shadow: 0 4px 12px rgba(29,78,216,0.3);
}

.shop-box {
    width: 220px;
    background: var(--white-color);
    border: var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all .3s;
}

.shop-box:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
}

.shop-box figure {
    height: 160px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-box .content {
    padding: 12px;
}

.shop-box .content .comp {
    font-size: 11px;
    color: #94A3B8;
    margin-bottom: 4px;
}

.shop-box .content h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.shop-box .content .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.shop-box .content .btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--btn-gradient);
    color: #fff;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
}

.industry-boxes .box-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-boxes .item {
    background: var(--white-color);
    border: 1px solid #E8EDF3;
    border-radius: 16px;
    padding: 22px;
    transition: all .35s ease;
}

.industry-boxes .item:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border-color: #D0D9E6;
    transform: translateY(-2px);
}

.industry-boxes .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.industry-boxes .heading h3 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1A1A2E;
}

.industry-boxes .heading a {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.industry-boxes .box-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.industry-boxes .box-inner figure {
    text-align: center;
    cursor: pointer;
}

.industry-boxes .box-inner figure img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 4px;
}

.industry-boxes .box-inner figure figcaption {
    font-size: 11px;
    color: var(--text-color);
    font-weight: 500;
}

.jbanner {
    background: linear-gradient(135deg, #1D4ED8, #7C3AED);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--white-color);
}

.jbanner h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.jbanner p {
    font-size: 14px;
    opacity: .9;
    margin-bottom: 20px;
}

.jbanner .btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s;
}

.jbanner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.box2-wrap {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.box2-big {
    width: 280px;
    min-height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.box2-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.box2-big .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.box2-big h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

.box2-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.box2 {
    background: var(--white-color);
    border: var(--card-border);
    border-radius: 14px;
    padding: 16px;
    transition: all .3s;
}

.box2:hover {
    box-shadow: var(--card-shadow);
}

.box2 h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.box2 .links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.box2 .links a {
    font-size: 11px;
    color: #64748B;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all .2s;
}

.box2 .links a:hover {
    color: var(--primary-color);
    background: #EEF2FF;
}

.box2 .view-all-link2 {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.city-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.city-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--white-color);
    border: var(--card-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    min-width: 80px;
}

.city-item:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.city-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.city-item span {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}




.testm-laptop {
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.testm-laptop iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.testm-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.testm-list::-webkit-scrollbar {
    width: 4px;
}

.testm-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.testm-vid-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all .3s;
    background: var(--white-color);
}

.testm-vid-item.active {
    border-color: var(--primary-color);
}

.testm-vid-item img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.testm-vid-item .info {
    padding: 6px 8px;
}

.testm-vid-item .info h4 {
    font-size: 11px;
    font-weight: 600;
}

.testm-vid-item .info span {
    font-size: 10px;
    color: #94A3B8;
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.featured-logos img {
    height: 40px;
    opacity: .6;
    filter: grayscale(1);
    transition: all .3s;
}

.featured-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

.gbprice {
    background: var(--white-color);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    transition: border-color .3s;
    font-family: var(--default-font);
    background: var(--white-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.submit-btn {
    padding: 12px 32px;
    background: var(--btn-gradient);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    justify-self: start;
}

.submit-btn:hover {
    background: var(--btn-hover-gradient);
    transform: translateY(-2px);
}

.stories-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0 16px;
}

.stories-row::-webkit-scrollbar {
    height: 4px;
}

.stories-row::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.story-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.story-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.story-card .story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white-color);
}

.story-card .story-overlay h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.story-card .story-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}




.footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    transition: all .3s;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color .2s;
}

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

.footer-contact p {
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    width: 16px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--btn-gradient);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all .3s;
}

.back-to-top:hover {
    background: var(--btn-hover-gradient);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    transition: transform .2s;
}

.mobile-toggle.active {
    transform: rotate(90deg);
}

.search-active .askai-wrap {
    display: none
}

/* --- Missing section styles --- */
.top-strip {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    border-bottom: 1px solid var(--dark-divider-color);
}

.top-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
}

.ts-left {
    font-size: 12px;
    opacity: .9;
}

.ts-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ts-dropdown {
    position: relative;
    padding: 4px 10px;
    cursor: pointer;
}

.ts-dropdown span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    opacity: .9;
}

.ts-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    color: var(--text-color);
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 6px 0;
    z-index: 1000;
}

.ts-dropdown-menu a {
    display: block;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--text-color);
    transition: background .2s;
}

.ts-dropdown-menu a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.ts-link {
    padding: 4px 10px;
    font-size: 12px;
    opacity: .9;
}

.ts-link:hover {
    opacity: 1;
}

.hboxrow .center {
    flex: 1;
    max-width: 700px;
    /* display: flex; */
    align-items: center;
}

.s-select select {
    padding: 10px 14px;
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    border-right: 1px solid #E2E8F0;
    min-width: 90px;
}

.hprice-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.hprice-link .figure {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hprice-link .figure i {
    font-size: 22px;
    color: var(--text-color);
}

.hprice-link .title {
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error-color);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: inline-block;
    line-height: 0;
}

.logo img {
    max-height: 56px;
    width: auto;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}



.btn-block {
    width: 100%;
    justify-content: center;
}



.hstat {
    text-align: center;
}

.hstat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
}

.hstat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.section {margin-bottom: 40px;}
.sect-head {margin-bottom: 20px; position: relative;}
.sect-head .title {font-size: 22px; font-weight: 700; color: #1A1A2E; position: relative; display: inline-block; padding-bottom: 8px;}
.sect-head .title:after {content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-color); border-radius: 2px;}

.section-title {text-align: center; margin-bottom: 28px; position: relative;}
.section-title h2 {font-size: 26px; font-weight: 700; margin-bottom: 8px; position: relative; display: inline-block;}
.section-title h2:after {content: ''; display: block; width: 50px; height: 3px; background: var(--primary-color); border-radius: 2px; margin: 10px auto 0}
.section-title p {font-size: 14px; color: #64748B; margin-top: 4px;}

.box-round {background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-radius: 20px; padding: 28px 32px; height: 100%; border: 1px solid #f0f0f0;}

#trenProd {margin-bottom: 40px;}
#trenProd .trd {margin-top: -50px; position: relative; z-index: 1;}

/* Reusable product grid (trending + featured) */
.trd-grid {margin-bottom: 40px;}
.trd-grid .trd-row {display: flex; flex-wrap: wrap; text-align: center;}
.trd-grid .trd-row {display: flex; flex-wrap: wrap; text-align: center;}
.trd-grid .trd-row .item {width: 12.5%; flex-basis: 12.5%; padding: 6px;}
.trd-grid .trd-row .item:nth-child(n+9) {margin-top: 14px;}
.trd-grid .trd-box {width: 100%;}
.trd-grid .trd-box figure {background-color: #F8FAFC; border: 1px solid #E8EDF3; border-radius: 10px; overflow: hidden; width: 110px; height: 110px; margin: 0 auto 7px;}
.trd-grid .trd-box figure img {width: 80%; height: 80%; object-fit: contain; transition: 0.3s ease;}
.trd-grid .trd-box .title {font-size: 13px; line-height: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; padding: 6px 8px 2px; color: #1A1A2E;}
.trd-grid .trd-row a {color: inherit;}
.trd-grid .trd-row a:hover {text-decoration: none;}
.trd-grid .trd-row a:hover .trd-box {border-color: var(--primary-color);}
.trd-grid .trd-row a:hover .trd-box figure {border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,0.08);}
.trd-grid .trd-row a:hover img {transform: scale(1.08);}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tc-left h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1A1A2E;
    position: relative;
    display: inline-block;
}

.tc-left h2:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 8px;
}

.tc-left p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #475569;
}

.tc-left .btn {
    display: inline-flex;
    margin-right: 12px;
    margin-bottom: 8px;
}

.tc-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

/* Premium Suppliers + Buy Leads 2-col layout */
.prm-buy-row {display: flex; gap: 20px;}
.prm-buy-row .prm-buy-col {flex: 1; width: 50%;}
.prm-sppl-grid {display: flex; flex-wrap: wrap;}
.prm-sppl-grid .item {width: 33.33%; flex-basis: 33.33%; padding: 6px;}
.prm-sppl-grid a {display: block; border-radius: 10px; padding: 12px 8px; height: 100%; background: #fff; text-align: center; border: 1px solid #E8EDF3; transition: all .3s;}
.prm-sppl-grid figure {margin: 0 auto 8px; width:70px; height:50px; display: flex; align-items: center; justify-content: center;}
.prm-sppl-grid figure img {max-width:100%; max-height:100%; object-fit: contain; transition: 0.3s ease;}
.prm-sppl-grid .title {font-size: 12px; color: #1A1A2E; text-align: center; font-weight: 500; line-height: 1.3;}
.prm-sppl-grid a:hover {border-color: var(--primary-color); box-shadow: 0 4px 16px rgba(0,0,0,0.06);}
.prm-sppl-grid a:hover img {transform:scale(1.08);}
.buylead-scroll {max-height: 360px; overflow-y: auto; padding-right: 4px;}
.buylead-scroll::-webkit-scrollbar {width: 4px;}
.buylead-scroll::-webkit-scrollbar-thumb {background: #CBD5E1; border-radius: 2px;}
.buylead-box {display: flex; align-items: center; padding: 12px 14px; border-bottom: 1px solid #F1F5F9; border-radius: 8px; transition: background .2s;}
.buylead-box:hover {background: #F8FAFC;}
.buylead-box:last-child {border-bottom: none;}
.buylead-box .title {flex:1; font-size: 14px; color: #1A1A2E;}
.buylead-box .title span {color:var(--primary-color); cursor: pointer; font-weight: 600;}
.buylead-box .location {width:80px; font-size: 12px; color: #64748B; display: flex; align-items: center; gap: 4px;}
.buylead-box .location::before {content: '\f3c5'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 10px;}
.buylead-box .action {text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px;}
.buylead-box .action .btn {background: var(--primary-color); color: #fff; border-radius: 40px; padding: 4px 14px; font-size: 12px; cursor: pointer; transition: 0.2s; font-weight: 500; display: inline-block;}
.buylead-box .action .btn:hover {opacity: 0.9; box-shadow: 0 2px 8px rgba(0,0,0,0.15);}
.buylead-box .post-date {color: #94A3B8; font-size: 10px;}

/* Country / Region grid */
.country-row {display: flex; flex-wrap: wrap; text-align: center; gap: 8px;}
.country-row .item {flex: 1; min-width: 90px; background: #fff; border: 1px solid #E8EDF3; border-radius: 14px; padding: 14px 10px; transition: all .3s;}
.country-row .item:hover {border-color: var(--primary-color); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px);}
.country-row figure {width: 48px; height: 36px; margin: 0 auto 8px; border-radius: 6px; overflow: hidden; border: 1px solid #eef2f6; box-shadow: 0 1px 4px rgba(0,0,0,0.04);}
.country-row figure img {width: 100%; height: 100%; object-fit: cover;}
.country-row .title {font-size: 13px; color: #1A1A2E; font-weight: 500;}
.country-row a:hover .title {color: var(--primary-color); font-weight: 600;}

.shop-section {
    background: var(--white-color);
}

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

.shop-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px;
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 18px;
    text-decoration: none;
    transition: all .35s ease;
}

.shop-icon-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.shop-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #475569;
    margin-bottom: 14px;
    transition: all .3s;
}

.shop-icon-card:hover .shop-icon {
    background: var(--primary-color);
    color: #fff;
}

.shop-icon-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1A1A2E;
}

.shop-icon-card p {
    font-size: 12px;
    color: #64748B;
    margin: 0;
}

.my-stories-swiper .swiper-slide {
    margin-right: 16px
}

.scard {
    width: 100%;
    background: var(--white-color);
    border: 1px solid #E8EDF3;
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s ease;
}

.scard:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #D0D9E6;
    transform: translateY(-3px);
}

.scard-img {
    height: 160px;
    overflow: hidden;
}

.scard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

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

.scard-body {
    padding: 14px;
}

.scard-body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1A1A2E;
}

.scard-body p {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 8px;
}

.scard-body a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.box-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s ease;
    background: #fff;
    border: 1px solid #E8EDF3;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.box-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #D0D9E6;
}

.box-bar {
    height: 5px;
    width: 100%;
}

.box-fmcg .box-bar {background: #667eea;}
.box-industrial .box-bar {background: #f5576c;}
.box-agri .box-bar {background: #4facfe;}
.box-chemical .box-bar {background: #38f9d7;}
.box-fashion .box-bar {background: #fa709a;}
.box-electronics .box-bar {background: #a18cd1;}

.box-big {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
    grid-row: span 2;
}

.box-small {
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.box-content {
    padding: 20px 22px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.box-content .box-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #F1F5F9;
    color: #475569;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.box-fmcg .box-tag {background: #EEF2FF; color: #4F46E5;}
.box-industrial .box-tag {background: #FFF1F2; color: #E11D48;}
.box-agri .box-tag {background: #EFF6FF; color: #2563EB;}
.box-chemical .box-tag {background: #F0FDF4; color: #16A34A;}
.box-fashion .box-tag {background: #FFF4ED; color: #EA580C;}
.box-electronics .box-tag {background: #F5F3FF; color: #7C3AED;}

.box-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1A1A2E;
}

.box-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1A1A2E;
}

.box-content p {
    font-size: 13px;
    color: #64748B;
    margin-bottom: auto;
    line-height: 1.5;
}

.box-content a {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    transition: gap .3s;
}

.box-fmcg .box-content a {color: #4F46E5;}
.box-industrial .box-content a {color: #E11D48;}
.box-agri .box-content a {color: #2563EB;}
.box-chemical .box-content a {color: #16A34A;}
.box-fashion .box-content a {color: #EA580C;}
.box-electronics .box-content a {color: #7C3AED;}

.box-content a:hover {gap: 10px;}

.deepdive-section {
    background: var(--white-color);
}

.deepdive-grid {
    display: flex;
    gap: 20px;
}

.deepdive-main {
    flex: 0 0 360px;
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all .35s ease;
}

.deepdive-main:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border-color: #D0D9E6;
}

.deepdive-main-bar {
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.deepdive-main-body {
    padding: 28px;
}

.deepdive-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #EEF2FF;
    color: #4F46E5;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.deepdive-main-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1A1A2E;
}

.deepdive-main-body p {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 16px;
    line-height: 1.6;
}

.deepdive-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.deepdive-links a {
    font-size: 12px;
    color: #4F46E5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    background: #EEF2FF;
    border-radius: 25px;
    transition: all .3s;
    font-weight: 500;
}

.deepdive-links a:hover {
    background: #E0E7FF;
    gap: 8px;
}

.deepdive-side {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.deepdive-sm {
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all .35s ease;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.deepdive-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #D0D9E6;
}

.deepdive-sm-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.deepdive-sm:nth-child(1) .deepdive-sm-icon {background: #FFF1F2; color: #E11D48;}
.deepdive-sm:nth-child(2) .deepdive-sm-icon {background: #EFF6FF; color: #2563EB;}
.deepdive-sm:nth-child(3) .deepdive-sm-icon {background: #F0FDF4; color: #16A34A;}
.deepdive-sm:nth-child(4) .deepdive-sm-icon {background: #F5F3FF; color: #7C3AED;}

.deepdive-sm-body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1A1A2E;
}

.deepdive-sm-body span {
    font-size: 11px;
    color: #64748B;
    display: block;
    margin-bottom: 6px;
}

.deepdive-sm-body a {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s;
}

.deepdive-sm:nth-child(1) .deepdive-sm-body a {color: #E11D48;}
.deepdive-sm:nth-child(2) .deepdive-sm-body a {color: #2563EB;}
.deepdive-sm:nth-child(3) .deepdive-sm-body a {color: #16A34A;}
.deepdive-sm:nth-child(4) .deepdive-sm-body a {color: #7C3AED;}

.deepdive-sm-body a:hover {gap: 8px;}

.box2-wrap {display: none;}

.city-section {
    padding: 40px 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.city-card {
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity .3s;
}

.city-card:hover::before {
    opacity: 1;
}

.city-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.city-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    color: #475569;
    transition: all .3s;
}

.city-card:hover .city-icon {
    background: var(--primary-color);
    color: #fff;
}

.city-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1A1A2E;
}

.city-card span {
    font-size: 12px;
    color: #64748B;
}



.testm-section {background: #F8FAFC; border: 1px solid #E8EDF3; border-radius: 20px; padding: 0 20px 20px;}
.testm-row {display: flex; gap: 20px; padding-top: 20px;}
.testm-row .testm-vid-col {flex: 0 0 55%; max-width: 55%;}
.testm-row .testm-list-col {flex: 0 0 45%; max-width: 45%;}
.testm-laptop {position: relative; width: 100%; aspect-ratio: 792/470; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; min-height: 280px;}
.testm-laptop .vid-show {width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff;}
.testm-laptop .vid-show img {max-width: 160px; opacity: .5;}
.testm-laptop .vid-show::before {content: '\f04b'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 48px; position: absolute; color: #fff; opacity: .8; text-shadow: 0 4px 20px rgba(0,0,0,0.3);}
.testm-list-wrap {max-height: 440px; overflow-y: auto; padding-right: 8px;}
.testm-list-wrap::-webkit-scrollbar {width: 4px; border-radius: 3px;}
.testm-list-wrap::-webkit-scrollbar-track {background: #f1f1f1;}
.testm-list-wrap::-webkit-scrollbar-thumb {background: #ccc; border-radius: 3px;}
.testm-list .item {display: flex; margin-bottom: 8px; cursor: pointer; border-radius: 12px; padding: 12px 14px; background: #fff; align-items: center; border: 1px solid #E8EDF3; transition: all .3s;}
.testm-list .item.active {background: var(--primary-color); border-color: var(--primary-color);}
.testm-list .item.active .title, .testm-list .item.active .desc {color: #fff;}
.testm-list figure {width: 44px; height: 44px; position: relative; border-radius: 50%; overflow: hidden; margin-right: 14px; flex-shrink: 0; background: #F1F5F9; display: flex; align-items: center; justify-content: center;}
.testm-list figure img {width: 100%; height: 100%; object-fit: cover;}
.testm-list figure .play-icon {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--primary-color); font-size: 14px; opacity: .9;}
.testm-list .item.active figure .play-icon {color: #fff;}
.testm-list .content .title {font-size: 14px; font-weight: 600; margin-bottom: 2px; color: #1A1A2E;}
.testm-list .content .desc {font-size: 12px; color: #64748B;}
.testm-list .item:hover {border-color: var(--primary-color);}
.testm-list .item.active:hover {background: var(--primary-color); border-color: var(--primary-color);}
.sect-head .desc {padding-top: 8px; color: #888; font-size: 14px;}

.featured-section {
    background: var(--white-color);
    padding: 30px 0;
}

.featured-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.fitem {
    height: 36px;
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 8px;
    background: #F8FAFC;
    border: 1px solid #E8EDF3;
    transition: all .3s;
}

.fitem:hover {
    background: #fff;
    border-color: #D0D9E6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.fitem img {
    max-height: 100%;
    opacity: .6;
    filter: grayscale(1);
    transition: all .3s;
}

.fitem:hover img {
    opacity: 1;
    filter: grayscale(0);
}

.gbprice-section {
    background: #fff;
    padding: 40px 0;
}

.gbprice-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border-radius: 24px;
    padding: 50px;
}

.gbprice-left {
    flex: 1;
}

.gbprice-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.gbprice-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    line-height: 1.7;
}

.gbprice-stats {
    display: flex;
    gap: 16px;
}

.gstat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    flex: 1;
}

.gstat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.gstat span {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.gbprice-right {
    flex: 0 0 400px;
}

.gbprice-form {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.gbprice-form h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A2E;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fg-field {
    margin-bottom: 0;
}

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

.fg-field input,
.fg-field textarea {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    transition: border-color .3s;
    font-family: var(--default-font);
    background: #F8FAFC;
}

.fg-field input:focus,
.fg-field textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.fg-field textarea {
    min-height: 80px;
    resize: vertical;
}

.stories-section {
    background: var(--white-color);
}

.my-stories-swiper {
    padding: 8px 0 16px
}

.my-stories-swiper .swiper-slide {
    width: auto;
    height: auto
}

.my-stories-swiper .swiper-pagination {
    position: relative;
    margin-top: 12px
}

.my-stories-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1
}

.my-stories-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 4px
}

.knowledge-section {
    background: #fff;
}

.kcard {
    background: #fff;
    border: 1px solid #E8EDF3;
    border-radius: 18px;
    overflow: hidden;
    transition: all .35s ease;
}

.kcard:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border-color: #D0D9E6;
    transform: translateY(-4px);
}

.kcard-img {
    height: 180px;
    overflow: hidden;
}

.kcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kcard-body {
    padding: 18px;
}

.kcard-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #4F46E5;
    background: #EEF2FF;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.kcard-body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
    color: #1A1A2E;
}

.kcard-body p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 14px;
}

.kcard-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.kcard-meta span {
    font-size: 11px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kcard-body a {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s;
}

.kcard-body a:hover {gap: 8px;}

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

.about-section {
    background: var(--white-color);
    padding: 20px 0;
}

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

.astat {
    text-align: center;
    padding: 14px;
    background: #F8FAFC;
    border: 1px solid #E8EDF3;
    border-radius: 12px;
    transition: all .3s;
}

.astat:hover {
    border-color: var(--primary-color);
    background: #EEF2FF;
}

.astat strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.astat span {
    font-size: 12px;
    color: #64748B;
}

.fcol h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 14px;
}

.fcol p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.fcol a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    transition: color .2s;
}

.fcol a:hover {
    color: var(--white-color);
}

.f-social {
    display: flex;
    gap: 10px;
}

.f-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 14px;
    transition: all .3s;
    margin: 0;
}

.f-social a:hover {
    background: var(--primary-color);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payments span {
    font-size: 12px;
}

.footer-payments i {
    font-size: 20px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.full-nav.active {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white-color);
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 8px 0;
    border-top: 1px solid var(--divider-color);
}

.full-nav.active .item {
    display: block !important;
    padding: 10px 20px;
    border-bottom: 1px solid var(--divider-color);
}

.full-nav.active .item:last-child {
    border-bottom: none;
}

.full-nav.active .fnav-icon-wrap {
    border-radius: 0;
    padding: 10px 20px !important;
}

.full-nav.active .fnav-icon-wrap > a {
    justify-content: flex-start;
}

.full-nav.active .nav-item:after {
    display: none;
}

@media(max-width:1200px) {
    .d4t-hsol-highlights {
        flex-wrap: wrap;
        gap: 6px
    }

    .industry-boxes .box-wrap {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .trd-grid .trd-row .item {
        width: 25%;
        flex-basis: 25%
    }

    .trd-grid .trd-row .item:nth-child(n+5) {
        margin-top: 30px
    }

    .trd-grid .trd-box figure,
    .trd-grid .trd-box figure img {
        width: 130px;
        height: 130px
    }
}

@media(max-width:992px) {
    .hero-content {
        flex-direction: column;
        text-align: center
    }

    .hero-text h1 {
        font-size: 30px
    }

    .hero-stats {
        justify-content: center
    }

    .hero-slider,
    .hero-slider .slider-container {
        min-height: 420px
    }

    .hero-slider .slide .hero-content {
        padding: 40px 0 60px
    }

    .shop-icon-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .deepdive-grid {
        flex-direction: column
    }

    .deepdive-main {
        flex: none;
        width: 100%
    }

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

    .gbprice-wrap {
        flex-direction: column;
        padding: 30px
    }

    .gbprice-right {
        flex: none;
        width: 100%
    }

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

    .knowledge-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .top-nav,
    .hover-links,
    .submenu {
        display: none !important
    }

    .full-nav .item:not(.fnav-icon-wrap) {
        display: none
    }

    .trd-grid .trd-row .item {
        width: 33.33%;
        flex-basis: 33.33%
    }

    .trd-grid .trd-row .item:nth-child(n+4) {
        margin-top: 30px
    }

    .trd-grid .trd-box figure,
    .trd-grid .trd-box figure img {
        width: 130px;
        height: 130px
    }

    .country-row .item {
        min-width: 120px
    }

    .hboxrow .center {
        order: 3;
        flex: 0 0 100%;
        margin-top: 8px
    }

    .hboxrow {
        flex-wrap: wrap
    }

    .tgl2 .item .title {
        display: none
    }

    .askai-wrap small {
        display: none
    }

    .hboxrow {
        gap: 8px;
        padding: 8px 0
    }

    .hboxrow .left {
        gap: 4px
    }

    .logo img {
        max-height: 36px
    }

    .vsrc {
        display: none
    }

    .mobile-toggle {
        display: flex
    }

}

@media(max-width:768px) {
    .d4t-home-solutions {
        padding: 26px 0
    }

    .d4t-hsol-head {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
        border-radius: 22px
    }

    .d4t-hsol-title {
        font-size: 26px
    }

    .d4t-hsol-desc {
        font-size: 13px
    }

    .d4t-hsol-highlights span {
        font-size: 11px;
        padding: 7px 9px
    }

    .d4t-hsol-panel {
        padding: 17px
    }

    .shop-icon-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .industry-boxes .box-wrap {
        grid-template-columns: 1fr
    }

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

    .deepdive-main {
        flex: none;
        width: 100%
    }

    .deepdive-grid {
        flex-direction: column
    }

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

    .hero-text h1 {
        font-size: 24px
    }

    .hero-text p {
        font-size: 14px
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
        flex-direction: row;
        margin-top: 20px;
        padding-top: 16px
    }

    .hstat strong {
        font-size: 18px
    }

    .hstat span {
        font-size: 10px
    }

    .hero-slider,
    .hero-slider .slider-container {
        min-height: 380px
    }

    .hero-slider .slide .hero-content {
        padding: 30px 0 50px
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px
    }

    .slider-arrow.prev {
        left: 6px
    }

    .slider-arrow.next {
        right: 6px
    }

    .slider-dots {
        bottom: 14px;
        gap: 8px
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px
    }

    .btn {
        padding: 10px 22px;
        font-size: 13px
    }

    .hero-btns {
        gap: 8px
    }

    .section-title h2 {
        font-size: 22px
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .ts-left {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 50%
    }

    .ts-link:nth-child(n+6),
    .ts-dropdown:nth-child(n+3) {
        display: none
    }

    .s-select select {
        min-width: 80px;
        font-size: 12px;
        padding: 8px 10px
    }

    .askai {
        width: 50px;
        height: 42px
    }

    .askai span {
        display: none
    }

    .askai svg {
        margin-right: 0
    }

    .gbprice-left {
        padding: 24px
    }

    .gbprice-stats {
        flex-direction: column;
        gap: 12px
    }

    .prm-buy-row {
        flex-direction: column
    }

    .prm-buy-row .prm-buy-col {
        width: 100%
    }

    .prm-sppl-grid .item {
        width: 50%;
        flex-basis: 50%
    }

    .prm-sppl-grid .item:nth-child(n+3) {
        padding-top: 8px
    }

    .buylead-box .title {
        width: 100%
    }

    .testm-row {
        flex-direction: column
    }

    .testm-row .testm-vid-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .testm-row .testm-list-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .trd-grid .trd-row .item {
        width: 50%;
        flex-basis: 50%
    }

    .trd-grid .trd-row .item:nth-child(n+3) {
        margin-top: 30px
    }

    .trd-grid .trd-box figure,
    .trd-grid .trd-box figure img {
        width: 150px;
        height: 150px
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .box-round {
        padding: 20px 18px
    }

    #trenProd .trd {
        margin-top: -30px
    }

    .country-row .item {
        min-width: 50%;
        flex-basis: 50%
    }

}

@media(max-width:520px) {
    .d4t-home-solutions {
        padding: 22px 0
    }

    .d4t-hsol-head {
        padding: 16px
    }

    .d4t-hsol-title {
        font-size: 22px
    }

    .d4t-hsol-desc {
        font-size: 12px
    }

    .d4t-hsol-highlights span {
        font-size: 10px;
        padding: 6px 7px
    }

    .d4t-hsol-actions {
        flex-direction: column
    }

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

    .sol-swiper {
        padding: 4px 0 12px;
    }

    .sol-button-prev {left: 4px;}
    .sol-button-next {right: 4px;}

    .prm-sppl-grid .item {
        width: 50%;
        flex-basis: 50%;
        padding: 6px
    }

    .prm-sppl-grid .item:nth-child(n+3) {
        padding-top: 6px
    }

    .prm-sppl-grid a {
        padding: 8px
    }

    .gbprice-wrap {
        padding: 20px;
        flex-direction: column
    }

    .gbprice-right {
        flex: none;
        width: 100%
    }

    .gbprice-form {
        padding: 20px
    }

    .gbprice-stats {
        flex-wrap: wrap
    }

    .prm-sppl-grid figure,
    .prm-sppl-grid figure img {
        width: 60px;
        height: 50px
    }

    .prm-sppl-grid .title {
        font-size: 11px
    }

    .buylead-box {
        flex-wrap: wrap;
        gap: 4px;
        padding: 8px 0
    }

    .buylead-box .title {
        width: 100%;
        font-size: 12px
    }

    .buylead-box .location {
        width: auto;
        font-size: 11px
    }

    .buylead-box .action {
        width: auto;
        margin-left: auto
    }

    .buylead-box .action .btn {
        font-size: 11px;
        padding: 4px 10px
    }

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

    .trd-grid .trd-row .item {
        width: 50%;
        flex-basis: 50%
    }

    .trd-grid .trd-row .item:nth-child(n+3) {
        margin-top: 30px
    }

    .trd-grid .trd-box figure,
    .trd-grid .trd-box figure img {
        width: 130px;
        height: 130px
    }

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

    .deepdive-main-body {
        padding: 18px
    }

    .deepdive-main {
        flex: none;
        width: 100%
    }

    .deepdive-grid {
        flex-direction: column
    }

    .box-round {
        padding: 15px 12px
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .city-card {
        padding: 14px 10px
    }

    #trenProd .trd {
        margin-top: -20px
    }

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

    .ts-left {
        display: none
    }

    .ts-link:nth-child(n+5) {
        display: none
    }

    .hboxrow {
        gap: 4px;
        padding: 6px 0
    }

    .logo img {
        max-height: 30px
    }

    .tgl2 .item {
        padding: 4px 8px
    }

    .s-select {
        display: none
    }

    .hero-text h1 {
        font-size: 20px
    }

    .hero-text p {
        font-size: 13px;
        margin-bottom: 16px
    }

    .hero-slider .slide .hero-content {
        padding: 20px 0 40px
    }

    .hstat strong {
        font-size: 16px
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px
    }

}