/* ════════════════════════════════════════════════
   SEOWEBMAKER — SHARED STYLESHEET
   Dùng chung cho index.html, blog-list.html, blog-detail.html
════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --bg: #f0f6ff;
    --bg2: #e8effd;
    --surf: #fff;
    --border: #dbeafe;
    --border2: rgba(37, 99, 235, .2);
    --blue: #2563eb;
    --blue-dk: #1d4ed8;
    --blue-lt: #eff6ff;
    --cyan: #0ea5e9;
    --green: #10b981;
    --amber: #f59e0b;
    --text: #0f172a;
    --sub: #334155;
    --muted: #64748b;
    --pale: #94a3b8;
    --grad: linear-gradient(110deg, #2563eb 0%, #0ea5e9 100%);
    --grad2: linear-gradient(110deg, #eb2525 0%, #ff5757 100%);
    --sh0: 0 1px 3px rgba(37, 99, 235, .06);
    --sh1: 0 4px 20px rgba(37, 99, 235, .09);
    --sh2: 0 12px 44px rgba(37, 99, 235, .13);
    --sh3: 0 24px 64px rgba(37, 99, 235, .17);
    --r: 12px;
    --r-lg: 18px;
    --r-xl: 26px;
    --fd: 'Lexend Deca', sans-serif;
    --fb: 'Nunito', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
a{
	outline:none !important;
}
html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fd);
    line-height: 1.18;
    color: var(--text)
}

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

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

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 99px
}

/* ── UTILS ── */
.gt {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .7rem
}

.section-h {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.01em
}

.rule {
    width: 40px;
    height: 3px;
    background: var(--grad);
    border-radius: 99px;
    margin: .7rem 0 1.4rem
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    color: var(--blue);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 99px;
    padding: .22rem .75rem;
    white-space: nowrap
}

.tag.cn {
    background: rgba(14, 165, 233, .08);
    border-color: rgba(14, 165, 233, .22);
    color: var(--cyan)
}

.tag.gn {
    background: rgba(16, 185, 129, .08);
    border-color: rgba(16, 185, 129, .22);
    color: var(--green)
}

.tag.am {
    background: rgba(245, 158, 11, .08);
    border-color: rgba(245, 158, 11, .22);
    color: var(--amber)
}

.btn-sec {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 2px solid var(--blue);
    color: var(--blue);
    background: #fff;
    font-weight: 700;
    font-family: var(--fd);
    font-size: .9rem;
    border-radius: 99px;
    padding: .68rem 1.85rem;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.btn-sec:hover {
    background: var(--blue);
    color: #fff
}

.fu {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease
}

.fu.vis {
    opacity: 1;
    transform: none
}

.soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    color: var(--blue);
    font-size: .88rem;
    transition: background .2s, color .2s, border-color .2s
}

.soc:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#mainNav {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 #dbeafe, 0 4px 20px rgba(37, 99, 235, .05);
    z-index: 1030;
    transition: background .3s, box-shadow .3s;
	width:100%;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 20px rgba(37, 99, 235, .1)
}

.navbar-brand {
    font-family: var(--fd);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -.025em;
    color: var(--text) !important
}

.navbar-brand .acc {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.nav-link {
    color: var(--muted);
    font-size: .87rem;
    font-weight: 600;
    padding: .45rem .85rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
    font-family: var(--fb)
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue) !important;
    background: var(--blue-lt)
}
.btn-pri>a.nav-link, .reg-box .btn-pri, #hero .btn-pri, .btn-pri:not(.nav-item){
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 700;
    font-family: var(--fd);
    font-size: .9rem;
    border-radius: 99px;
    padding: .72rem 2rem;
    cursor: pointer;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37, 99, 235, .3);
    white-space: nowrap
}
form .btn-pri{
	min-height:53px;
}
.nav-drawer-foot .btn-pri.btn-pri2{
	background: var(--grad2);
}
.btn-pri:hover>a.nav-link, .btn-pri>a.nav-link.active, .reg-box .btn-pri:hover, #hero .btn-pri:hover,.btn-pri:not(.nav-item):hover{
    opacity: .87;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 8px 28px rgba(37, 99, 235, .38)
}
.modal a.btn-pri {
    word-wrap: break-word;
    text-wrap: inherit;
}
.navbar-toggler {
    border-color: var(--border) !important;
    border-radius: 8px !important;
    padding: .3rem .55rem;
    box-shadow: none !important
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15) !important
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232563eb' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important
}

/* ── DESKTOP MENU (≥992px, nằm trong #mainNav) ── */
.navbar-nav-desktop {
    list-style: none
}

.navbar-nav-desktop .nav-item {
    display: flex
}

/* ── MOBILE OFFCANVAS MENU (độc lập, nằm ngoài #mainNav) ── */
.offcanvas-header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 0 15px;
    padding-bottom: 15px;
}
.offcanvas {
    --bs-offcanvas-width: 320px
}

#navMenu {
	background: #fff;
    z-index: 1055;
    max-width: 78%;
}

#navMenu .offcanvas-header {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border)
}

#navMenu .offcanvas-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--text)
}

#navMenu .btn-close {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--blue-lt) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat;
    border: 1px solid #bfdbfe;
    opacity: 1;
    transition: background-color .2s
}

#navMenu .btn-close:hover {
    background-color: #dbeafe
}

#navMenu .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15)
}

#navMenu .offcanvas-body {
    padding: .75rem .9rem;
    display: flex;
    flex-direction: column
}

.navbar-nav-mobile {
    /* flex: 1; */
    margin: 0;
    list-style: none;
    padding: 0
}


