/* --- INLINE STYLES --- */

:root {
    --navy: #003271;
    --cyan: #00b4d8;
    --dark: #1a1a2e;
    --light: #f7f8fc;
    --muted: #9aa0b8;
    --border: #e8e8f0;
    
    --navy2:#1a1a45;
    --cyan2:#0096b8;
    --cyan3:#c2eaf7;
    --white:#ffffff;
    --red:#c0392b;
    --green:#00c896;

    /* Article specific variables */
    --dz-dark: #0a0e14;
    --dz-blue: #1a8fff;
    --dz-line: rgba(0, 200, 160, 0.15);
    --dz-line2: rgba(0, 200, 160, 0.08);
    --dz-text: #c8d6e5;
    --dz-muted: #5a7a94;
    --dz-white: #eaf2fb;
    --cyan-dim: rgba(0, 200, 160, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

.error-message{
    float: right;
    height: 0;
    line-height: 10px;
    color: red;
    position: relative;
    font-size: 10px;
    margin-top: -10px;
    display: block;
}
.message {
    position: fixed;
    z-index: 8888;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s;
}

.message span {
    overflow: hidden;
    border-radius: 3px;
    display: block;
    max-width: 600px;
    border: 1px solid #999;
    color: #000;
    z-index: 9999;
    position: relative;
    padding: 20px 50px;
    transition: all 0.5s;
}

.message .exitbtn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #666;
}

.error span {
    background: #f0cece;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.success span {
    background: #d6e4b1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.showAlert{
    opacity: 1;
    top: 0;
}
.default span {
    background: #ccc;
}
/* ════════════════════════════
       TOP BAR
    ════════════════════════════ */
    
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    min-height: 72px;
    z-index: 20;
    position: relative;
}

.topbar .container-fluid {
    padding: 0 32px;
}

.lang-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--navy);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    background: transparent;
    flex-shrink: 0;
}

.lang-btn span {
    transform: rotate(-45deg);
    font-size: .65rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.lang-btn.active {
    background: var(--navy);
}

.lang-btn.active span {
    color: #fff;
}

.lang-btn:hover:not(.active) {
    border-color: var(--cyan);
}

.lang-btn:hover:not(.active) span {
    color: var(--cyan);
}

.logo-center img {
    height: 54px;
    width: auto;
}

.auth-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.auth-btn {
    padding: 7px 20px;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    border-radius: 2px;
}

.btn-login {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
}

.btn-login:hover {
    background: var(--navy);
    color: #fff;
}

.btn-register {
    background: var(--navy);
    border: 1.5px solid var(--navy);
    color: #fff;
}

.btn-register:hover {
    background: var(--cyan);
    border-color: var(--cyan);
}

/* ════════════════════════════
       NAV
    ════════════════════════════ */
.main-nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 0 16px #0008;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 20px;
}

.nav-item {
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s;
    border-bottom: 3px solid transparent;
    user-select: none;
    text-decoration: none;
    display: block;
}

.nav-item:hover,
.nav-item.active {
    color: var(--cyan);
}

.nav-sep {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 2px;
    align-self: center;
}

/* ── Hamburger button ── */
.nav-toggler {
    display: none;
    background: transparent;
    border: 1.5px solid var(--navy);
    padding: 4px 7px;
    cursor: pointer;
    border-radius: 2px;
    z-index: 1100;
    position: relative;
}

.nav-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: transform .32s ease, opacity .2s ease;
    transform-origin: center;
}

.nav-toggler.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggler.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggler.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Dark overlay ── */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 30, .55);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    backdrop-filter: blur(2px);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ── Side drawer ── */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 32px rgba(0, 0, 0, .18);
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 2px solid var(--cyan);
    background: var(--navy);
    flex-shrink: 0;
}

.drawer-header img {
    height: 38px;
    filter: brightness(0) invert(1);
}

.drawer-close {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    background: transparent;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
}

.drawer-close:hover {
    background: var(--cyan);
    border-color: var(--cyan);
}

.drawer-close span {
    transform: rotate(-45deg);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    display: block;
}

/* Drawer links */
.drawer-nav {
    flex: 1;
    padding: 8px 0;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--border);
    transition: all .2s;
}

.drawer-nav a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--navy);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: background .2s;
}

.drawer-nav a:hover,
.drawer-nav a.active {
    color: var(--cyan);
    background: rgba(0, 180, 216, .04);
    border-left-color: var(--cyan);
}

.drawer-nav a:hover::before,
.drawer-nav a.active::before {
    background: var(--cyan);
}

/* Drawer footer auth buttons */
.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.drawer-footer .auth-btn {
    flex: 1;
    text-align: center;
    padding: 9px 12px;
}

/* Hide old dropdown */
.mobile-menu {
    display: none !important;
}

/* ════════════════════════════
       CYAN LINE
    ════════════════════════════ */
.cyan-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #00b4d8 40%, #2d2d6e 60%, transparent 90%);
}

/* ════════════════════════════
       HERO CAROUSEL
    ════════════════════════════ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #fafafa;


    background-image: url(../img/bg_en.svg), url(../img/bg_en.png);
    background-position: left -100px, left -70px;
    background-repeat: no-repeat, no-repeat;

    height: 480px;
}

/* Geometric crystal bg – left side */
.hero-geo {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    opacity: .13;
    z-index: 0;
}

.owl-hero .item {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 60px 40px;
}

/* Slide inner */
.slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    width: 100%;
}

/* ── Slide animation keyframes ── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}


/* All animated slide children start invisible */
/* .slide-badge,
.slide-title,
.slide-desc,
.slide-features,
.slide-cta {
    opacity: 0;
} */

.slide-animate .slide-badge {
    animation: fadeInUp .6s ease both;
    animation-delay: .12s;
}

.slide-animate .slide-title {
    animation: fadeInUp .6s ease both;
    animation-delay: .24s;
}

.slide-animate .slide-desc {
    animation: fadeInUp .6s ease both;
    animation-delay: .36s;
}

.slide-animate .slide-features {
    animation: fadeInUp .6s ease both;
    animation-delay: .48s;
}

.slide-animate .slide-cta {
    animation: fadeInUp .6s ease both;
    animation-delay: .6s;
}

.slide-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.5s infinite;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, .1);
    border: 1px solid rgba(0, 180, 216, .3);
    color: var(--cyan);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.slide-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.slide-title span {
    color: var(--cyan);
}

.slide-desc {
    font-size: .92rem;
    color: #666680;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 28px;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.slide-feat {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}

.slide-feat::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: var(--navy);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.slide-feat.cyan::before {
    background: var(--cyan);
}

.slide-cta {
    margin-top: 22px;
}
.slide-cta button{
    margin-bottom: 10px;
}

.btn-slide {
    padding: 10px 28px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all .2s;
    border: 1.5px solid var(--navy);
    background: var(--navy);
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
}

.btn-slide:hover {
    background: var(--cyan);
    border-color: var(--cyan);
}

.btn-slide-outline {
    margin-left: 10px;
    background: transparent;
    color: var(--navy);
}

.btn-slide-outline:hover {
    background: var(--navy);
    color: #fff;
}

.owl-hero .owl-dot span {
    width: 8px;
    height: 8px;
    background: var(--border) !important;
    border-radius: 0 !important;
    transform: rotate(45deg) !important;
    transition: all .2s !important;
    margin: 4px 5px !important;
}

.owl-hero .owl-dot.active span,
.owl-hero .owl-dot:hover span {
    background: var(--navy) !important;
}

.owl-hero .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--navy) !important;
    background: rgba(255, 255, 255, .9) !important;
    border-radius: 0 !important;
    color: var(--navy) !important;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-hero .owl-nav button:hover {
    background: var(--navy) !important;
    color: #fff !important;
}

.owl-hero .owl-nav .owl-prev {
    left: 20px;
}

.owl-hero .owl-nav .owl-next {
    right: 20px;
}

.owl-hero {
    position: relative;
}
/* Base state — hidden, ready for animation */
.owl-hero .slide-inner {
    transform: translateZ(0); /* GPU layer for RTL stability */
    backface-visibility: hidden;
    will-change: opacity, transform;
}

/* Animated state */
.owl-hero .slide-inner.slide-animate {
    opacity: 1;
    animation: yourStaggeredEffect 0.6s ease forwards;
}

/* ✅ Let Owl's fadeOut work without fighting your animation */
.owl-item.fadeOut .slide-inner {
    animation: none !important;
    transition: opacity 0.6s ease;
}

/* ✅ RTL-specific: prevent transform reset flicker */
[dir="rtl"] .owl-hero .slide-inner,
.owl-hero[dir="rtl"] .slide-inner {
    transform: translate3d(0,0,0);
}
/* ════════════════════════════
       HIGHLIGHTS
    ════════════════════════════ */
.highlights {
    padding: 56px 0;
    background: #fff;
}

.section-label {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -.3px;
}

.section-title span {
    color: var(--cyan);
}

.hl-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px 24px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--navy);
    transition: background .2s;
}

.hl-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 4px 24px rgba(0, 180, 216, .1);
}

.hl-card:hover::before {
    background: var(--cyan);
}

.hl-card-tag {
    display: inline-block;
    background: #f0f0fa;
    color: var(--navy);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.hl-card-tag.cyan {
    background: rgba(0, 180, 216, .1);
    color: #0098b8;
}

.hl-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.hl-card p {
    font-size: .82rem;
    color: #666680;
    line-height: 1.75;
    margin-bottom: 14px;
}

.hl-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hl-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f7f7fc;
    border: 1px solid #e0e0ee;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: .7rem;
    color: #444460;
    font-weight: 500;
}

