/* Privacy Policy page specific styles */
body:has(.privacy-policy-hero) .page-hero,
.privacy-policy-hero {
    padding: 100px 0;
}

body:has(.privacy-policy-hero) .hero-content,
.privacy-policy-hero .hero-content {
    max-width: 900px;
}

body:has(.privacy-policy-hero) .hero-title,
.privacy-policy-hero .hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: var(--bg)
}

.content-grid {
    display: grid;
    grid-template-columns:2fr 1fr;
    gap: 60px;
    align-items: start
}

.content-section {
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px)
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent)
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--ink)
}

.content-section p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7
}

.content-section ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
    color: var(--muted)
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6
}

.content-section a {
    color: var(--accent);
    font-weight: 600
}

.content-section a:hover {
    text-decoration: underline
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0
}

.stat-card {
    background: rgba(56, 189, 248, .1);
    border: 1px solid rgba(56, 189, 248, .2);
    border-radius: 14px;
    padding: 24px;
    text-align: center
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block
}

.stat-label {
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px
}

.team-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px
}

.team-bio {
    color: var(--muted);
    font-size: 0.95rem
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px
}

.value-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, .3)
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px
}

.value-desc {
    color: var(--muted)
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.sidebar-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 24px
}

.sidebar-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent)
}

.sidebar-card p {
    color: var(--muted);
    margin-bottom: 12px
}

.sidebar-card a {
    color: var(--accent);
    font-weight: 600
}

.sidebar-card a:hover {
    text-decoration: underline
}



/* ========== Slider ========== */
.expertise-slider {
    margin: 24px 0 8px
}

.slider-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03)
}

.slider-track {
    display: flex;
    transition: transform .6s ease
}

.slider-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 0
}

.slide-image {
    min-height: 360px;
    background-size: cover;
    background-position: center
}

.slide-content {
    padding: 28px 28px 32px
}

.slide-badge {
    display: inline-block;
    background: rgba(56, 189, 248, .12);
    border: 1px solid rgba(56, 189, 248, .25);
    color: var(--accent);
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 10px
}

.slide-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 4px 0 8px
}

.slide-desc {
    color: var(--muted);
    margin-bottom: 14px
}

.slide-features {
    list-style: none;
    display: grid;
    gap: 8px
}

.slide-features li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 1rem
}

.slide-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900
}

.slider-arrows {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(11, 18, 32, .6);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(6px);
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
    transition: transform .2s ease, background .2s ease
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(14, 165, 233, .6)
}

#sliderPrev {
    left: 14px
}

#sliderNext {
    right: 14px
}

.slider-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: none
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .5);
    pointer-events: auto;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease
}

.nav-dot.active {
    background: var(--accent);
    transform: scale(1.15)
}

@media (max-width: 1100px) {
    .slider-slide {
        grid-template-columns:1fr
    }

    .slide-image {
        min-height: 260px
    }

    .slide-content {
        padding: 22px
    }
}

/* ========== Privacy Policy Page Mobile Responsive ========== */
@media (max-width: 968px) {
    body:has(.privacy-policy-hero) .page-hero,
    .privacy-policy-hero {
        padding: 80px 0;
    }

    body:has(.privacy-policy-hero) .hero-title,
    .privacy-policy-hero .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .main-content {
        padding: 50px 0;
    }

    .content-grid {
        grid-template-columns:1fr;
        gap: 40px
    }

    .content-section {
        padding: 30px;
    }

    .content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .content-section h3 {
        font-size: 1.35rem;
        margin: 28px 0 14px;
    }

    .content-section p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .content-section ul {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-section li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .stats-grid {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    body:has(.privacy-policy-hero) .page-hero,
    .privacy-policy-hero {
        padding: 70px 0;
    }

    body:has(.privacy-policy-hero) .hero-title,
    .privacy-policy-hero .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .main-content {
        padding: 40px 0;
    }

    .content-section {
        padding: 24px;
    }

    .content-section h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .content-section h3 {
        font-size: 1.3rem;
        margin: 24px 0 12px;
    }

    .content-section p {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .content-section ul {
        padding-left: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .content-section li {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    body:has(.privacy-policy-hero) .page-hero,
    .privacy-policy-hero {
        padding: 60px 0;
    }

    body:has(.privacy-policy-hero) .hero-title,
    .privacy-policy-hero .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .main-content {
        padding: 30px 0;
    }

    .content-section {
        padding: 20px;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .content-section h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }

    .content-section p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .content-section ul {
        padding-left: 1rem;
        margin-bottom: 1rem;
    }

    .content-section li {
        font-size: 0.9rem;
        margin-bottom: 4px;
        line-height: 1.5;
    }

    .content-section a {
        word-break: break-word;
    }
}