.navbar-nav-mobile .nav-link {
    display: flex !important;
    align-items: center;
    gap: .65rem;
    font-size: .95rem !important;
    padding: .78rem 1rem !important;
    border-radius: 0;
    color: var(--sub) !important
}

.navbar-nav-mobile .nav-link.active,
.navbar-nav-mobile .nav-link:hover {
    background: var(--blue-lt);
    color: var(--blue) !important
}

.nav-drawer-foot {
    padding: 1rem .25rem 0;
    /* border-top: 1px solid var(--border); */
    margin-top: 0
}

.nav-drawer-foot .btn-pri {
    width: 100%;
    justify-content: center;
    font-size: .9rem !important;
    padding: .75rem 1rem !important
}

.nav-drawer-foot .ph-line {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: .9rem;
    font-size: .85rem;
    color: var(--muted);
    justify-content: center
}

.nav-drawer-foot .ph-line a {
    color: var(--blue);
    font-weight: 700
}

/* ════════════════════════════════════════════════
   HERO (trang chủ)
════════════════════════════════════════════════ */
#hero {
   min-height: calc(100vh - 120px);
    background: linear-gradient(148deg, #f8faff 0%, #e8f0fe 40%, #f0f8ff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px
}

.h-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, .11) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: .55
}

.h-glow {
    position: absolute;
    top: -140px;
    right: -90px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, .1) 0%, transparent 65%);
    pointer-events: none
}

.h-glow2 {
    position: absolute;
    bottom: -150px;
    left: -70px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, .07) 0%, transparent 65%);
    pointer-events: none
}

#hero h1 {
    font-size: clamp(2.1rem, 4.8vw, 3.7rem);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.12
}

#hero .sub {
    color: var(--sub);
    max-width: 500px;
    font-size: 1.04rem;
    line-height: 1.78
}

.h-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.85rem
}

.kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    margin-top: 2.5rem;
    box-shadow: var(--sh0)
}

.kpi {
    padding: 1.05rem 1.1rem;
    border-right: 1px solid var(--border)
}

.kpi:last-child {
    border-right: none
}

.kpi-n {
    font-family: var(--fd);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1
}

.kpi-l {
    font-size: .7rem;
    color: var(--muted);
    margin-top: .2rem
}

.h-img {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(37, 99, 235, .16), 0 0 0 1px rgba(37, 99, 235, .08)
}

.h-img img {
    width: 100%;
    height: 445px;
    object-fit: cover;
    display: block
}

.h-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh1)
}

.h-badge.lo {
    bottom: 18px;
    left: 18px;
    padding: .7rem 1rem;
    font-size: .79rem
}

.h-badge.hi {
    top: 18px;
    right: 18px;
    padding: .6rem .9rem;
    flex-direction: column;
    gap: .05rem;
    text-align: center
}

.live {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.6s infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

/* ── TRUST STRIP ── */
.trust {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden
}

.trust-in {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    font-size: .83rem;
    font-weight: 600;
    color: var(--muted);
    animation: marquee 28s linear infinite
}

.trust-in i {
    color: var(--blue)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.trust:hover .trust-in {
    animation-play-state: paused
}

/* ── FEATURES ── */
#features {
    padding: 96px 0;
    background: #fff
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh0)
}

.feat-cell {
    background: #fff;
    padding: 2.25rem 2.4rem;
    transition: background .22s
}

.feat-cell:hover {
    background: #f7faff
}

.feat-cell:nth-child(1) {
    border-radius: var(--r-xl) 0 0 0
}

.feat-cell:nth-child(2) {
    border-radius: 0 var(--r-xl) 0 0
}

.feat-cell:nth-child(3) {
    border-radius: 0 0 0 var(--r-xl)
}

.feat-cell:nth-child(4) {
    border-radius: 0 0 var(--r-xl) 0
}

.f-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.05rem;
    flex-shrink: 0
}

.f-ico.bl {
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    color: var(--blue)
}

.f-ico.cn {
    background: rgba(14, 165, 233, .08);
    border: 1px solid rgba(14, 165, 233, .2);
    color: var(--cyan)
}

.f-ico.gn {
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .2);
    color: var(--green)
}

.f-ico.am {
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .2);
    color: var(--amber)
}

.feat-cell h5 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text)
}

.feat-cell p {
    font-size: .87rem;
    color: var(--sub);
    line-height: 1.75
}

/* ── TEMPLATES ── */
#templates {
    padding: 96px 0;
    background: var(--bg)
}

.swiper-tpl {
    /* overflow: visible !important; */
    padding-bottom: 46px !important
}

.swiper-tpl .swiper-slide {
    width: 296px
}

.tpl {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--sh0);
    transition: transform .3s, box-shadow .3s, border-color .3s
}

.tpl:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh2);
    border-color: var(--border2)
}

.tpl-img {
    position: relative;
    height: 190px;
    overflow: hidden
}

.tpl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s
}

.tpl:hover .tpl-img img {
    transform: scale(1.07)
}

.tpl-ov {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, .83);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .28s
}

.tpl:hover .tpl-ov {
    opacity: 1
}

.tpl-body {
    padding: .95rem 1.15rem 1.15rem
}

.tpl-body h6 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
    font-family: var(--fd)
}

.swiper-pagination-bullet {
    background: #bfdbfe !important;
    opacity: 1 !important;
    transition: background .2s, transform .2s
}

.swiper-pagination-bullet-active {
    background: var(--blue) !important;
    transform: scale(1.15)
}

.nav-p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    font-size: .9rem
}

.nav-p:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .24)
}

/* tom select */
.ts-control {
    background: #fff !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--r) !important;
    padding: .62rem 1rem !important;
    font-size: .87rem !important;
    font-family: var(--fb) !important;
    box-shadow: var(--sh0) !important
}