.hl-chip::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--navy);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ════════════════════════════
       PORTFOLIO
    ════════════════════════════ */
.portfolio-section {
    padding: 56px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.pf-filter {
    padding: 6px 20px;
    border: 1.5px solid var(--border);
    background: #fff;
    border-radius: 2px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--navy);
    cursor: pointer;
    transition: all .2s;
}

.pf-filter.active,
.pf-filter:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.port-card {
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .25s;
    cursor: pointer;
    width: calc(33.333% - 14px);
    min-width: 260px;
}

.port-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
    border-color: #c8c8e0;
}

.port-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.port-thumb img {
    height: 100%;
}
.port-thumb-re {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d6e 100%);
}

.port-thumb-es {
    background: linear-gradient(135deg, #0a2a3a 0%, #0d5577 100%);
}

.port-thumb-dev {
    background: linear-gradient(135deg, #16302b 0%, #1a5c46 100%);
}

.port-thumb-content {
    background: linear-gradient(135deg, #2a1a3e 0%, #5c2d8e 100%);
}

.port-thumb-icon {
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

.port-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 14px;
    background: rgba(0, 0, 0, .4);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.port-thumb-geo {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 80px;
    height: 80px;
    opacity: .1;
}

.port-body {
    padding: 16px 18px 18px;
}

.port-tag {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tag-re {
    color: var(--navy);
}

.tag-es {
    color: #0098b8;
}

.tag-dev {
    color: #1e7a44;
}

.tag-content {
    color: #7a28b8;
}

.port-body h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 6px;
}

.port-body p {
    font-size: .76rem;
    color: #7a7a9a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.port-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.port-tag-chip {
    background: #f7f7fc;
    border: 1px solid #e0e0ee;
    border-radius: 2px;
    padding: 3px 8px;
    font-size: .65rem;
    color: #555570;
    font-weight: 500;
}

/* ════════════════════════════
       TESTIMONIALS
    ════════════════════════════ */
.testimonials-section {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

.owl-testimonials .item {
    padding: 10px 12px;
}

.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px 24px;
    position: relative;
    transition: all .25s;
    height: 100%;
}

.testi-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .08);
    border-color: #c8c8e0;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 3.5rem;
    color: var(--cyan);
    opacity: .2;
    line-height: 1;
}

.testi-stars {
    color: #f5a623;
    font-size: .8rem;
    margin-bottom: 12px;
}

.testi-text {
    font-size: .84rem;
    color: #444460;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
    height: 200px;
    align-content: center;
    overflow: hidden;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 0;
    transform: rotate(45deg);
    overflow: hidden;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-avatar span {
    transform: rotate(-45deg);
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
}

.testi-info h5 {
    font-size: .84rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.testi-info p {
    font-size: .72rem;
    color: var(--muted);
}

.owl-testimonials .owl-dots {
    margin-top: 24px;
    text-align: center;
}

.owl-testimonials .owl-dot span {
    width: 8px;
    height: 8px;
    background: var(--border) !important;
    border-radius: 0 !important;
    transform: rotate(45deg) !important;
    transition: background .2s !important;
    margin: 4px 5px !important;
    display: inline-block;
}

.owl-testimonials .owl-dot.active span,
.owl-testimonials .owl-dot:hover span {
    background: var(--navy) !important;
}

/* ════════════════════════════
       NEWS
    ════════════════════════════ */
.news-section {
    padding: 56px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.news-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all .25s;
    cursor: pointer;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
    border-color: #c8c8e0;
}

.news-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.news-img-obj {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: var(--cyan3);
}
.news-img span, .news-img svg {
    position: relative;
    z-index: 1;
}

.news-img-re {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d6e 100%);
    color: var(--cyan);
}

.news-img-ai {
    background: linear-gradient(135deg, #0a2a3a 0%, #0d5577 100%);
    color: #7ee8ff;
}

.news-img-dev {
    background: linear-gradient(135deg, #1a2a1e 0%, #1e5c2e 100%);
    color: #7effb4;
}

.news-img span {
    position: relative;
    z-index: 1;
    font-size: .95rem;
    font-weight: 700;
}

.news-img-geo {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 70px;
    height: 70px;
    opacity: .15;
}

.news-body {
    padding: 15px 17px 18px;
}

.news-cat {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cat-re {
    color: var(--navy);
}

.cat-ai {
    color: #0098b8;
}

.cat-dev {
    color: #1e8c44;
}

.news-body h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 7px;
}

.news-body p {
    font-size: .76rem;
    color: #7a7a9a;
    line-height: 1.65;
    margin-bottom: 10px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-date {
    font-size: .68rem;
    color: #aaaacc;
}

.news-read {
    font-size: .68rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--navy);
    padding-bottom: 1px;
    cursor: pointer;
    transition: color .2s, border-color .2s;
}

.news-read:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 10px 28px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    border-radius: 2px;
    transition: all .2s;
}

.btn-ghost:hover {
    background: var(--navy);
    color: #fff;
}

/* ════════════════════════════
       FOOTER
    ════════════════════════════ */
.footer-line {
    height: 3px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--cyan) 50%, var(--navy) 100%);
}

.footer-main {
    background: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-brand p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 12px;
    max-width: 280px;
}

.footer-col h6 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: .82rem;
    color: #555570;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    padding: 14px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 14px;
    color: var(--muted);
}

.footer-copy a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    border: 1.5px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
}

.social-icon:hover {
    background: var(--navy);
    transform: rotate(45deg) scale(1.5);
}

.social-icon span {
    transform: rotate(-45deg);
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
}

.social-icon:hover span {
    color: #fff;
}
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
/* ════════════════════════════
       SECTION DIVIDER
    ════════════════════════════ */
.section-divider {
    height: 1px;
    background: var(--border);
}

/* ════════════════════════════
       LANGUAGE DROPDOWN
    ════════════════════════════ */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .dropdown-menu {
    box-shadow: 0 0 10px #0005;
    border: none;
    border-left: 3px solid var(--navy);
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 1.5px solid var(--navy);
    padding: 7px 14px 7px 10px;
    cursor: pointer;
    border-radius: 2px;
    transition: all .2s;
}

.lang-trigger:hover {
    border-color: var(--cyan);
}

.lang-trigger:hover .lang-trigger-text,
.lang-trigger:hover .lang-caret {
    color: var(--cyan);
}

.active-diamond {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--navy);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.active-diamond span {
    transform: rotate(-45deg);
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.lang-trigger:hover .active-diamond {
    background: var(--cyan);
    border-color: var(--cyan);
}

.lang-trigger-text {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--navy);
    transition: color .2s;
}

.lang-caret {
    font-size: 1rem;
    color: var(--navy);
    line-height: 1;
    transition: transform .25s, color .2s;
    display: inline-block;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2px solid var(--cyan);
    min-width: 160px;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 500;
    color: var(--dark);
    transition: background .15s, color .15s;
    border-bottom: 1px solid var(--border);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--light);
    color: var(--cyan);
}

.lang-option.active {
    color: var(--navy);
    font-weight: 700;
    background: #f0f0fa;
}

.lang-option span {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--navy);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .62rem;
    font-weight: 700;
}


/* use a wrapper trick — override span text rotation */
.lang-option .lcode {
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--navy);
    flex-shrink: 0;
}

.lang-option .lcode em {
    transform: rotate(-45deg);
    font-style: normal;
    font-size: .62rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.lang-option.active .lcode {
    background: var(--navy);
}

.lang-option.active .lcode em {
    color: #fff;
}

/* ── Drawer language section ── */
.drawer-lang-section {
    padding: 14px 20px 0;
    border-top: 1px solid var(--border);
}

.drawer-lang-section h6 {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.drawer-lang-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    height: 40px;
}

.drawer-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--navy);
    transform: rotate(45deg);
    cursor: pointer;
    transition: background .2s;
    background: transparent;
    flex-shrink: 0;
}

.drawer-lang-btn span {
    transform: rotate(-45deg);
    font-size: .65rem;
    font-weight: 700;
    color: var(--navy);
}

.drawer-lang-btn.active {
    background: var(--navy);
}

.drawer-lang-btn.active span {
    color: #fff;
}

.drawer-lang-btn:hover:not(.active) {
    border-color: var(--cyan);
}

.drawer-lang-btn:hover:not(.active) span {
    color: var(--cyan);
}

.port-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ════════════════════════════════════
   Overlay Animation for Page Content
════════════════════════════════════ */

.stage.has-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #0005;
}

/* The actual sliding panel is .stage .slide (which exists) but let's animate the whole stage wrapper if needed
   Actually the user's template has `<div class="slide pms real_estates col">` inside `.stage`. 
   Let's make sure `.slide` does the animation. */

.stage.has-content .slide {
    pointer-events: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 90%; /* or whatever the original width was */
    background-color: #000c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 0 30px #000;
}

