/* ===== GLOBAL GLASS 3D BUTTON MIXIN ===== */
/* Applied to: btn-secondary, btn-integration, zencia-closing-btn, zencia-feature-btn, arc-cta-btn-secondary */
.btn-secondary,
.btn-integration,
.zencia-closing-btn,
.zencia-feature-btn,
.arc-cta-btn-secondary {
    position: relative;
    overflow: hidden;
}

/* Top shine streak — gives the convex 3D highlight */
.btn-secondary::before,
.btn-integration::before,
.zencia-closing-btn::before,
.zencia-feature-btn::before,
.arc-cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

/* Bottom depth shadow line */
.btn-secondary::after,
.btn-integration::after,
.zencia-closing-btn::after,
.zencia-feature-btn::after,
.arc-cta-btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* ===== SHARED FEATURE SECTION ===== */
.zencia-feature-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.zencia-feature-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.zencia-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zencia-feature-content.reverse {
    direction: rtl;
}

.zencia-feature-content.reverse > * {
    direction: ltr;
}

/* Text */
.zencia-feature-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 1rem 0 1.2rem;
}

.zencia-feature-title .highlight { color: #00D9D5; }

.zencia-feature-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.zencia-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.2rem;
    color: #00D9D5;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid rgba(0, 217, 213, 0.4);
    background: rgba(0, 217, 213, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(0,217,213,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 5px 0 rgba(0,80,80,0.35),
        0 8px 20px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.zencia-feature-btn:hover {
    background: rgba(0, 217, 213, 0.16);
    border-color: rgba(0, 217, 213, 0.6);
    gap: 16px;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(0,217,213,0.35),
        inset 0 -1px 0 rgba(0,0,0,0.15),
        0 7px 0 rgba(0,80,80,0.25),
        0 12px 28px rgba(0,217,213,0.18);
}

.zencia-feature-btn:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 2px 6px rgba(0,0,0,0.25),
        0 2px 0 rgba(0,80,80,0.25);
}

/* ===== FROM AI TOOLS TO AI WORKFORCE SYSTEMS ===== */
.workforce-systems-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.workforce-systems-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.workforce-systems-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.workforce-systems-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-globe-wrap {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ws-globe-wrap::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.ws-globe-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: globeSpin 12s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 217, 213, 0.4));
}

@keyframes globeSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.workforce-systems-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.4rem;
}

.workforce-systems-title .highlight {
    color: #00D9D5;
}

.workforce-systems-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.78;
    margin-bottom: 1.2rem;
}

.workforce-systems-quote {
    background: rgba(0, 217, 213, 0.06);
    border: 1px solid rgba(0, 217, 213, 0.2);
    border-radius: 12px;
    padding: 24px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .workforce-systems-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ws-globe-wrap {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }
}

/* ===== AI EMPLOYEES REAL BUSINESS FUNCTIONS ===== */
.real-biz-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.real-biz-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.real-biz-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 50px;
}

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

.real-biz-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.real-biz-card:hover {
    border-color: rgba(0, 217, 213, 0.25);
    background: rgba(0, 217, 213, 0.03);
}

.real-biz-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.real-biz-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.real-biz-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

@media (max-width: 968px) {
    .real-biz-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .real-biz-grid { grid-template-columns: 1fr; }
}

/* ===== BUILT FOR NEXT LAYER SECTION ===== */
.next-layer-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.next-layer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.next-layer-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 0.6rem;
}

.next-layer-title-underline {
    width: 60px;
    height: 3px;
    background: #00D9D5;
    border-radius: 2px;
    margin-bottom: 50px;
}

.next-layer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.next-layer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.next-layer-card:hover {
    border-color: rgba(0, 217, 213, 0.25);
    background: rgba(0, 217, 213, 0.03);
}

.next-layer-card-wide {
    grid-column: span 2;
    background: rgba(0, 217, 213, 0.05);
    border-color: rgba(0, 217, 213, 0.2);
}

.next-layer-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 213, 0.1);
    border: 1px solid rgba(0, 217, 213, 0.2);
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.next-layer-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.next-layer-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

@media (max-width: 968px) {
    .next-layer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .next-layer-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .next-layer-grid {
        grid-template-columns: 1fr;
    }
    .next-layer-card-wide {
        grid-column: span 1;
    }
}

/* ===== NOT JUST SAAS SECTION ===== */
.not-saas-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.not-saas-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.not-saas-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.not-saas-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
}

.not-saas-title .highlight {
    color: #00D9D5;
}