.ts-wrapper.focus .ts-control {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .11) !important
}

.ts-dropdown {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--r) !important;
    box-shadow: var(--sh1) !important
}

.ts-dropdown .option {
    padding: .5rem 1rem !important;
    font-size: .85rem !important;
    color: var(--sub) !important
}

.ts-dropdown .option:hover,
.ts-dropdown .option.active {
    background: var(--blue-lt) !important;
    color: var(--blue) !important
}

.ts-control input {
    color: var(--text) !important
}

.ts-control .placeholder {
    color: var(--pale) !important
}

/* ── BLOG PREVIEW (trang chủ) ── */
#blog {
    padding: 96px 0;
    background: #fff
}

.blog-feat {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--sh1);
    cursor: pointer;
    transition: box-shadow .3s, border-color .3s;
    text-decoration: none;
    color: inherit
}

.blog-feat:hover {
    box-shadow: var(--sh2);
    border-color: var(--border2)
}

.bf-img {
    overflow: hidden;
    position: relative
}

.bf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    transition: transform .45s;
    display: block
}

.blog-feat:hover .bf-img img {
    transform: scale(1.04)
}

.bf-body {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pmeta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem
}

.pmeta .dt {
    font-size: .74rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .25rem
}

.bf-body h3 {
    font-size: clamp(1.1rem, 2vw, 1.48rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .85rem;
    line-height: 1.28
}

.bf-body p {
    font-size: .87rem;
    color: var(--sub);
    line-height: 1.76;
    margin-bottom: 1.3rem
}

.rd-more {
    font-size: .84rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    transition: gap .18s
}

.rd-more:hover {
    gap: .65rem
}

.blog-sm {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh0);
    transition: transform .28s, box-shadow .28s, border-color .28s;
    text-decoration: none;
    color: inherit
}

.blog-sm:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh1);
    border-color: var(--border2)
}

.bs-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0
}

.bs-body {
    padding: 1.05rem 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.bs-body h6 {
    font-size: .89rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.44;
    margin: .4rem 0 .48rem;
    font-family: var(--fd);
    flex: 1
}

.bs-body p {
    font-size: .79rem;
    color: var(--sub);
    line-height: 1.65;
    margin-bottom: .75rem
}

/* ── WHY US ── */
#whyus {
    padding: 96px 0;
    background: var(--bg)
}

.why-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.35rem;
    box-shadow: var(--sh0);
    transition: border-color .22s, box-shadow .22s;
    margin-bottom: 1rem
}

.why-card:last-child {
    margin-bottom: 0
}

.why-card:hover {
    border-color: var(--border2);
    box-shadow: var(--sh1)
}

.why-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: .78rem;
    font-weight: 900;
    color: var(--blue)
}

.why-card h6 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .28rem;
    font-family: var(--fd)
}

.why-card p {
    font-size: .84rem;
    color: var(--sub);
    line-height: 1.7
}

.why-pic {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh2)
}

.why-pic img {
    width: 100%;
    object-fit: cover;
    min-height: 450px;
    display: block
}

.why-pic-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(240, 246, 255, .92) 0%, transparent 42%)
}

.why-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.w-stat {
    padding: 1rem .7rem;
    text-align: center;
    border-right: 1px solid rgba(219, 234, 254, .5);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px)
}

.w-stat:last-child {
    border-right: none
}

.w-stat-n {
    font-family: var(--fd);
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1
}

.w-stat-l {
    font-size: .66rem;
    color: var(--muted);
    margin-top: .2rem
}

/* ── REGISTER ── */
#register {
    padding: 96px 0;
    background: #fff
}

.reg-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.4rem;
    box-shadow: var(--sh0)
}

.reg-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--sub);
    margin-bottom: .38rem;
    display: block;
    letter-spacing: .01em
}

.reg-inp {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--r);
    padding: .7rem 1rem;
	font-size: clamp(16px,1rem, 2rem);
    font-family: var(--fb);
    width: 100%;
    display: block;
    transition: border-color .2s, box-shadow .2s;
    line-height: 1.5
}

.reg-inp:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    outline: none
}

.reg-inp::placeholder {
    color: var(--pale)
}

.c-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.85rem;
    height: 100%
}

.ci {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: .95rem 0;
    border-bottom: 1px solid var(--border)
}

.ci:last-of-type {
    border-bottom: none
}

.ci-ico {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    background: var(--blue-lt);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: .95rem
}

.ci-lb {
    font-size: .68rem;
    color: var(--muted);
    margin-bottom: .2rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase
}