/* Both directions slide from right to left */
.stage.has-content .slide {
    right: 0;
    border-left: 20px solid var(--cyan);
    animation: slideInFromRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

html[dir="rtl"] .stage.has-content .slide {
    border-right: 20px solid var(--cyan);
}

body.overlay-active .page_header,
body.overlay-active .hero-section,
body.overlay-active .highlights,
body.overlay-active .portfolio-section,
body.overlay-active .testimonials-section,
body.overlay-active .main-nav,
body.overlay-active .news-section {
    opacity: 0.5;
}

.stage.stage-leave .slide {
    animation: slideOutToRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

@keyframes slideInFromRight {
    0% { transform: translateX(100vw); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100vw); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToLeft {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-100vw); opacity: 0; }
}

.stage.no-content {
    display: none;
}

.closeBtn{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1100;
}









/*================ RS Page =========================*/

/* ── TYPOGRAPHY ── */
.text-cyan{color:var(--cyan)!important;}
.text-navy{color:var(--navy)!important;}
.text-muted-custom{color:var(--muted)!important;}

/* ── UTILITIES ── */
.cyan-line{height:3px;background:linear-gradient(90deg,transparent,var(--cyan) 30%,var(--navy) 70%,transparent);}
.section-label{font-size:.7rem;letter-spacing:3px;text-transform:uppercase;color:var(--muted);margin-bottom:.5rem;}
.section-sub{font-size:.95rem;color:var(--muted);line-height:1.8;margin-top:.8rem;}

/* Buttons */
.btn-primary-dz{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--navy);color:#fff;border:2px solid var(--navy);
  padding:12px 28px;border-radius:2px;
  font-size:.82rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;
  cursor:pointer;transition:all .22s;text-decoration:none;
}
.btn-primary-dz:hover{background:var(--cyan);border-color:var(--cyan);color:#fff;transform:translateY(-2px);}
.btn-outline-dz{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;color:var(--navy);border:2px solid var(--navy);
  padding:12px 28px;border-radius:2px;
  font-size:.82rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;
  cursor:pointer;transition:all .22s;text-decoration:none;
}
.btn-outline-dz:hover{background:var(--navy);color:#fff;transform:translateY(-2px);}
.btn-cyan-dz{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--cyan);color:#fff;border:2px solid var(--cyan);
  padding:12px 28px;border-radius:2px;
  font-size:.82rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;
  cursor:pointer;transition:all .22s;text-decoration:none;
}
.btn-cyan-dz:hover{background:var(--cyan2);border-color:var(--cyan2);color:#fff;transform:translateY(-2px);}
.btn-white-dz{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:var(--navy);border:2px solid #fff;
  padding:12px 28px;border-radius:2px;
  font-size:.82rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;
  cursor:pointer;transition:all .22s;text-decoration:none;
}
.btn-white-dz:hover{background:var(--cyan);color:#fff;border-color:var(--cyan);transform:translateY(-2px);}

/* Diamond bullet */
.diamond{display:inline-block;width:10px;height:10px;background:var(--navy);transform:rotate(45deg);flex-shrink:0;}
.diamond.cyan{background:var(--cyan);}
.diamond.sm{width:7px;height:7px;}

/* Feature chip */
.feat-chip{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--light);border:1px solid var(--border);
  border-radius:2px;padding:6px 14px;
  font-size:.75rem;font-weight:600;color:var(--dark);
}

/* Cards */
.dz-card{
  background:#fff;border:1px solid var(--border);border-radius:6px;
  padding:24px;transition:all .25s;position:relative;overflow:hidden;height:100%;
}
.dz-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:var(--navy);transition:background .2s;}
.dz-card:hover{border-color:var(--cyan);box-shadow:0 6px 30px rgba(0,180,216,.1);}
.dz-card:hover::before{background:var(--cyan);}

/* ── NAV ── */
.page-nav{
  background:#fff;border-bottom:2px solid var(--cyan);
  padding:14px 0;position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
}
.page-nav .nav-logo{font-size:1.2rem;font-weight:800;color:var(--dark);text-decoration:none;}
.page-nav .nav-logo span{color:var(--cyan);}
.back-link{font-size:.75rem;font-weight:600;letter-spacing:.8px;text-transform:uppercase;color:var(--muted);text-decoration:none;transition:color .2s;}
.back-link:hover{color:var(--cyan);}

/* ═══════════════════════════════════════
   1. HERO
═══════════════════════════════════════ */
.hero-geo{position:absolute;inset:0;pointer-events:none;}
.hero-geo svg{width:100%;height:100%;opacity:.12;}
.hero-glow{
  position:absolute;width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,180,216,.25) 0%,transparent 70%);
  top:-100px;right:-100px;pointer-events:none;
}
.hero-glow2{
  position:absolute;width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,180,216,.15) 0%,transparent 70%);
  bottom:50px;left:10%;pointer-events:none;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,180,216,.15);border:1px solid rgba(0,180,216,.4);
  color:var(--cyan);padding:6px 18px;border-radius:100px;
  font-size:.72rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;
  margin-bottom:1.5rem;
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--cyan);animation:blink 1.5s infinite;}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}
.hero h1{font-size:clamp(2.2rem,5vw,4rem);font-weight:800;color:#fff;line-height:1.1;margin-bottom:1.2rem;}
.hero h1 span{color:var(--cyan);}
.hero-sub{font-size:1.05rem;color:rgba(255,255,255,.75);line-height:1.85;max-width:540px;margin-bottom:2.5rem;}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap;}