.not-saas-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.8rem;
}

.not-saas-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.not-saas-tab.active {
    background: rgba(0, 217, 213, 0.08);
    border-color: rgba(0, 217, 213, 0.4);
    color: #00D9D5;
    font-weight: 700;
}

.not-saas-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.78;
    margin-bottom: 1.2rem;
}

.not-saas-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 1rem;
}

.not-saas-box-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.not-saas-box-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.not-saas-box-sub {
    font-size: 0.9rem;
    color: #00D9D5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .not-saas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .not-saas-tabs {
        grid-template-columns: 1fr;
    }
}

/* ===== TAR10 COGNITIVE CORE SECTION ===== */
.tar10-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.tar10-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.tar10-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.tar10-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 1rem 0 1.2rem;
}

.tar10-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

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

.tar10-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tar10-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, rgba(0,217,213,0.08) 0%, transparent 60%);
    border-radius: 0 16px 0 0;
}

.tar10-card:hover {
    border-color: rgba(0, 217, 213, 0.25);
    background: rgba(0, 217, 213, 0.03);
}

.tar10-card-highlight {
    background: rgba(0, 80, 80, 0.25);
    border-color: rgba(0, 217, 213, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tar10-card-highlight:hover {
    background: rgba(0, 80, 80, 0.35);
    border-color: rgba(0, 217, 213, 0.5);
}

.tar10-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 213, 0.1);
    border: 1px solid rgba(0, 217, 213, 0.2);
    border-radius: 12px;
    margin-bottom: 1.2rem;
}

.tar10-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.tar10-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.tar10-diff-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tar10-diff-quote {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 968px) {
    .tar10-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tar10-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WORLD MAP SECTION ===== */
.world-map-section {
    padding: 80px 0 0;
    background: #0a0a0a;
    position: relative;
}

.world-map-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.2), transparent);
}

.world-map-header {
    text-align: center;
    margin-bottom: 40px;
}

.world-map-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    margin-top: 1rem;
}

.world-map-title .highlight { color: #00D9D5; }

.world-map-wrap {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background: #0a0a0a;
}

.world-map-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, #0a0a0a 0%, #0a0a0a 20%, rgba(10,10,10,0.8) 50%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.world-map-img {
    width: 100%;
    display: block;
}

.world-map-inner {
    width: 100%;
    position: relative;
    background: #0a0a0a;
}

.world-map-inner svg {
    width: 100%;
    height: auto;
    display: block;
    background: #0a0a0a;
}

/* Pin container */
.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Label tag above pin */
.map-pin::after {
    content: attr(data-label);
    background: rgba(0, 217, 213, 0.12);
    border: 1px solid rgba(0,217,213,0.55);
    color: #00D9D5;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 5px;
    white-space: nowrap;
    margin-bottom: 4px;
    order: -1;
}

/* Red teardrop pin */
.map-pin::before {
    content: '';
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 35% 35%, #ff6b6b, #e00000);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 10px rgba(220,0,0,0.7), 0 2px 6px rgba(0,0,0,0.5);
    animation: pinPulse 2s ease-in-out infinite;
}

/* Green ripple dot at base */
.map-pin span {
    width: 10px;
    height: 6px;
    background: radial-gradient(ellipse, rgba(0,255,100,0.6), transparent);
    border-radius: 50%;
    margin-top: -4px;
    animation: ripple 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(220,0,0,0.6); }
    50% { box-shadow: 0 0 20px rgba(255,80,80,1); }
}

@keyframes ripple {
    0%, 100% { transform: scaleX(1); opacity: 0.6; }
    50% { transform: scaleX(1.6); opacity: 1; }
}

@media (max-width: 768px) {
    .world-map-wrap { border-radius: 10px; }
    .map-pin::after { font-size: 0.5rem; padding: 2px 6px; }
    .map-pin::before { width: 14px; height: 14px; }
}

/* ===== ENTERPRISE WORKFLOWS SECTION ===== */
.enterprise-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.enterprise-network-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.enterprise-section .container {
    position: relative;
    z-index: 1;
}

.enterprise-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.enterprise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 217, 213, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.enterprise-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.enterprise-title .highlight {
    color: #00D9D5;
}

.enterprise-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.enterprise-tagline-box {
    background: rgba(0, 217, 213, 0.06);
    border: 1px solid rgba(0, 217, 213, 0.2);
    border-radius: 10px;
    padding: 18px 28px;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.enterprise-tagline-box .highlight {
    color: #00D9D5;
    font-weight: 700;
}

@media (max-width: 768px) {
    .enterprise-card {
        padding: 36px 24px;
    }
}

/* ===== LABOR PHASE SECTION ===== */
.labor-phase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.labor-phase-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.4rem;
}