.ci-val {
    font-size: .9rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.4
}
/* ════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════ */
.newsletter-sec{background:var(--grad);padding:2.75rem 0;position:relative;overflow:hidden}
.newsletter-sec::before{content:"";position:absolute;top:-80px;right:-60px;width:280px;height:280px;border-radius:50%;background:rgba(255,255,255,.08)}
.newsletter-sec::after{content:"";position:absolute;bottom:-90px;left:-50px;width:240px;height:240px;border-radius:50%;background:rgba(255,255,255,.06)}
.nws-eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.7rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.85);margin-bottom:.5rem}
.nws-title{color:#fff;font-size:clamp(1.25rem,2.5vw,1.6rem);font-weight:800;margin-bottom:.4rem}
.nws-sub{color:rgba(255,255,255,.82);font-size:.9rem;margin-bottom:1.5rem}
.nws-form{display:flex;gap:.6rem;max-width:480px;margin:0 auto;flex-wrap:wrap;position:relative;z-index:1}
.nws-input-box{flex:1;min-width:200px}
.nws-input{width:100%;background:#fff;border:none;border-radius:99px;padding:.85rem 1.3rem;font-size:.92rem;font-family:var(--fb);color:var(--text);transition:box-shadow .2s}
.nws-input:focus{outline:none;box-shadow:0 0 0 4px rgba(255,255,255,.35)}
.nws-input::placeholder{color:var(--pale)}
.nws-input.is-invalid{box-shadow:0 0 0 3px rgba(220,38,38,.5)}
.nws-btn{background:#fff;color:var(--blue);border:none;border-radius:99px;padding:.85rem 1.7rem;font-weight:800;font-family:var(--fd);font-size:.9rem;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;transition:transform .2s,box-shadow .2s;white-space:nowrap;flex-shrink:0}
.nws-btn:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(0,0,0,.18)}
.nws-msg{margin-top:.85rem;font-size:.83rem;color:#fff;display:none;position:relative;z-index:1}
.nws-msg.show{display:block}
.nws-msg.ok{color:#d1fae5}
.nws-msg.err{color:#fecaca}
@media(max-width:575px){
  .newsletter-sec{padding:2.1rem 0}
  .nws-title{font-size:1.12rem}
  .nws-sub{font-size:.83rem;margin-bottom:1.2rem}
  .nws-form{flex-direction:column;gap:.55rem}
  .nws-input{font-size:max(.88rem,16px);padding:.78rem 1.1rem}
  .nws-btn{width:100%;justify-content:center;padding:.78rem 1.1rem}
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
#footer {
    background: #f7faff;
    border-top: 1px solid var(--border);
    padding: 60px 0 28px
}

#footer,
#footer * {
    color: var(--muted)
}

.foot-brand {
    font-family: var(--fd);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text) !important;
    margin-bottom: .45rem
}

.foot-desc {
    font-size: .83rem;
    max-width: 260px;
    line-height: 1.72;
    color: var(--muted) !important
}

.foot-head {
    font-size: .67rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan) !important;
    font-weight: 700;
    margin-bottom: .85rem;
    font-family: var(--fd)
}

.foot-links {
    list-style: none;
    padding: 0
}

.foot-links li {
    margin-bottom: .42rem
}

.foot-links a {
    font-size: .85rem;
    transition: color .2s
}

.foot-links a:hover {
    color: var(--blue) !important
}

.foot-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.35rem;
    margin-top: 2.25rem;
    font-size: .77rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .5rem
}

/* ── FLOAT BTNS ── */
.float-bar {
    position: fixed;
    bottom: 22px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    z-index: 99
}

.fb {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none
}

.fb:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .22)
}

.fb.ph {
    background: #22c55e
}

.fb.za {
    background: #0068ff
}

.fb.em {
    background: var(--blue)
}


/* ── MODAL ── */
.modal-content{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);color:var(--text); overflow:hidden;}
.modal-header{border-bottom-color:var(--border)}

/* ── REGISTER MODAL ── */
.reg-modal-head{background:var(--grad);color:#fff;padding:1.75rem 2rem;position:relative;overflow:hidden}
.reg-modal-head::before{content:"";position:absolute;right:-60px;top:-60px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,.08)}
.reg-modal-head h3{color:#fff;font-size:1.3rem;font-weight:800;margin-bottom:.3rem;font-family:var(--fd)}
.reg-modal-head p{color:rgba(255,255,255,.85);font-size:.86rem;margin:0}
.reg-modal-head .btn-close{position:relative;z-index:1}
#regModal .modal-body{padding:2rem}
#regModal .reg-label{font-size:.78rem;font-weight:700;color:var(--sub);margin-bottom:.38rem;display:block}
/* #regModal .reg-inp{background:#fff;border:1.5px solid var(--border);color:var(--text);border-radius:var(--r);padding:.7rem 1rem;font-size:.9rem;font-family:var(--fb);width:100%;display:block;transition:border-color .2s,box-shadow .2s} */
#regModal .reg-inp:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(37,99,235,.1);outline:none}
#regModal .reg-inp::placeholder{color:var(--pale)}
#regModal .reg-inp.is-invalid{border-color:#dc2626}
#regModal .invalid-feedback{font-size:.74rem;color:#dc2626;margin-top:.25rem}
.reg-success{text-align:center;padding:1.5rem 0}
.reg-success i{font-size:3rem;color:var(--green)}
.reg-success h4{color:var(--navy,var(--text));margin-top:1rem;font-weight:800;font-size:1.15rem;font-family:var(--fd)}
.reg-success p{color:var(--muted);font-size:.88rem;margin-top:.4rem;margin-bottom:0}

/* ════════════════════════════════════════════════
   BLOG LIST PAGE
════════════════════════════════════════════════ */
nav>.breadcrumb {
    flex-wrap: initial;
}
.breadcrumbs>nav {
    overflow: auto;
}
@media (max-width: 767px) {
    .breadcrumbs>nav {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}
.page-hero {
    background: linear-gradient(148deg, #f8faff 0%, #e8f0fe 38%, #f0f8ff 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border)
}

.ph-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, .1) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none
}

.ph-glow {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(37, 99, 235, .09) 0%, transparent 65%);
    pointer-events: none
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
    background: none;
    padding: 0
}

.breadcrumb a {
    color: var(--blue);
    font-weight: 600
}

.breadcrumb a:hover {
    text-decoration: underline
}

.breadcrumb .sep {
    opacity: .4;
    font-size: .7rem
}

.srch {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    padding: .48rem .55rem .48rem 1.05rem;
    max-width: 440px;
    box-shadow: var(--sh0);
    transition: border-color .2s, box-shadow .2s
}

.srch:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.srch input {
    border: none;
    background: transparent;
    outline: none;
    font-size: .87rem;
    color: var(--text);
    font-family: var(--fb);
    flex: 1;
    min-width: 0
}

