:root {
    --bg: #0b1220;
    --ink: #f8fafc;
    --muted: #cbd5e1;
    --line: #1f2937;
    --accent: #38bdf8;
    --btn: #0ea5e9;
    --btnink: #fff;
    --panel: #fff;
    --panelink: #0f172a;
    --shadow: 0 30px 80px rgba(0, 0, 0, .35);
    --radius: 18px;
    --header-h: 86px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html, body {
    min-height: 100%
}

body {
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: 1588px;
    margin: 0 auto;
    padding: 0 20px
}

/* Header */
.header {
    position: fixed;
    inset: auto 0 0 0;
    top: 0;
    z-index: 40;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(11, 18, 32, .95);
    backdrop-filter: blur(10px)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px
}

.brand img {
    max-width: 270px;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px
}

.nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 600;
    transition: all 0.3s ease
}

.nav a:hover, .nav a.active {
    color: var(--ink);
    background: rgba(255, 255, 255, .08)
}

.cta {
    margin-left: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--btn);
    color: var(--btnink);
    font-weight: 700;
    transition: all 0.3s ease
}

.cta:hover {
    background: #0284c7;
    transform: translateY(-2px)
}

/* Hero Section */
body:has(.terms-of-use-hero) .page-hero,
.terms-of-use-hero {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, rgba(56, 189, 248, .1) 0%, rgba(14, 165, 233, .05) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(56,189,248,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, .1);
    border: 1px solid rgba(56, 189, 248, .2);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px
}

body:has(.terms-of-use-hero) .hero-title,
.terms-of-use-hero .hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto
}

/* 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
}

/* Footer */
.footer {
    background: rgba(11, 18, 32, .95);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.footbrand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 15px
}

.footlinks {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footlinks a {
    color: var(--muted);
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    transition: all 0.3s ease
}

.footlinks a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, .08)
}

.foot-contact {
    color: var(--muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.foot-contact span {
    display: flex;
    align-items: center;
    gap: 4px
}


/* ========== 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
    }
}

/* ========== Terms of Use Page Mobile Responsive ========== */
@media (max-width: 968px) {
    body:has(.terms-of-use-hero) .page-hero,
    .terms-of-use-hero {
        padding: 80px 0;
    }

    body:has(.terms-of-use-hero) .hero-title,
    .terms-of-use-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
    }

    .footwrap {
        flex-direction: column;
        text-align: center
    }

    .foot-contact {
        flex-direction: column;
        gap: 8px
    }
}

/* Tablet ve büyük telefonlar */
@media (max-width: 768px) {
    body:has(.terms-of-use-hero) .page-hero,
    .terms-of-use-hero {
        padding: 70px 0;
    }

    body:has(.terms-of-use-hero) .hero-title,
    .terms-of-use-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;
    }
}

/* Küçük telefonlar (tek elle kullanım) */
@media (max-width: 480px) {
    body:has(.terms-of-use-hero) .page-hero,
    .terms-of-use-hero {
        padding: 60px 0;
    }

    body:has(.terms-of-use-hero) .hero-title,
    .terms-of-use-hero .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .main-content {
        padding: 30px 0;
    }

    .content-section {
        padding: 20px;
        border-radius: 16px;
    }

    .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;
    }

    .stats-grid {
        gap: 18px;
    }
}