/* Dashboard mockup */
.hero-mockup{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;padding:1.4rem;
  animation:floatY 4s ease-in-out infinite alternate;
}
@keyframes floatY{0%{transform:translateY(0)}100%{transform:translateY(-12px)}}
.mock-bar{display:flex;align-items:center;gap:6px;margin-bottom:1rem;}
.mock-dot{width:10px;height:10px;border-radius:50%;}
.mock-title{font-size:.72rem;color:rgba(255,255,255,.5);margin-left:auto;}
.mock-metrics{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin-bottom:1rem;}
.mock-metric{background:rgba(0,180,216,.1);border:1px solid rgba(0,180,216,.2);border-radius:8px;padding:.9rem;}
.mock-metric-label{font-size:.65rem;color:rgba(255,255,255,.5);letter-spacing:.5px;text-transform:uppercase;margin-bottom:3px;}
.mock-metric-val{font-size:1.5rem;font-weight:800;}
.mock-metric-trend{font-size:.65rem;margin-top:3px;}
.mock-ai-tag{
  display:flex;align-items:center;gap:8px;
  background:rgba(0,180,216,.08);border:1px solid rgba(0,180,216,.2);
  border-radius:6px;padding:8px 12px;font-size:.75rem;color:var(--cyan);
  margin-bottom:.8rem;
}
.mock-leads{display:flex;flex-direction:column;gap:6px;}
.mock-lead{
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:6px;padding:7px 10px;
}
.mock-avatar{width:26px;height:26px;border-radius:50%;font-size:.65rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.mock-name{flex:1;font-size:.78rem;color:#fff;}
.mock-badge{font-size:.65rem;padding:3px 8px;border-radius:100px;font-weight:600;}
.badge-new{background:rgba(0,200,150,.15);color:var(--green);}
.badge-sent{background:rgba(0,180,216,.15);color:var(--cyan);}
.badge-hot{background:rgba(255,82,82,.15);color:#ff5252;}

/* Scroll indicator */
.scroll-indicator{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;color:rgba(255,255,255,.4);
  font-size:.65rem;letter-spacing:1.5px;text-transform:uppercase;animation:bounceDown 2s infinite;
}
@keyframes bounceDown{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}
.scroll-arrow{width:10px;height:10px;border-right:2px solid rgba(255,255,255,.3);border-bottom:2px solid rgba(255,255,255,.3);transform:rotate(45deg);}

/* ═══════════════════════════════════════
   2. PROBLEM STRIP
═══════════════════════════════════════ */
.problem-strip{background:var(--navy);padding:40px 0;}
.prob-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;padding:0 20px;}
.prob-icon{font-size:2rem;margin-bottom:4px;}
.prob-label{font-size:.88rem;font-weight:700;color:#fff;letter-spacing:.3px;}
.prob-sep{width:1px;height:60px;background:rgba(255,255,255,.12);align-self:center;}

/* ═══════════════════════════════════════
   3. ECOSYSTEM MAP
═══════════════════════════════════════ */
.ecosystem{padding:80px 0;background:var(--light);}
.eco-center{
  width:110px;height:110px;border-radius:50%;
  background:var(--navy);display:flex;align-items:center;justify-content:center;
  border:3px solid var(--cyan);font-size:.75rem;
  font-weight:800;color:#fff;text-align:center;line-height:1.3;
  position:relative;z-index:2;
  box-shadow:0 0 0 12px rgba(0,180,216,.1);
}
.eco-node{
  background:#fff;border:1.5px solid var(--border);border-radius:8px;
  padding:16px 18px;text-align:center;cursor:pointer;
  transition:all .25s;position:relative;
}
.eco-node:hover,.eco-node.active{border-color:var(--cyan);box-shadow:0 4px 20px rgba(0,180,216,.15);transform:translateY(-3px);}
.eco-node:hover .eco-node-icon,.eco-node.active .eco-node-icon{background:var(--navy);color:#fff;}
.eco-node-icon{
  width:44px;height:44px;border-radius:50%;background:var(--light);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;margin:0 auto .6rem;transition:all .2s;
}
.eco-node-title{font-size:.78rem;font-weight:700;color:var(--dark);}
.eco-node-sub{white-space: nowrap;font-size:.65rem;color:var(--muted);margin-top:3px;}
.eco-detail{
  background:#fff;border:1px solid var(--border);border-radius:8px;padding:28px 30px;
  border-left:4px solid var(--cyan);min-height:160px;
  transition:all .3s;
}
.eco-detail h4{font-size:1.1rem;font-weight:800;color:var(--navy);margin-bottom:.8rem;}
.eco-detail p{font-size:.88rem;color:var(--muted);line-height:1.75;}
.eco-chips{display:flex;flex-wrap:wrap;gap:6px;margin-top:1rem;}

/* ═══════════════════════════════════════
   4. CRM DEEP DIVE
═══════════════════════════════════════ */
.crm-section{padding:80px 0;background:#fff;}
.flow-step{
  display:flex;align-items:flex-start;gap:18px;
  padding:18px 20px;background:var(--light);border-radius:6px;
  border-left:3px solid var(--border);transition:all .25s;
  margin-bottom:.6rem;
}
.flow-step:hover{border-left-color:var(--cyan);background:#fff;box-shadow:0 3px 16px rgba(0,0,0,.06);}
.flow-num{
  width:36px;height:36px;border-radius:50%;background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-size:.82rem;font-weight:800;color:#fff;flex-shrink:0;
}
.flow-step:hover .flow-num{background:var(--cyan);}
.flow-step-title{font-size:.9rem;font-weight:700;color:var(--dark);margin-bottom:3px;}
.flow-step-sub{font-size:.78rem;color:var(--muted);line-height:1.6;}
.flow-connector{width:2px;height:14px;background:var(--border);margin-left:36px;}
.timing-badge{
  background:rgba(0,200,150,.1);border:1px solid rgba(0,200,150,.3);
  color:var(--green);font-size:.65rem;font-weight:700;letter-spacing:1px;
  padding:3px 10px;border-radius:100px;margin-left:auto;flex-shrink:0;
}

/* Whatsapp mockup */
.wa-mockup{
  background:#e5ddd5;border-radius:12px;overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.12);
}
.wa-header{background:#075e54;padding:12px 16px;display:flex;align-items:center;gap:10px;}
.wa-avatar{width:36px;height:36px;border-radius:50%;background:var(--cyan);display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:700;color:#fff;}
.wa-info h5{font-size:.82rem;font-weight:700;color:#fff;margin:0;}
.wa-info p{font-size:.65rem;color:rgba(255,255,255,.7);margin:0;}
.wa-body{padding:14px 12px;display:flex;flex-direction:column;gap:8px;min-height:280px;}
.wa-msg{max-width:80%;padding:8px 12px;border-radius:8px;font-size:.75rem;line-height:1.5;}
.wa-msg-in{background:#fff;align-self:flex-start;border-radius:0 8px 8px 8px;color:var(--dark);}
.wa-msg-out{background:#dcf8c6;align-self:flex-end;border-radius:8px 0 8px 8px;color:#333;}
.wa-msg-time{font-size:.6rem;color:var(--muted);margin-top:3px;text-align:right;}
.wa-msg img{max-width: 100%;}
.wa-ai-label{font-size:.6rem;letter-spacing:1px;text-transform:uppercase;color:var(--cyan);font-weight:700;margin-bottom:2px;}

/* ═══════════════════════════════════════
   5. PORTFOLIO AI
═══════════════════════════════════════ */
.portfolio-section{padding:80px 0;background:var(--light);}
.prop-before,.prop-after{
  background:#fff;border:1px solid var(--border);border-radius:8px;padding:20px;
}
.prop-before{border-top:4px solid #e0e0e0;}
.prop-after{border-top:4px solid var(--cyan);}
.prop-tag{font-size:.65rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:.8rem;}
.prop-tag.before{color:var(--muted);}
.prop-tag.after{color:var(--cyan);}
.prop-raw{font-size:.8rem;color:#aaa;line-height:1.7;}
.prop-ai{font-size:.85rem;color:var(--dark);line-height:1.8;}
.lang-flags{display:flex;flex-wrap:wrap;gap:8px;margin-top:1rem;}
.lang-flag{
  display:flex;align-items:center;gap:6px;
  background:#fff;border:1px solid var(--border);border-radius:4px;
  padding:5px 12px;font-size:.75rem;font-weight:600;color:var(--dark);
}

/* ═══════════════════════════════════════
   6. SEO WEBSITE
═══════════════════════════════════════ */
.seo-section{padding:80px 0;background:#fff;}
.score-ring{
  width:90px;height:90px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-direction:column;
  border:6px solid var(--cyan);margin:0 auto .8rem;
}
.score-val{font-size:1.5rem;font-weight:800;color:var(--navy);line-height:1;}
.score-lbl{font-size:.6rem;color:var(--muted);text-transform:uppercase;letter-spacing:.5px;}
.chatbot-mockup{
  background:var(--light);border:1px solid var(--border);border-radius:10px;overflow:hidden;
  box-shadow:0 8px 32px rgba(0,0,0,.08);
}
.chat-header{background:var(--navy);padding:12px 16px;display:flex;align-items:center;gap:10px;}
.chat-header-title{font-size:.82rem;font-weight:700;color:#fff;}
.chat-header-sub{font-size:.65rem;color:var(--cyan);}
.chat-body{padding:14px;display:flex;flex-direction:column;gap:8px;min-height:220px;background:#fff;}
.chat-msg{max-width:82%;padding:9px 13px;border-radius:8px;font-size:.78rem;line-height:1.5;}
.chat-bot{background:var(--light);border:1px solid var(--border);align-self:flex-start;border-radius:0 8px 8px 8px;color:var(--dark);}
.chat-user{background:var(--navy);color:#fff;align-self:flex-end;border-radius:8px 0 8px 8px;}
.chat-typing{display:flex;align-items:center;gap:4px;padding:8px 12px;background:var(--light);border-radius:0 8px 8px 8px;align-self:flex-start;}
.typing-dot{width:6px;height:6px;border-radius:50%;background:var(--muted);animation:typingBounce .8s infinite;}
.typing-dot:nth-child(2){animation-delay:.15s;}
.typing-dot:nth-child(3){animation-delay:.3s;}
@keyframes typingBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}

/* ═══════════════════════════════════════
   7. CONTENT AUTOMATION
═══════════════════════════════════════ */
.content-section{padding:80px 0;background:var(--light);}
.content-calendar{background:#fff;border:1px solid var(--border);border-radius:8px;overflow:hidden;}
.cal-header{background:var(--navy);padding:12px 18px;display:flex;align-items:center;justify-content:space-between;}
.cal-header-title{font-size:.82rem;font-weight:700;color:#fff;}
.cal-header-sub{font-size:.65rem;color:var(--cyan);}
.cal-grid{display:grid;grid-template-columns:repeat(7,1fr);}
.cal-day-header{padding:8px;text-align:center;font-size:.65rem;font-weight:700;color:var(--muted);text-transform:uppercase;border-bottom:1px solid var(--border);}
.cal-slot{
  border-right:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:6px;min-height:70px;font-size:.65rem;
}
.cal-slot:nth-child(7n){border-right:none;}
.cal-post{border-radius:3px;padding:3px 6px;margin-bottom:3px;font-size:.62rem;font-weight:600;}
.cal-post.insta{background:rgba(225,48,108,.1);color:#e1306c;}
.cal-post.fb{background:rgba(24,119,242,.1);color:#1877f2;}
.cal-post.li{background:rgba(0,119,181,.1);color:#0077b5;}
.cal-post.blog{background:rgba(45,45,110,.1);color:var(--navy);}
.cal-post.yt{background:rgba(255,0,0,.1);color:#ff0000;}
.channel-row{display:flex;align-items:center;gap:12px;padding:12px 16px;border-bottom:1px solid var(--border);}
.channel-row:last-child{border-bottom:none;}
.channel-icon{width:32px;height:32px;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:.85rem;flex-shrink:0;}
.channel-name{font-size:.82rem;font-weight:600;color:var(--dark);flex:1;}
.channel-status{font-size:.68rem;padding:3px 10px;border-radius:100px;font-weight:600;}
.status-active{background:rgba(0,200,150,.1);color:var(--green);}

/* ═══════════════════════════════════════
   8. HOSTING
═══════════════════════════════════════ */
.hosting-section{padding:80px 0;background:#fff;}
.trust-badge{
  display:flex;align-items:center;gap:12px;
  background:var(--light);border:1px solid var(--border);border-radius:6px;
  padding:16px 18px;transition:all .2s;
}
.trust-badge:hover{border-color:var(--cyan);box-shadow:0 3px 16px rgba(0,180,216,.1);}
.trust-badge-icon{font-size:1.6rem;}
.trust-badge-title{font-size:.85rem;font-weight:700;color:var(--dark);}
.trust-badge-sub{font-size:.72rem;color:var(--muted);}
.uptime-bar{height:8px;background:var(--border);border-radius:4px;overflow:hidden;margin-top:8px;}
.uptime-fill{height:100%;background:var(--green);border-radius:4px;width:99.9%;}
.server-visual{
  background:var(--navy2);border-radius:10px;padding:24px;
  border:1px solid rgba(255,255,255,.1);
}
.server-rack{display:flex;flex-direction:column;gap:6px;}
.server-unit{
  height:24px;background:rgba(255,255,255,.06);border-radius:3px;
  border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;padding:0 10px;gap:6px;
}
.server-led{width:6px;height:6px;border-radius:50%;background:var(--green);animation:ledPulse 2s infinite;}
.server-led.yellow{background:#f5a623;animation-delay:.5s;}
@keyframes ledPulse{0%,100%{opacity:1}50%{opacity:.4}}
.server-label{font-size:.62rem;color:rgba(255,255,255,.5);}

/* ═══════════════════════════════════════
   9. AUTOPILOT JOURNEY
═══════════════════════════════════════ */
.journey-section{padding:80px 0;background:var(--navy2);position:relative;overflow:hidden;}
.journey-section::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:radial-gradient(ellipse at 70% 50%,rgba(0,180,216,.08) 0%,transparent 60%);
  pointer-events:none;
}
.journey-step{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  position:relative;
}
.journey-step-icon{
  width:60px;height:60px;border-radius:50%;
  background:rgba(255,255,255,.06);border:2px solid rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;font-size:1.4rem;
  margin-bottom:.8rem;transition:all .25s;position:relative;z-index:1;
}
.journey-step:hover .journey-step-icon{background:rgba(0,180,216,.2);border-color:var(--cyan);}
.journey-step-title{font-size:.78rem;font-weight:700;color:#fff;margin-bottom:4px;}
.journey-step-module{font-size:.65rem;color:var(--cyan);letter-spacing:.5px;}
.journey-arrow{
  position:absolute;top:28px;right:-20px;
  color:rgba(0,180,216,.5);font-size:1.2rem;z-index:2;
  display:none;
}
.journey-connector{
  flex:1;height:2px;background:linear-gradient(90deg,rgba(0,180,216,.3),rgba(0,180,216,.1));
  margin:0 8px;align-self:flex-start;margin-top:28px;
}

/* ═══════════════════════════════════════
   10. RESULTS
═══════════════════════════════════════ */
.results-section{padding:80px 0;background:var(--light);}
.result-card{
  background:#fff;border:1px solid var(--border);border-radius:8px;
  padding:28px 20px;text-align:center;transition:all .25s;
}
.result-card:hover{transform:translateY(-4px);border-color:var(--cyan);box-shadow:0 8px 30px rgba(0,180,216,.12);}
.result-num{font-size:2.6rem;font-weight:800;color:var(--navy);line-height:1;}
.result-num span{color:var(--cyan);}
.result-label{font-size:.82rem;font-weight:600;color:var(--dark);margin-top:.5rem;}
.result-sub{font-size:.72rem;color:var(--muted);margin-top:.3rem;line-height:1.5;}

/* ═══════════════════════════════════════
   12. MARKETS
═══════════════════════════════════════ */
.markets-section{padding:80px 0;background:var(--light);}
.market-card{
  background:#fff;border:1px solid var(--border);border-radius:8px;
  padding:24px;text-align:center;transition:all .25s;height:100%;
}
.market-card:hover{transform:translateY(-4px);border-color:var(--cyan);box-shadow:0 6px 24px rgba(0,180,216,.1);}
.market-flag{font-size:2.4rem;margin-bottom:.8rem;}
.market-name{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.5rem;}
.market-langs{display:flex;flex-wrap:wrap;gap:4px;justify-content:center;margin-top:.8rem;}
.lang-chip{background:rgba(0,180,216,.08);border:1px solid rgba(0,180,216,.2);color:var(--navy);font-size:.65rem;font-weight:700;padding:3px 8px;border-radius:100px;}

/* ═══════════════════════════════════════
   13. PRICING
═══════════════════════════════════════ */
.pricing-section{padding:80px 0;background:#fff;}
.price-card{
  background:#fff;border:1.5px solid var(--border);border-radius:10px;
  padding:32px 26px;transition:all .25s;height:100%;position:relative;overflow:hidden;
}
.price-card:hover{transform:translateY(-5px);box-shadow:0 12px 40px rgba(0,0,0,.1);}
.price-card.featured{border-color:var(--navy);background:var(--navy2);}
.price-card.featured .price-name{color:rgba(255,255,255,.7);}
.price-card.featured .price-val{color:#fff;}
.price-card.featured .price-desc{color:rgba(255,255,255,.6);}
.price-card.featured .price-feat-item{color:rgba(255,255,255,.85);}
.price-popular-tag{
  position:absolute;top:0;right:0;
  background:var(--cyan);color:#fff;
  font-size:.65rem;font-weight:700;letter-spacing:.5px;
  padding:6px 16px;border-radius:0 10px 0 10px;
}
.price-name{font-size:.72rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:.8rem;}
.price-val{font-size:2rem;font-weight:800;color:var(--navy);}
.price-val-sub{font-size:.82rem;font-weight:400;color:var(--muted);}
.price-desc{font-size:.82rem;color:var(--muted);margin:1rem 0 1.5rem;line-height:1.65;}
.price-divider{height:1px;background:var(--border);margin-bottom:1.2rem;}
.price-card.featured .price-divider{background:rgba(255,255,255,.1);}
.price-feat-list{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.8rem;}
.price-feat-item{display:flex;align-items:center;gap:10px;font-size:.82rem;color:var(--dark);}
.feat-check{color:var(--green);font-weight:700;flex-shrink:0;}

/* ═══════════════════════════════════════
   14. FAQ
═══════════════════════════════════════ */
.faq-section{padding:80px 0;background:var(--light);}
.faq-item{
  background:#fff;border:1px solid var(--border);border-radius:6px;
  margin-bottom:.6rem;overflow:hidden;transition:border-color .2s;
}
.faq-item.open{border-color:var(--cyan);}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 22px;cursor:pointer;font-size:.9rem;font-weight:600;color:var(--dark);
  transition:color .2s;
}
.faq-q:hover{color:var(--cyan);}
.faq-item.open .faq-q{color:var(--cyan);}
.faq-icon{
  width:26px;height:26px;border:1.5px solid var(--border);
  transform:rotate(45deg);display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:all .25s;
}
.faq-item.open .faq-icon{background:var(--cyan);border-color:var(--cyan);}
.faq-icon span{transform:rotate(-45deg);font-size:1rem;color:var(--navy);line-height:1;}
.faq-item.open .faq-icon span{color:#fff;}
.faq-a{
  display:none;padding:0 22px 18px;font-size:.85rem;color:var(--muted);line-height:1.8;
  border-top:1px solid var(--border);padding-top:14px;
}
.faq-item.open .faq-a{display:block;}

/* ═══════════════════════════════════════
   15. FINAL CTA
═══════════════════════════════════════ */
.final-cta{
  padding:100px 0;background:var(--navy2);position:relative;overflow:hidden;text-align:center;
}
.final-cta::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 100%,rgba(0,180,216,.12) 0%,transparent 60%);
}
.final-cta h2{font-size:clamp(2rem,4vw,3.2rem);font-weight:800;color:#fff;line-height:1.2;margin-bottom:1rem;}
.final-cta h2 span{color:var(--cyan);}
.final-cta p{font-size:1.05rem;color:rgba(255,255,255,.7);max-width:560px;margin:0 auto 2.5rem;line-height:1.8;}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* WhatsApp floating */
.wa-float{
  position:fixed;bottom:28px;right:28px;z-index:9999;
  width:54px;height:54px;border-radius:50%;background:#25d366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(0,0,0,.25);cursor:pointer;
  transition:transform .2s;text-decoration:none;font-size:1.5rem;
}
.wa-float:hover{transform:scale(1.1);}

/* ── FOOTER MINI ── */
.footer-mini{
  background:var(--dark);padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
}
.footer-mini p{font-size:.72rem;color:rgba(255,255,255,.4);}
.footer-mini a{color:var(--cyan);text-decoration:none;font-size:.72rem;}

/* ── SCROLL REVEAL ── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

/* --- Extracted from real_estates.php --- */

.hero-container {
    z-index: 2;
}

.btn-outline-glow {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.hero-stat-item {
    border-left: 2px solid var(--cyan);
    padding-left: 12px;
}

.hero-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: .68rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #febc2e; }
.mock-dot-green { background: #28c840; }

.mock-metric-val-cyan { color: var(--cyan); }
.mock-metric-val-green { color: var(--green); }
.mock-metric-trend-green { color: var(--green); }

.mock-avatar-cyan { background: rgba(0, 180, 216, .2); color: var(--cyan); }
.mock-avatar-green { background: rgba(0, 200, 150, .2); color: var(--green); }
.mock-avatar-red { background: rgba(255, 82, 82, .2); color: #ff5252; }

.problem-strip-label { color: rgba(255, 255, 255, .4); }
.prob-item-sub { font-size: .72rem; color: rgba(255, 255, 255, .4); margin-top: 3px; }

.section-sub-centered { max-width: 520px; margin: 0 auto; }

.portfolio-card-padding { padding: 16px 20px; }
.portfolio-card-title { font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.portfolio-card-desc { font-size: .78rem; color: var(--muted); }

.lang-flag-label { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }

.ai-human-sep { font-size: 1.5rem; }
.ai-human-sep-label { font-size: .75rem; color: var(--cyan); font-weight: 700; letter-spacing: 1px; }

.section-sub-narrow { max-width: 500px; margin: 0 auto; }

.score-ring-navy { border-color: var(--navy); }
.score-ring-green { border-color: var(--green); }
.score-val-green { color: var(--green); }

.score-lbl-navy { text-align: center; font-size: .72rem; font-weight: 600; color: var(--navy); }

.feat-item-text { font-size: .78rem; }

.chat-bot-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: #fff; flex-shrink: 0; }

.content-channel-card-top { background: #fff; border-radius: 8px 8px 0 0; border: 1px solid var(--border); }
.content-channel-card-mid { background: #fff; border: 1px solid var(--border); border-top: none; }
.content-channel-card-bottom { background: #fff; border: 1px solid var(--border); border-top: none; border-radius: 0 0 8px 8px; }

.channel-icon-insta { background: linear-gradient(135deg, #e1306c, #833ab4); }
.channel-icon-fb { background: #1877f2; }
.channel-icon-li { background: #0077b5; }
.channel-icon-yt { background: #ff0000; }
.channel-icon-blog { background: var(--navy); }

.stat-group-label { font-size: .65rem; color: rgba(255, 255, 255, .4); text-transform: uppercase; letter-spacing: .5px; }

.journey-strip-label { color: rgba(255, 255, 255, .4); }
.journey-strip-title { color: #fff; }
.journey-strip-sub { color: rgba(255, 255, 255, .6); max-width: 480px; margin: 0 auto; }

.price-card-popular-sub { color: rgba(255, 255, 255, .5); }

.final-cta-container { z-index: 1; }
.footer-note { margin-top: 2rem; font-size: .8rem; color: rgba(255, 255, 255, .4); }

.market-cities {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .75rem;
}

.server-status-label {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1rem;
}

.modal-content{
    background: #0096b8ee;
    color: var(--navy);
    border-radius: 40px;
    padding: 30px;
    
    background: url(../img/modalbg8.webp) no-repeat center center;
    background-size: cover;
}
.modal-header .close{
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 10px;
    line-height: 14px;
    font-size: 26px;
    color: #0005;
}

.inline_div .inline_input1 {  
    float: right;
    width: 100%;
    margin-bottom: 8px;
    padding-left: 130px;
}

.inline_div .inline_input2 {  
    float: left;
    width: 130px;
    display: flex;
    align-items: center;
    padding: 4px;
    position: absolute;
    justify-content: space-between;
}

.inline_div .inline_input2 .countryImg {
    float: left;
    width: 50px;
    height: 30px;
    border-radius: 3px;
}

.inline_div .inline_input2 .zip {
    padding: 0 4px;
    direction: ltr;
}

.countriesList {
    background: #eeee;
    max-height: 350px;
    overflow-y: auto;
    max-width: 100%;
    width: 300px;
}
.countriesList ul {
    padding-left: 0;
}
.countriesList .dropdown-item {
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.countriesList img {
    width: 30px;
    margin: 10px;
}
.form-control{
    border-color: #aaa;
}
.form_side{
    padding: 50px 20px;
    font-size: 26px;
    font-weight: bold;
}
.contact-us-page{  
    background: url(../img/contactus3.webp) no-repeat 100% 100%;
    background-size: auto;
    margin: auto;
    padding: 100px 20%;
    background-size: cover;
}








/* ════════════════════════════
       RESPONSIVE
    ════════════════════════════ */
    
/* ── RESPONSIVE ── */

@media (max-width:991px) {
    .nav-inner {
        display: none !important;
    }

    .nav-toggler {
        display: block;
    }

    .main-nav>.container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .nav-brand-mobile img {
        height: 40px;
    }
}

@media (max-width:767px) {
    .hero-section {
        background-position: -400px -33px, -400px 0px;
        height: auto;
    }
    .owl-hero .owl-nav .owl-prev{
        left: -10px;
    }
    .owl-hero .owl-nav .owl-next{
        right: -10px;
    }
    .topbar .container-fluid {
        padding: 0 16px;
    }

    .lang-group {
        gap: 5px;
    }

    .lang-btn {
        width: 28px;
        height: 28px;
    }

    .auth-btn {
        padding: 6px 12px;
        font-size: .65rem;
    }

    .logo-center img {
        height: 42px;
    }

    .owl-hero .item {
        padding: 40px 20px;
        min-height: 400px;
    }

    .slide-title {
        font-size: 1.4rem;
    }

    .port-card {
        width: 100%;
        min-width: 0;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width:480px) {
    .slide-features {
        gap: 7px;
    }

    .slide-feat {
        font-size: .68rem;
        padding: 5px 10px;
    }

    .auth-group {
        gap: 6px;
    }
}

/* ════════════════════════════
    ARTICLES PAGE STYLES
════════════════════════════ */


/* PAGE HEADER */
.page-header {
    padding: 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dz-line);
}

.page-header .tri-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-header .tri-bg svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

.ph-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.ph-label {
    
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--cyan);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.ph-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.ph-title {
    
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--cyan);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.ph-sub {
    font-size: 1rem;
    color: var(--dz-muted);
    max-width: 500px;
    font-weight: 300;
}

/* FILTER TABS */
.filter-bar {
    background: var(--navy);
    border-bottom: 1px solid var(--dz-line);
    padding: 0 4rem;
    position: sticky;
    top: 48px;
    z-index: 9;
    box-shadow: 0 0 16px #0008;
}

.filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
    display: none;
}

.ftab {
    
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dz-muted);
    padding: 18px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.ftab:hover {
    color: var(--dz-white);
}

.ftab.active {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

/* MAIN CONTENT */
.news-layout {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* FEATURED ARTICLE */
.featured {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    margin-bottom: 3rem;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transition: border-color 0.3s;
}

.featured:hover {
    border-color: rgba(0, 200, 160, 0.4);
}

.featured-img {
    background: linear-gradient(135deg, rgba(0, 200, 160, 0.15), rgba(26, 143, 255, 0.12));
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img svg {
    width: 120px;
    height: 120px;
    opacity: 0.4;
    color: var(--cyan);
}

.featured-img .cat-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
}

.featured-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.cat-badge {
    display: inline-block;
    
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: var(--cyan-dim);
    color: var(--cyan);
    border: 1px solid rgba(0, 200, 160, 0.3);
    margin-bottom: 1rem;
}

.cat-badge.blue {
    background: rgba(26, 143, 255, 0.1);
    color: var(--cyan);
    border-color: rgba(26, 143, 255, 0.3);
}

.cat-badge.gold {
    background: rgba(255, 180, 0, 0.08);
    color: #ffb400;
    border-color: rgba(255, 180, 0, 0.25);
}

.article-title {
    
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dz-white);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.article-title:hover {
    color: var(--cyan);
}

.article-excerpt {
    font-size: 0.92rem;
    color: var(--dz-text);
    font-weight: 300;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--dz-muted);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--dz-line);
}

.meta-dot {
    width: 3px;
    height: 3px;
    background: var(--dz-muted);
    border-radius: 50%;
}

.read-more {
    
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 14px;
}

.read-more::after {
    content: '→';
}

/* ARTICLE CARDS */
.article-card, .related-card {
    border: 1px solid var(--dz-line);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    transition: transform 0.3s, border-color 0.3s;
    text-decoration: none;
}

.article-card {
    background: var(--navy);
    padding: 1.8rem 1.5rem;
}

.article-card:hover, .related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 200, 160, 0.4);
}

.article-card .article-title {
    font-size: 1.15rem;
}

.article-card .article-excerpt {
    font-size: 0.87rem;
}

/* SIDEBAR BLOCKS */
.sidebar-block, .sb-block {
    background: var(--dz-white);
    border: 1px solid var(--dz-line);
    margin-bottom: 2rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.sb-header, .sb-hdr {
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--dz-line);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
}

.sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sb-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sb-tag, .tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid var(--dz-line);
    color: var(--dz-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
}

.sb-tag:hover, .tag:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.sb-recent-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 200, 160, 0.07);
}

.sb-recent-item:last-child {
    border-bottom: none;
}

.sb-recent-num {
    
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(0, 200, 160, 0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
}

.sb-recent-text h5 {
    
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dz-text);
    margin-bottom: 0.3rem;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.2s;
}

.sb-recent-text h5:hover {
    color: var(--cyan);
}

.sb-recent-text span {
    font-size: 0.78rem;
    color: var(--dz-muted);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form input {
    background: var(--dz-dark);
    border: 1px solid var(--dz-line);
    color: var(--dz-white);
    padding: 10px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--cyan);
}

.newsletter-form input::placeholder {
    color: var(--dz-muted);
}

.btn-teal {
    
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--cyan);
    color: #0a0e14;
    padding: 11px 20px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-teal:hover {
    opacity: 0.85;
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.pg-btn {
    
    font-size: 14px;
    font-weight: 700;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dz-line);
    color: var(--dz-muted);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pg-btn:hover,
.pg-btn.active {
    border-color: var(--cyan);
    color: var(--cyan);
}

.pg-btn.active {
    background: var(--cyan-dim);
}


















/*================ Article->View Page =========================*/


/* ── ARTICLE HERO ── */
.article-hero {
    padding-top: 64px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, #061020 0%, #0a0e14 60%, #061820 100%);
}

.hero-bg svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, var(--dz-dark) 0%, transparent 60%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 4rem 56px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dz-muted);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--dz-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb span {
    color: rgba(0, 200, 160, 0.3);
}

.article-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 14px;
    background: var(--cyan-dim);
    color: var(--cyan);
    border: 1px solid rgba(0, 200, 160, 0.3);
    margin-bottom: 1.4rem;
}

.article-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: var(--dz-white);
    line-height: 1.05;
    max-width: 820px;
    margin-bottom: 1.8rem;
    letter-spacing: 0.02em;
}

.article-hero-title em {
    color: var(--cyan);
    font-style: normal;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.byline-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cyan-dim);
    border: 1.5px solid rgba(0, 200, 160, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
}

.byline-info {
    display: flex;
    flex-direction: column;
}

.byline-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dz-white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.byline-meta {
    font-size: 0.8rem;
    color: var(--dz-muted);
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.byline-dot {
    width: 3px;
    height: 3px;
    background: var(--dz-muted);
    border-radius: 50%;
}

.hero-share {
    margin-left: auto;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--dz-line);
    background: none;
    color: var(--dz-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ── PROGRESS BAR ── */
#read-progress {
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    z-index: 99;
    height: 4px;
    background: transparent;
}

#read-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--dz-blue));
    transition: width 0.1s linear;
}

/* ── MAIN LAYOUT ── */
.article-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 4rem 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 5rem;
    align-items: start;
}

/* ── ARTICLE BODY ── */
.article-body {
    min-width: 0;
}

/* Feature image */
.article-feature-img {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, #0d1a2a 0%, #061018 100%);
    border: 1px solid var(--dz-line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.article-feature-img svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(to top, rgba(10, 14, 20, 0.9), transparent);
    font-size: 0.78rem;
    color: var(--dz-muted);
    font-style: italic;
}

/* Prose */
.prose {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--dz-text);
}

.prose p {
    margin-bottom: 1.6rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dz-white);
    line-height: 1.15;
    margin: 2.8rem 0 1.2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--cyan);
    letter-spacing: 0.03em;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dz-white);
    margin: 2rem 0 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.prose strong {
    color: var(--dz-white);
    font-weight: 500;
}

.prose a {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 200, 160, 0.3);
    transition: border-color 0.2s;
}

.prose a:hover {
    border-color: var(--cyan);
}

/* Pull quote */
.pull-quote {
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 2.5rem;
    border-left: 3px solid var(--cyan);
    background: var(--navy);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0, 200, 160, 0.15);
    line-height: 1;
}

.pull-quote p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dz-white);
    font-style: italic;
    margin-bottom: 0.8rem !important;
}

.pull-quote cite {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    font-style: normal;
}

/* Inline image / visual */
.article-visual {
    margin: 2.5rem 0;
    background: var(--navy);
    border: 1px solid var(--dz-line);
    padding: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    overflow: hidden;
}

.article-visual svg {
    display: block;
    width: 100%;
}

.visual-caption {
    padding: 0.8rem 1.2rem;
    font-size: 0.78rem;
    color: var(--dz-muted);
    font-style: italic;
    border-top: 1px solid var(--dz-line2);
}

/* Feature list */
.feature-list {
    margin: 1.5rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--navy);
    border: 1px solid var(--dz-line2);
    padding: 0.9rem 1rem;
}

.fi-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--cyan);
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--dz-text);
    font-weight: 400;
    line-height: 1.5;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dz-line);
    border: 1px solid var(--dz-line);
    margin: 2.5rem 0;
}

.stat-cell {
    background: var(--navy2);
    padding: 1.5rem;
    text-align: center;
}

.stat-cell .sv {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.stat-cell .sl {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dz-muted);
    margin-top: 4px;
}

/* Code block */
.code-block {
    margin: 2rem 0;
    background: #060a10;
    border: 1px solid rgba(0, 200, 160, 0.12);
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #7dcfb0;
    line-height: 1.7;
    overflow-x: auto;
}

.code-block .cm {
    color: #3d5c6e;
}

.code-block .ck {
    color: #569cd6;
}

.code-block .cv {
    color: var(--cyan);
}

.code-block .cs {
    color: #ce9178;
}

/* Article tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dz-line);
}

.tag-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dz-muted);
    margin-right: 0.5rem;
}


/* Author card */
.author-card {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cyan-dim);
    border: 2px solid rgba(0, 200, 160, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dz-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.author-info .role {
    font-size: 0.78rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
}

.author-info p {
    font-size: 0.87rem;
    color: var(--dz-muted);
    line-height: 1.6;
}

/* TOC */
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0
}

.toc-list li {
    border-bottom: 1px solid var(--dz-line2);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 8px 20px;
    font-size: 0.84rem;
    color: var(--dz-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.toc-list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border: 1px solid var(--dz-muted);
    transform: rotate(45deg);
    transition: background 0.2s, border-color 0.2s;
}

.toc-list a:hover {
    color: var(--cyan);
}

.toc-list a:hover::before {
    background: var(--cyan);
    border-color: var(--cyan);
}

.toc-list a.active {
    color: white;
    background: var(--navy);
}

.toc-list a.active::before {
    background: var(--cyan);
    border-color: var(--cyan);
}

/* Related articles */
.related-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--dz-line2);
    text-decoration: none;
}

.related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ri-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 200, 160, 0.12), rgba(26, 143, 255, 0.1));
    border: 1px solid var(--dz-line2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.ri-text h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dz-text);
    line-height: 1.3;
    margin-bottom: 0.2rem;
    transition: color 0.2s;
}

.related-item:hover .ri-text h5 {
    color: var(--cyan);
}

.ri-text span {
    font-size: 0.74rem;
    color: var(--dz-muted);
}

/* Newsletter */
.sb-newsletter input[type="email"] {
    width: 100%;
    background: var(--dz-dark);
    border: 1px solid var(--dz-line);
    color: var(--dz-white);
    padding: 9px 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.87rem;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 0.6rem;
}

.sb-newsletter input::placeholder {
    color: var(--dz-muted);
}

.sb-newsletter input:focus {
    border-color: var(--cyan);
}

.btn-teal {
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--cyan);
    color: #0a0e14;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-teal:hover {
    opacity: 0.85;
}

.sb-newsletter p {
    font-size: 0.8rem;
    color: var(--dz-muted);
    margin-bottom: 0.8rem;
}

/* ── RELATED ARTICLES SECTION ── */
.related-section {
    background: var(--navy);
    border-top: 1px solid var(--dz-line);
    padding: 60px 4rem;
}

.related-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--cyan);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    background: var(--dz-dark);
    display: flex;
    flex-direction: column;
}

.rc-visual {
    height: 140px;
    position: relative;
    background: linear-gradient(135deg, #0d1a2a, #060d14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 200, 160, 0.3);
}

.rc-body {
    padding: 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.rc-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.rc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dz-white);
    line-height: 1.25;
    flex: 1;
    margin-bottom: 0.8rem;
}

.rc-meta {
    font-size: 0.78rem;
    color: var(--dz-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .news-layout {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .filter-bar {
        padding: 0 1.5rem;
    }
    .article-layout {
        grid-template-columns: 1fr;
        padding: 40px 2rem 60px;
        gap: 3rem;
    }
    .sidebar {
        position: static;
    }
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
    .related-section {
        padding: 50px 2rem;
    }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-mockup { display: none; }
    .prob-sep { display: none; }
    .journey-connector { display: none; }
    .final-cta { padding: 60px 0; }
    .form_side { padding: 10px; font-size: 16px; }
    .modal-content { padding: 10px; }
    .page-header { padding: 90px 1.5rem 40px; }
    .filter-bar { top: 56px; }
    .hero-inner { padding: 40px 1.5rem 40px; }
    .article-layout { padding: 32px 1.5rem 50px; }
    .feature-list { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .related-section { padding: 40px 1.5rem; }
}[line_break][line_break]













/*================ Portfolio Page =========================*/
:root {
    --dz-text: #bedbfbff;
}

/* PAGE HEADER */
.page-header {
    padding: 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dz-line);
}

.tri-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.tri-bg svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ph-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--cyan);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.ph-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    color: var(--muted);
    line-height: 1.05;
}

.ph-title span {
    color: var(--cyan);
}

.ph-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    font-weight: 300;
    margin-top: 1rem;
}

.ph-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.ph-stat .n {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.ph-stat .l {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 4px;
}

/* FILTER */
.filter-strip {
    background: var(--navy);
    border-bottom: 1px solid var(--dz-line);
    padding: 0 4rem;
    position: sticky;
    top: 48px;
    z-index: 9;
    box-shadow: 0 0 16px #0008;
}

.filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
    display: none;
}

.ftab {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 18px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.ftab:hover {
    color: var(--muted);
}

.ftab.active {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

/* PORTFOLIO GRID */
.ph-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 4rem;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* CATEGORY HEADER */
.cat-head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 4rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dz-line);
}

.cat-head:first-child {
    margin-top: 0;
}

.cat-icon {
    width: 44px;
    height: 44px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 200, 160, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.cat-head h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cat-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* PROJECT GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* PROJECT CARD */
.project-card {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: rgba(0, 200, 160, 0.45);
    transform: translateY(-5px);
}

.pc-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-visual svg, .pc-visual img{
    position: absolute;
    inset: 0;
    height: 100%;
}

.pc-visual .domain-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(10, 14, 20, 0.8);
    color: var(--cyan);
    padding: 4px 10px;
    border: 1px solid rgba(0, 200, 160, 0.3);
    z-index: 2;
}

.pc-body {
    padding: 1.8rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: var(--cyan-dim);
    color: var(--cyan);
    border: 1px solid rgba(0, 200, 160, 0.3);
    margin-bottom: 0.8rem;
}

.project-tag.blue {
    background: rgba(26, 143, 255, 0.08);
    color: var(--cyan);
    border-color: rgba(26, 143, 255, 0.25);
}

.project-tag.gold {
    background: rgba(255, 180, 0, 0.07);
    color: var(--cyan);
    border-color: rgba(255, 180, 0, 0.2);
}

.pc-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.pc-desc {
    font-size: 0.88rem;
    color: var(--dz-text);
    font-weight: 300;
    flex: 1;
}

.pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--dz-line);
}

.pc-tech {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tech-pill {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border: 1px solid rgba(90, 122, 148, 0.4);
    color: var(--muted);
}

.visit-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: gap 0.2s;
}

.visit-link:hover {
    gap: 10px;
}

.visit-link::after {
    content: '↗';
}

/* FEATURED / HERO PROJECT */
.project-featured {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
    transition: border-color 0.3s;
}

.project-featured:hover {
    border-color: rgba(0, 200, 160, 0.45);
}

.project-featured .pc-visual {
    height: 100%;
    min-height: 280px;
}

.project-featured .pc-body {
    padding: 2.5rem 2.5rem;
}

.project-featured .pc-name {
    font-size: 1.8rem;
}

.project-featured .pc-desc {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Color themes per project type */
.vis-realestate {
    background: linear-gradient(135deg, #0d2a22, #091a14);
}

.vis-realestate-alt {
    background: linear-gradient(135deg, #0a1e2a, #061218);
}

.vis-saas {
    background: linear-gradient(135deg, #0d1a2a, #060d1a);
}

.vis-estore {
    background: linear-gradient(135deg, #1a1a0d, #0d0d06);
}

.vis-mobile {
    background: linear-gradient(135deg, #1a0d2a, #0d0614);
}

/* METRICS STRIP */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dz-line);
    border: 1px solid var(--dz-line);
    margin-top: 1.5rem;
}

.metric {
    background: #fff;
    padding: 1rem 1.2rem;
    text-align: center;
}

.metric .mv {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.metric .ml {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-top: 2px;
}

@media (max-width: 900px) {
    nav {
        padding: 0 1.5rem;
    }

    .page-header,
    .ph-section {
        padding: 90px 1.5rem 50px;
    }

    .filter-strip {
        top: 56px
    }

    .filter-strip {
        padding: 0 1.5rem;
    }

    .project-featured {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .ph-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   ─── ABOUT US PAGE STYLES ───
   ────────────────────────────────────────────────────────────────────────── */

.whiteText{
    color: #fff;
}
/* ─── TRIANGLE CANVAS ─── */
.tri-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.tri-bg svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px;
    overflow: hidden;
    background:var(--navy2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--dz-white);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-title span {
    color: var(--cyan);
}

.hero-lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--dz-text);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}


.stat-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dz-muted);
    margin-top: 4px;
}

.hero-visual {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    max-width: 700px;
    opacity: 0.35;
}

/* ─── SECTION ─── */

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ─── MISSION SPLIT ─── */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.mission-text p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.mission-text p strong {
    font-weight: 500;
}

.mission-viz {
    position: relative;
}

.diamond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.diamond-card {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    padding: 1.8rem 1.5rem;
    clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    transition: border-color 0.3s, background 0.3s;
}

.diamond-card:hover {
    border-color: rgba(0, 200, 160, 0.4);
    background: rgba(0, 200, 160, 0.05);
}

.diamond-card:hover h4 {
    color: var(--navy);
}

.diamond-card .dc-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.diamond-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dz-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diamond-card p {
    font-size: 0.88rem;
    color: var(--dz-muted);
    line-height: 1.6;
}

/* ─── VALUES ─── */
.values-bg {
    background: var(--navy);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    border: 1px solid var(--dz-line);
}

.value-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--dz-line);
    border-bottom: 1px solid var(--dz-line);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.value-item:nth-child(3n) {
    border-right: none;
}

.value-item:hover {
    background: var(--cyan-dim);
}

.value-item::before {
    content: attr(data-num);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(0, 200, 160, 0.07);
    line-height: 1;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--dz-text);
    line-height: 1.7;
}

/* ─── TEAM ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    padding: 2rem 1.5rem;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    transition: transform 0.3s, border-color 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cyan-dim);
    border: 2px solid var(--cyan);
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan);
}

.team-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dz-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.team-card .role {
    font-size: 0.82rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--dz-muted);
}

/* ─── HISTORY TIMELINE ─── */
.timeline {
    margin-top: 4rem;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

.tl-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 2rem;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: -1.6rem;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--cyan);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.tl-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.tl-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dz-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.tl-desc {
    font-size: 0.92rem;
    color: var(--dz-text);
    font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    section {
        padding: 60px 1.5rem;
    }

    .hero {
        padding: 100px 1.5rem 60px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-item:nth-child(3n) {
        border-right: 1px solid var(--dz-line);
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   ─── JOBS PAGE STYLES ───
   ────────────────────────────────────────────────────────────────────────── */

.jobs-page .hero .tri-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.jobs-page .hero .tri-bg svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jobs-page .hero-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.jobs-page .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--cyan);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.jobs-page .eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.jobs-page h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--dz-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.jobs-page h1 span {
    color: var(--cyan);
}

.jobs-page .hero-lead {
    font-size: 1.05rem;
    color: var(--dz-text);
    font-weight: 300;
    margin-bottom: 2rem;
}

.jobs-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--cyan);
    color: #0a0e14;
    padding: 14px 28px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.jobs-page .btn-primary:hover {
    opacity: 0.85;
}

.jobs-page .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 13px 28px;
    text-decoration: none;
    margin-left: 1rem;
    transition: background 0.2s;
}

.jobs-page .btn-outline:hover {
    background: var(--cyan-dim);
}

.jobs-page .hero-perks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.jobs-page .perk {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.jobs-page .perk-icon {
    width: 40px;
    height: 40px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 200, 160, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.jobs-page .perk-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dz-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.jobs-page .perk-text p {
    font-size: 0.87rem;
    color: var(--dz-muted);
}

/* SECTION */
.jobs-page section {
    padding: 80px 4rem;
    position: relative;
}

.jobs-page .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-page .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.jobs-page .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dz-muted);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

/* JOB FILTERS */
.jobs-page .job-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.jobs-page .jf-btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border: 1px solid var(--dz-line);
    background: none;
    color: var(--dz-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.jobs-page .jf-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.jobs-page .jf-btn.active {
    background: var(--cyan);
    color: #0a0e14;
    border-color: var(--cyan);
}

/* JOBS LIST */
.jobs-page .jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.jobs-page .job-card {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.8rem 2rem;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
}

.jobs-page .job-card:hover {
    background: var(--navy);
}

.jobs-page .job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dz-white);
    margin-bottom: 0.5rem;
}

.jobs-page .job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.jobs-page .tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid var(--dz-line);
    color: var(--dz-muted);
}

.jobs-page .tag.teal {
    border-color: rgba(0, 200, 160, 0.3);
    color: var(--cyan);
}

.jobs-page .tag.blue {
    border-color: rgba(26, 143, 255, 0.3);
    color: var(--dz-blue);
}

.jobs-page .tag.remote {
    background: rgba(0, 200, 160, 0.07);
}

.jobs-page .job-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.jobs-page .job-dept {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dz-muted);
}

.jobs-page .apply-btn {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 9px 20px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.jobs-page .apply-btn:hover {
    background: var(--cyan);
    color: #0a0e14;
}

/* EXPANDED JOB DETAIL */
.jobs-page .job-detail {
    display: none;
    background: rgba(0, 200, 160, 0.03);
    border-top: 1px solid var(--dz-line);
    padding: 1.5rem 2rem;
    grid-column: 1 / -1;
    margin-top: -1.2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -1.8rem;
}

.jobs-page .job-detail.open {
    display: block;
}

.jobs-page .jd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.jobs-page .jd-section h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.jobs-page .jd-section ul {
    list-style: none;
}

.jobs-page .jd-section ul li {
    font-size: 0.88rem;
    color: var(--dz-text);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.jobs-page .jd-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: 0.8rem;
}

/* CULTURE GRID */
.jobs-page .culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.jobs-page .culture-card {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.jobs-page .culture-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.jobs-page .cc-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.2rem;
    color: var(--cyan);
}

.jobs-page .culture-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dz-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.jobs-page .culture-card p {
    font-size: 0.86rem;
    color: var(--dz-muted);
}

/* OPEN APPLICATION */
.jobs-page .open-app {
    background: var(--navy);
    border: 1px solid var(--dz-line);
    padding: 3rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.jobs-page .open-app h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dz-white);
    margin-bottom: 0.6rem;
}

.jobs-page .open-app p {
    font-size: 0.92rem;
    color: var(--dz-muted);
}

.jobs-page .navy-bg {
    background: var(--navy);
}

@media (max-width: 900px) {
    .jobs-page section {
        padding: 60px 1.5rem;
    }

    .jobs-page .hero {
        padding: 100px 1.5rem 60px;
    }

    .jobs-page .hero-inner {
        grid-template-columns: 1fr;
    }

    .jobs-page .culture-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jobs-page .open-app {
        grid-template-columns: 1fr;
    }

    .jobs-page .jd-grid {
        grid-template-columns: 1fr;
    }

    .jobs-page .job-card {
        grid-template-columns: 1fr;
    }
}

.queen_gambit_style{
    display: none;
}
.img-fluid{
    width: 400px;
}



/* ==========================================================================
   ARTICLES: TOC STYLES
   ========================================================================== */
.article-body{
    line-height: 1.9;
    color: var(--dz-muted);
}
.article-body h2{
    margin-top: 40px;
    color: var(--navy);
}