.srch input::placeholder {
    color: var(--pale)
}

.srch-btn {
    background: var(--grad);
    border: none;
    color: #fff;
    border-radius: 99px;
    padding: .36rem .9rem;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--fd)
}

.pills {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.pill {
    border: 1.5px solid var(--border);
    border-radius: 99px;
    padding: .3rem .9rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    font-family: var(--fb);
    background: #fff
}

.pill:hover,
.pill.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.post-feat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh1);
    transition: box-shadow .28s, transform .28s;
    display: block;
    color: inherit;
    margin-bottom: 1.5rem
}

.post-feat:hover {
    box-shadow: var(--sh2);
    transform: translateY(-2px)
}

.pf-img {
    height: 290px;
    overflow: hidden;
    position: relative
}

.pf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
    display: block
}

.post-feat:hover .pf-img img {
    transform: scale(1.04)
}

.pf-badge {
    position: absolute;
    top: 14px;
    left: 14px
}

.pf-body {
    padding: 1.85rem 2rem
}

.pdate {
    font-size: .73rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .25rem
}

.pf-body h2 {
    font-size: clamp(1.1rem, 2.2vw, 1.48rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .75rem;
    line-height: 1.27
}

.pf-body p {
    font-size: .87rem;
    color: var(--sub);
    line-height: 1.76;
    margin-bottom: 1.1rem
}

.rd {
    font-size: .83rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: gap .18s
}

.rd:hover {
    gap: .6rem
}

.pc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh0);
    transition: transform .28s, box-shadow .28s, border-color .28s;
    color: inherit
}

.pc:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh1);
    border-color: var(--border2)
}

.pc-img {
    height: 172px;
    overflow: hidden;
    position: relative
}

.pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block
}

.pc:hover .pc-img img {
    transform: scale(1.06)
}

.pc-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem
}

.pc-body {
    padding: 1.1rem 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.pc-body h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.42;
    margin: .4rem 0 .45rem;
    font-family: var(--fd);
    flex: 1
}

.pc-body p {
    font-size: .8rem;
    color: var(--sub);
    line-height: 1.65;
    margin-bottom: .8rem
}

.pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    border-top: 1px solid var(--border);
    margin-top: auto
}

.author {
    display: flex;
    align-items: center;
    gap: .45rem
}

.av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--fd);
    flex-shrink: 0
}

.sw {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.35rem;
    box-shadow: var(--sh0);
    margin-bottom: 1.1rem
}

.sw-head {
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .85rem;
    font-family: var(--fd)
}

.sp {
    display: flex;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border)
}

.sp:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.sp-img {
    width: 54px;
    height: 46px;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, var(--blue-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: rgba(37, 99, 235, .3)
}

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

.sp h6 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .15rem;
    line-height: 1.38;
    font-family: var(--fb);
    letter-spacing: 0;
    text-transform: none
}

.sp span {
    font-size: .68rem;
    color: var(--muted)
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .38rem
}

.tc {
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    color: var(--blue);
    border-radius: 99px;
    padding: .2rem .68rem;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s
}

.tc:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.pag {
    display: flex;
    gap: .35rem;
    align-items: center;
    justify-content: center;
    margin-top: 2.25rem;
    flex-wrap: wrap
}

.pb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    border: 1.5px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    font-family: var(--fd);
    background: #fff
}

.pb:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.pb.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .28)
}

.pb.off {
    opacity: .4;
    pointer-events: none
}

/* ════════════════════════════════════════════════
   BLOG DETAIL PAGE
════════════════════════════════════════════════ */
#rp {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad);
    z-index: 9999;
    transition: width .12s linear;
    box-shadow: 0 0 8px rgba(37, 99, 235, .5)
}

.art-hero {
    background: linear-gradient(148deg, #f8faff 0%, #e8f0fe 38%, #f0f8ff 100%);
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border)
}

.ah-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, .09) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none
}

.ah-glow {
    position: absolute;
    top: -100px;
    right: -70px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 65%);
    pointer-events: none
}

.a-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem
}

.a-date {
    font-size: .74rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .25rem
}

.art-title {
    font-size: clamp(1.65rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1.1rem;
    line-height: 1.15;
    letter-spacing: -.015em
}

.art-lead {
    font-size: 1.04rem;
    color: var(--sub);
    max-width: 100%;
    line-height: 1.8
}

.art-cover {
    margin-top: 2.75rem;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 32px rgba(37, 99, 235, .06)
}

.art-cover img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block
}

.auth-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0
}

.auth-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-weight: 900;
    font-size: .88rem;
    color: #fff;
    flex-shrink: 0
}

.auth-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--fd)
}

.auth-role {
    font-size: .73rem;
    color: var(--muted)
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    color: var(--blue);
    font-size: .86rem;
    transition: background .2s, color .2s
}

.share-btn:hover {
    background: var(--blue);
    color: #fff
}

.art-layout {
    display: grid;
    grid-template-columns: 1fr 272px;
    gap: 2.25rem;
    align-items: start;
    padding: 44px 0 76px
}

@media (max-width: 992px) {
	.art-hero{padding-top:20px;}
}
@media (max-width: 575px) {
    .art-layout {
        padding: 28px 0 52px;
        gap: 0;
        display: block;
    }
	.art-hero{padding-top:10px;}
}

.toc-box {
    position: sticky;
    top: 82px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.35rem;
    box-shadow: var(--sh0)
}

.toc-head {
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .85rem;
    font-family: var(--fd)
}

.toc-list {
    list-style: none
}

.toc-list li {
    margin-bottom: .05rem
}