.labor-phase-title .highlight {
    color: #00D9D5;
}

.labor-phase-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.labor-phase-quote {
    border-left: 3px solid #00D9D5;
    padding: 1rem 1.4rem;
    margin: 0 0 1.5rem 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.65;
    background: rgba(0, 217, 213, 0.04);
    border-radius: 0 8px 8px 0;
}

.labor-phase-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.labor-phase-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.labor-feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    color: #ffffff;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.labor-feature-card:hover {
    border-color: rgba(0, 217, 213, 0.3);
    background: rgba(0, 217, 213, 0.05);
}

.labor-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 213, 0.1);
    border: 1px solid rgba(0, 217, 213, 0.2);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .labor-phase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Stats */
.zencia-feature-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.zencia-stat { display: flex; flex-direction: column; gap: 4px; }
.zencia-stat-num { font-size: 1.8rem; font-weight: 900; color: #00D9D5; }
.zencia-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }

/* ===== VISUAL CARD ===== */
.zencia-feature-visual { position: relative; }

.zencia-feature-card-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,217,213,0.15), transparent 70%);
    pointer-events: none;
}

.visual-glow.teal {
    background: radial-gradient(circle, rgba(0,217,213,0.2), transparent 70%);
}

/* Task list visual */
.visual-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vs-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.vs-dot.active {
    background: #00D9D5;
    box-shadow: 0 0 8px #00D9D5;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.vs-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); flex: 1; }
.vs-time { font-size: 0.75rem; color: #00D9D5; font-weight: 700; }

.visual-task-list { display: flex; flex-direction: column; gap: 10px; }

.vtask {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.vtask-icon { font-size: 1rem; }
.vtask span:nth-child(2) { flex: 1; }

.vtask-done {
    color: #00D9D5;
    font-weight: 700;
    font-size: 0.9rem;
}

.vtask-live {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
    background: #00D9D5;
    padding: 2px 8px;
    border-radius: 100px;
    animation: pulse-dot 1.5s infinite;
}

.vtask-active {
    border-color: rgba(0,217,213,0.2);
    color: rgba(255,255,255,0.8);
}

/* Learn visual */
.learn-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.learn-avatar {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00D9D5, #008B8B);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.2rem; color: #000;
}

.learn-info { display: flex; flex-direction: column; gap: 3px; }
.learn-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.learn-status { font-size: 0.75rem; color: #00D9D5; }

.learn-progress-list { display: flex; flex-direction: column; gap: 12px; }

.lpitem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.lpitem.done { color: rgba(255,255,255,0.75); }
.lpitem.active { color: #fff; }

.lp-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.lp-fill {
    display: block;
    height: 100%;
    background: #00D9D5;
    border-radius: 4px;
    transition: width 1s ease;
}

.lpitem.done .lp-fill { background: #00D9D5; }
.lpitem.active .lp-fill { background: linear-gradient(90deg, #00D9D5, #00ffee); }

.lp-pct { font-size: 0.72rem; color: #00D9D5; font-weight: 700; min-width: 36px; text-align: right; }

/* ===== PHOTO COLLAGE VISUAL ===== */
.photo-collage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
}

.photo-collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.photo-cell {
    overflow: hidden;
    position: relative;
}

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) brightness(0.8);
    transition: transform 0.4s ease;
}

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

/* Individual cell rounding */
.photo-cell--tl { border-radius: 16px 4px 4px 4px; }
.photo-cell--tr { border-radius: 4px 16px 4px 4px; }
.photo-cell--bl { border-radius: 4px 4px 4px 16px; }
.photo-cell--br { border-radius: 4px 4px 16px 4px; }

/* Stat badge overlay */
.photo-stat-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 213, 0.3);
    border-radius: 14px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.photo-stat-icon { font-size: 1.4rem; }

.photo-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.photo-stat-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #00D9D5;
    line-height: 1;
}

.photo-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ===== LANGUAGES SECTION UPDATES ===== */
.languages-marquee-section { padding-top: 80px; }

.languages-title .highlight { color: #00D9D5; }

.languages-subtitle {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 620px;
    margin: 1rem auto 0;
    text-align: center;
}

/* ===== INTEGRATIONS SECTION UPDATES ===== */
.integrations-subtitle {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 620px;
    margin: 1rem auto 2.5rem;
    text-align: center;
}

/* ===== MANIFESTO SECTION ===== */
.manifesto-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.manifesto-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,217,213,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,217,213,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.manifesto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left */
.manifesto-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.manifesto-sub {
    font-size: 1.05rem;
    font-weight: 700;
    color: #00D9D5;
    margin-bottom: 24px;
    font-style: italic;
}

.manifesto-body {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 32px;
}

.manifesto-closing {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    border-left: 2px solid #00D9D5;
    padding-left: 16px;
    font-style: italic;
}

/* Right — numbered questions */
.manifesto-questions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 18px 22px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.mq-item:hover {
    border-color: rgba(0,217,213,0.3);
    background: rgba(0,217,213,0.04);
}

.mq-num {
    font-size: 0.75rem;
    font-weight: 900;
    color: #00D9D5;
    letter-spacing: 1px;
    min-width: 28px;
}

.mq-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .manifesto-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .manifesto-section { padding: 80px 0; }
}

@media (max-width: 640px) {
    .manifesto-title { font-size: 1.8rem; }
}

/* ===== PRIVACY SECTION ===== */
.privacy-section {
    padding: 120px 0;
    background: #080808;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.privacy-bg-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,217,213,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.privacy-lock-icon {
    width: 52px; height: 52px;
    color: rgba(255,255,255,0.7);
}

.privacy-lock-icon svg { width: 100%; height: 100%; }

.privacy-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 700px;
    white-space: nowrap;
}

@media (max-width: 750px) {
    .privacy-title { white-space: normal; font-size: 1.8rem; }
}

.privacy-title .highlight { color: #00D9D5; }

/* Cards */
.privacy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.privacy-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 8px 0 rgba(0,0,0,0.35),
        0 12px 32px rgba(0,0,0,0.5);
}

/* Top shine */
.privacy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.07) 0%,
        rgba(255,255,255,0.01) 100%
    );
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.privacy-card:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        0 12px 0 rgba(0,0,0,0.25),
        0 18px 40px rgba(0,217,213,0.12);
    border-color: rgba(0,217,213,0.2);
}