.toc-list a {
    font-size: .82rem;
    color: var(--sub);
    display: block;
    padding: .32rem .58rem;
    border-radius: 7px;
    border-left: 2px solid transparent;
    transition: all .18s
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--blue);
    background: var(--blue-lt);
    border-left-color: var(--blue)
}

.a-body h2 {
    font-size: clamp(1.22rem, 2.4vw, 1.65rem);
    font-weight: 800;
    color: var(--text);
    margin: 2.4rem 0 .9rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--border)
}

.a-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.85rem 0 .7rem
}

.a-body p {
    color: var(--sub);
    font-size: .96rem;
    margin-bottom: 1.15rem;
    line-height: 1.84
}

.a-body ul,
.a-body ol {
    color: var(--sub);
    font-size: .93rem;
    margin: 0 0 1.15rem 1.35rem
}

.a-body li {
    margin-bottom: .48rem;
    line-height: 1.75
}

.a-body strong {
    color: var(--text);
    font-weight: 700
}

.a-body a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px
}

.a-body pre {
    background: var(--text);
    border-radius: var(--r-lg);
    padding: 1.2rem 1.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: .84rem;
    line-height: 1.7;
    margin: 1.4rem 0;
    color: #93c5fd;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(255, 255, 255, .05);
    white-space: pre
}

.a-body code {
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    border-radius: 5px;
    padding: .12rem .42rem;
    font-size: .82rem;
    color: var(--blue);
    font-family: 'Courier New', monospace
}

.a-body pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit
}

.callout {
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    border-left: 3px solid var(--blue);
    border-radius: var(--r);
    padding: 1.1rem 1.4rem;
    margin: 1.35rem 0
}

.callout.warn {
    background: rgba(245, 158, 11, .07);
    border-color: rgba(245, 158, 11, .22);
    border-left-color: var(--amber)
}

.callout.ok {
    background: rgba(16, 185, 129, .07);
    border-color: rgba(16, 185, 129, .22);
    border-left-color: var(--green)
}

.callout p {
    margin: 0;
    font-size: .9rem;
    color: var(--sub)
}

.a-tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.35rem 0;
    border-radius: var(--r-lg);
    border: 1px solid var(--border)
}

.a-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
    min-width: 480px
}

.a-tbl th {
    background: var(--blue-lt);
    color: var(--text);
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 800;
    border-bottom: 2px solid #bfdbfe;
    font-family: var(--fd)
}

.a-tbl td {
    padding: .68rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--sub);
    vertical-align: top
}

.a-tbl tr:last-child td {
    border-bottom: none
}

.a-tbl tr:hover td {
    background: #fafcff
}

.ct {
    display: inline-flex;
    align-items: center;
    background: var(--blue-lt);
    border: 1px solid #bfdbfe;
    color: var(--blue);
    border-radius: 6px;
    padding: .12rem .5rem;
    font-family: 'Courier New', monospace;
    font-size: .79rem;
    font-weight: 700
}

.ct.err {
    background: rgba(239, 68, 68, .07);
    border-color: rgba(239, 68, 68, .18);
    color: #dc2626
}

.ct.warn {
    background: rgba(245, 158, 11, .07);
    border-color: rgba(245, 158, 11, .18);
    color: var(--amber)
}

.ct.ok {
    background: rgba(16, 185, 129, .07);
    border-color: rgba(16, 185, 129, .18);
    color: var(--green)
}

.rel-post {
    display: flex;
    gap: .9rem;
    padding: .95rem;
    border-radius: var(--r);
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    margin-bottom: .7rem;
    box-shadow: var(--sh0)
}

.rel-post:hover {
    border-color: var(--border2);
    box-shadow: var(--sh1)
}

.rel-ico {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem
}

.rel-post h6 {
    font-size: .83rem;
    color: var(--text);
    font-weight: 700;
    margin-bottom: .15rem;
    line-height: 1.4;
    font-family: var(--fd)
}

.rel-post span {
    font-size: .7rem;
    color: var(--muted)
}

.comment-area {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--sh0)
}

.comment-item {
    display: flex;
    gap: .9rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border)
}

.comment-item:last-child {
    border-bottom: none
}

.c-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--fd)
}

.c-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem;
    font-family: var(--fd)
}

.c-date {
    font-size: .7rem;
    color: var(--muted)
}

.c-body {
    background: var(--bg);
    border-radius: var(--r);
    padding: .85rem 1rem;
    margin-top: .5rem;
    font-size: .86rem;
    color: var(--sub);
    line-height: 1.72
}

.c-body.team {
    background: var(--blue-lt);
    border-left: 3px solid var(--blue)
}

.c-inp {
    background: var(--bg);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--r);
    padding: .68rem .95rem;
    font-size: .9rem;
    font-family: var(--fb);
    width: 100%;
    display: block;
    transition: border-color .2s, box-shadow .2s
}

.c-inp:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    outline: none;
    background: #fff
}

.c-inp::placeholder {
    color: var(--pale)
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media(min-width:1200px) {
    .h-img img {
        height: 465px
    }

    #features,
    #templates,
    #blog,
    #whyus,
    #register {
        padding: 104px 0
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .h-img img {
        height: 400px
    }

    #features,
    #templates,
    #blog,
    #whyus,
    #register {
        padding: 88px 0
    }
}