.privacy-card-icon {
    width: 40px; height: 40px;
    color: #00D9D5;
}

.privacy-card-icon svg { width: 100%; height: 100%; }

.privacy-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.privacy-card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    flex: 1;
}

.privacy-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #00D9D5;
    text-decoration: none;
    transition: gap 0.2s ease;
    display: inline-block;
    margin-top: 4px;
}

.privacy-card-link:hover { opacity: 0.8; }

@media (max-width: 900px) {
    .privacy-cards { grid-template-columns: 1fr; }
    .privacy-section { padding: 80px 0; }
}

@media (max-width: 640px) {
    .privacy-title { font-size: 1.8rem; }
}

/* ===== CLOSING SECTION ===== */
.zencia-closing-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    text-align: center;
}

.zencia-closing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,213,0.3), transparent);
}

.zencia-closing-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.zencia-closing-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .zencia-closing-title { white-space: normal; font-size: 1.6rem; }
}

.zencia-closing-title .highlight { color: #00D9D5; }

.zencia-closing-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 580px;
}

.zencia-closing-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.zencia-closing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 217, 213, 0.12);
    color: #00D9D5;
    border: 1px solid rgba(0, 217, 213, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(0,217,213,0.35),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 6px 0 rgba(0,80,80,0.4),
        0 10px 24px rgba(0,0,0,0.4);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.zencia-closing-btn:hover {
    background: rgba(0, 217, 213, 0.2);
    border-color: rgba(0, 217, 213, 0.6);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(0,217,213,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        0 8px 0 rgba(0,80,80,0.3),
        0 14px 32px rgba(0,217,213,0.2);
}

.zencia-closing-btn:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 2px 6px rgba(0,0,0,0.3),
        0 2px 0 rgba(0,80,80,0.3);
}

.zencia-closing-btn svg { transition: transform 0.3s ease; }
.zencia-closing-btn:hover svg { transform: translateX(4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .zencia-feature-content,
    .zencia-feature-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .zencia-feature-stats { gap: 24px; }
}

@media (max-width: 640px) {
    .zencia-feature-section { padding: 70px 0; }
    .zencia-closing-section { padding: 80px 0; }
    .zencia-feature-title { font-size: 1.7rem; }
    .zencia-closing-title { font-size: 1.7rem; }
    .zencia-feature-stats { flex-wrap: wrap; gap: 20px; }
}