@media(min-width:768px) and (max-width:991px) {
    #hero {
        padding: 106px 0 64px;
        min-height: auto
    }

    #hero h1 {
        font-size: clamp(1.95rem, 4.5vw, 2.7rem)
    }

    .h-img {
        margin-top: 2rem
    }

    .h-img img {
        height: 310px
    }

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

    .kpi:nth-child(2) {
        border-right: none
    }

    .kpi:nth-child(3) {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border)
    }

    .kpi:last-child {
        border-top: 1px solid var(--border)
    }

    #features,
    #templates,
    #blog,
    #whyus,
    #register {
        padding: 76px 0
    }

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

    .feat-cell:nth-child(1) {
        border-radius: var(--r-xl) var(--r-xl) 0 0
    }

    .feat-cell:nth-child(2) {
        border-radius: 0
    }

    .feat-cell:nth-child(3) {
        border-radius: 0
    }

    .feat-cell:nth-child(4) {
        border-radius: 0 0 var(--r-xl) var(--r-xl)
    }

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

    .bf-img img {
        min-height: 220px
    }

    .bf-body {
        padding: 1.6rem 1.85rem
    }

    .swiper-tpl .swiper-slide {
        width: 48vw
    }

    .reg-box {
        padding: 2rem
    }

    .page-hero {
       padding: 50px 0;
    }

    .pf-img {
        height: 240px
    }

    .pf-body {
        padding: 1.5rem 1.75rem
    }

    .pf-body h2 {
        font-size: 1.28rem
    }

    .pc-img {
        height: 162px
    }

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

    .toc-box {
        display: none
    }

    .art-cover img {
        height: 290px
    }


    .art-title {
        font-size: 2.1rem
    }

    .comment-area {
        padding: 1.5rem
    }
}

@media(min-width:576px) and (max-width:767px) {
    #hero {
        padding: 40px 0 50px;
        min-height: auto
    }

    .h-img {
        margin-top: 2rem
    }

    .h-img img {
        height: 255px
    }

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

    .kpi:nth-child(2) {
        border-right: none
    }

    .kpi:nth-child(3) {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border)
    }

    .kpi:last-child {
        border-top: 1px solid var(--border)
    }

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

    .feat-cell:nth-child(1) {
        border-radius: var(--r-xl) var(--r-xl) 0 0
    }

    .feat-cell:nth-child(2) {
        border-radius: 0
    }

    .feat-cell:nth-child(3) {
        border-radius: 0
    }

    .feat-cell:nth-child(4) {
        border-radius: 0 0 var(--r-xl) var(--r-xl)
    }

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

    .bf-img img {
        min-height: 195px
    }

    .bf-body {
        padding: 1.35rem 1.5rem
    }

    .bf-body h3 {
        font-size: 1.05rem
    }

    #features,
    #templates,
    #blog,
    #whyus,
    #register {
        padding: 64px 0
    }

    .swiper-tpl .swiper-slide {
        width: 72vw
    }

    .reg-box {
        padding: 1.85rem 1.5rem
    }

    .page-hero {
       padding: 50px 0;
    }

    .pf-img {
        height: 205px
    }

    .pf-body {
        padding: 1.25rem 1.4rem
    }

    .pf-body h2 {
        font-size: 1.12rem
    }

    .pc-img {
        height: 155px
    }

    .srch {
        max-width: 100%
    }

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

    .toc-box {
        display: none
    }

    .art-cover img {
        height: 240px
    }

    .art-title {
        font-size: 1.75rem
    }

    .art-lead {
        font-size: .97rem
    }

    .a-body h2 {
        font-size: 1.3rem
    }

    .comment-area {
        padding: 1.35rem
    }

    .rel-post {
        padding: .85rem
    }
}

@media(max-width:991px) {
    .page-hero {
        padding: 50px 0;
    }

    .pf-img {
        height: 230px
    }
}

@media(max-width:767px) {
    .page-hero {
       padding: 50px 0;
    }

    .pf-img {
        height: 195px
    }

    .pf-body {
        padding: 1.35rem 1.4rem
    }

    .art-cover img {
        height: 220px
    }

    .comment-area {
        padding: 1.4rem
    }
}

@media(max-width:575px) {
    html {
        font-size: 15px
    }

    body {
        -webkit-text-size-adjust: 100%
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-break: keep-all;
        overflow-wrap: break-word
    }

    .navbar-brand {
        font-size: 1.15rem
    }

    .navbar-toggler {
        padding: .28rem .52rem
    }

    #hero {
        padding: 20px 0 45px;
        min-height: auto
    }

    #hero h1 {
        font-size: clamp(1.65rem, 7.2vw, 2.05rem);
        letter-spacing: -.02em
    }

    #hero .sub {
        font-size: .86rem;
        max-width: 100%
    }

    .h-btns {
        flex-direction: column;
        gap: .55rem
    }

    .h-btns .btn-pri,
    .h-btns .btn-sec {
        justify-content: center;
        width: 100%
    }

    .h-img {
        margin-top: 1.6rem
    }

    .h-img img {
        height: 205px
    }

    .h-badge.lo {
        padding: .6rem .85rem;
        font-size: .71rem
    }

    .h-badge.hi {
        top: 12px;
        right: 12px;
        padding: .55rem .8rem
    }

    .kpis {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 1.6rem
    }

    .kpi:nth-child(2) {
        border-right: none
    }

    .kpi:nth-child(3) {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border)
    }

    .kpi:last-child {
        border-top: 1px solid var(--border)
    }

    .kpi-n {
        font-size: 1.42rem
    }

    .kpi-l {
        font-size: .68rem
    }

    .trust {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .trust .container {
        overflow: visible !important
    }

    .trust-in {
        animation: none;
        gap: 1.4rem;
        font-size: .77rem;
        padding: 0 .25rem;
        white-space: nowrap
    }

    .eyebrow {
        font-size: .67rem
    }

    .section-h {
        font-size: 1.48rem !important
    }

    .rule {
        margin-bottom: .85rem
    }

    #features,
    #templates,
    #blog,
    #whyus,
    #register {
        padding: 56px 0
    }

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

    .feat-cell {
        padding: 1.45rem;
        border-radius: 0 !important
    }

    .feat-cell:nth-child(1) {
        border-radius: var(--r-xl) var(--r-xl) 0 0 !important
    }

    .feat-cell:nth-child(4) {
        border-radius: 0 0 var(--r-xl) var(--r-xl) !important
    }

    .f-ico {
        width: 46px;
        height: 46px;
        font-size: 1.15rem
    }

    .feat-cell h5 {
        font-size: .95rem
    }

    .feat-cell p {
        font-size: .83rem
    }

    .swiper-tpl .swiper-slide {
        width: 84vw
    }

    .tpl-img {
        height: 168px
    }

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

    .bf-img img {
        min-height: 180px
    }

    .bf-body {
        padding: 1.25rem
    }

    .bf-body h3 {
        font-size: 1rem
    }

    .bs-thumb {
        height: 128px;
        font-size: 2rem
    }

    .bs-body {
        padding: .9rem 1.1rem 1.1rem
    }

    .bs-body h6 {
        font-size: .85rem
    }

    .why-card {
        padding: 1.1rem;
        gap: .85rem;
        margin-bottom: .85rem
    }

    .why-num {
        width: 36px;
        height: 36px;
        font-size: .74rem
    }

    .why-card h6 {
        font-size: .88rem
    }

    .why-card p {
        font-size: .81rem
    }

    .why-pic img {
        min-height: 210px;
        max-height: 280px
    }

    .w-stat {
        padding: .8rem .5rem
    }

    .w-stat-n {
        font-size: 1.2rem
    }

    .w-stat-l {
        font-size: .6rem
    }

    .reg-box {
        padding: 1.3rem 1.05rem;
        border-radius: var(--r-lg)
    }

    .reg-inp {
        font-size: max(.86rem, 16px) !important
    }

    .ts-control {
        font-size: max(.86rem, 16px) !important;
        padding: .65rem .9rem !important
    }

    textarea.reg-inp {
        min-height: 82px
    }

    .c-box {
        padding: 1.25rem 1.05rem;
        border-radius: var(--r-lg);
        margin-top: .5rem
    }

    .ci {
        padding: .82rem 0;
        gap: .65rem
    }

    .ci-ico {
        width: 34px;
        height: 34px;
        font-size: .88rem
    }

    .ci-lb {
        font-size: .64rem
    }

    .ci-val {
        font-size: .86rem
    }

    #footer {
        padding: 42px 0 16px
    }

    .foot-desc {
        max-width: 100%
    }

    .foot-bottom {
        flex-direction: column;
        gap: .3rem;
        text-align: center;
        font-size: .73rem
    }

    .float-bar {
        bottom: 12px;
        right: 10px;
        gap: .4rem
    }

    .fb {
        width: 43px;
        height: 43px;
        font-size: 1rem
    }

    .modal-dialog {
        margin: .55rem
    }

    .page-hero {
       padding: 20px 0;
    }

    .page-hero h1 {
        font-size: 1.52rem;
        letter-spacing: -.015em
    }

    .srch {
        max-width: 100%
    }

    .pf-img {
        height: 170px
    }

    .pf-body {
        padding: 1.05rem 1.1rem
    }

    .pf-body h2 {
        font-size: .95rem;
        line-height: 1.3
    }

    .pc-img {
        height: 148px
    }

    .pc-body h5 {
        font-size: .87rem
    }

    .pc-body p {
        font-size: .78rem
    }

    .pc-foot {
        padding-top: .6rem
    }

    .sw {
        padding: 1.05rem
    }

    .tc {
        font-size: .69rem;
        padding: .18rem .62rem
    }

    .pag {
        gap: .28rem;
        margin-top: 1.75rem
    }

    .pb {
        width: 33px;
        height: 33px;
        font-size: .78rem;
        border-radius: 7px
    }


    .art-title {
        font-size: 1.45rem;
        line-height: 1.2
    }

    .art-lead {
        font-size: .92rem;
        line-height: 1.75
    }

    .art-cover img {
        height: 185px
    }

    .art-cover {
        margin-top: 2rem
    }

    .auth-bar .container {
        flex-wrap: wrap;
        gap: .55rem;
        padding-top: .85rem;
        padding-bottom: .85rem
    }

    .art-layout {
        padding: 28px 0 52px;
        gap: 0
    }

    .a-body h2 {
        font-size: 1.15rem;
        margin: 1.85rem 0 .7rem;
        padding-bottom: .55rem
    }

    .a-body h3 {
        font-size: .97rem;
        margin: 1.5rem 0 .6rem
    }

    .a-body p,
    .a-body li {
        font-size: .89rem;
        line-height: 1.78
    }

    .callout {
        padding: .9rem 1.1rem
    }

    .a-tbl th,
    .a-tbl td {
        padding: .58rem .75rem
    }

    .comment-area {
        padding: 1.05rem;
        border-radius: var(--r-lg)
    }

    .c-inp {
        font-size: max(.87rem, 16px) !important;
        padding: .65rem .9rem !important
    }
}

@supports(padding-bottom:env(safe-area-inset-bottom)) {
    .float-bar {
        bottom: calc(12px + env(safe-area-inset-bottom))
    }

    #footer {
        padding-bottom: calc(18px + env(safe-area-inset-bottom))
    }
}

@media(prefers-reduced-motion:reduce) {
    .fu {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

    .live {
        animation: none
    }

    .trust-in {
        animation: none
    }

    * {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important
    }
}
/**********START Pagination***********/
.wp_page {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
ul.pagination>li>a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

ul.pagination {
    gap: 10px;
}
@media(max-width:767px){
	ul.pagination {
    gap: 5px;
}
	ul.pagination>li>a {
		width: 35px;
        height: 35px;
	}
}
/**********END Pagination***********/