/* =========================================
   HISAR BİLGİSAYAR — Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@600;700;800&display=swap');

:root {
    --navy-950: #040d1e;
    --navy-900: #071228;
    --navy-800: #0c1e40;
    --navy-700: #102654;
    --navy-600: #173070;
    --accent-blue: #2d7dff;
    --accent-blue-light: #4d93ff;
    --accent-cyan: #00c8e0;
    --accent-glow: rgba(45, 125, 255, 0.25);
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f2f8;
    --gray-200: #e2e6f0;
    --gray-300: #c8cedd;
    --gray-500: #8892a4;
    --gray-700: #4a5568;
    --gray-900: #1a202c;
    --text-primary: #0f1923;
    --text-secondary: #4a5568;
    --text-muted: #8892a4;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
    --shadow-blue: 0 8px 40px rgba(45,125,255,0.22);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    line-height: 1.75;
}

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

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

    .navbar.transparent {
        background: transparent;
    }

    .navbar.scrolled {
        background: rgba(4, 13, 30, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    }

    .navbar.light-page {
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-sm);
    }

        .navbar.light-page .nav-link {
            color: var(--text-secondary);
        }

            .navbar.light-page .nav-link:hover {
                color: var(--accent-blue);
            }

        .navbar.light-page .logo-text {
            color: var(--navy-900);
        }

        .navbar.light-page .logo-accent {
            color: var(--accent-blue);
        }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-cyan);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: white;
    }

        .nav-link:hover::after {
            width: 100%;
        }

    .nav-link.active {
        color: white;
    }

        .nav-link.active::after {
            width: 100%;
        }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(45,125,255,0.35);
}

    .nav-cta:hover {
        background: var(--accent-blue-light);
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(45,125,255,0.45);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        width: 24px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: var(--transition);
    }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
    box-shadow: var(--shadow-blue);
}

    .btn-primary:hover {
        background: var(--accent-blue-light);
        transform: translateY(-2px);
        box-shadow: 0 12px 48px rgba(45,125,255,0.4);
    }

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.6);
        transform: translateY(-2px);
    }

.btn-outline-dark {
    background: transparent;
    color: var(--accent-blue);
    border: 1.5px solid var(--accent-blue);
}

    .btn-outline-dark:hover {
        background: var(--accent-blue);
        color: white;
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 17px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.8rem;
}

/* ── SECTION LAYOUT ── */
.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 14px;
}

    .section-label::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent-blue);
        border-radius: 2px;
    }

.section-title {
    color: var(--text-primary);
    margin-bottom: 16px;
}

    .section-title.white {
        color: white;
    }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

    .section-sub.white {
        color: rgba(255,255,255,0.65);
    }

.section-header {
    margin-bottom: 60px;
}

    .section-header.center {
        text-align: center;
    }

        .section-header.center .section-sub {
            margin: 0 auto;
        }

        .section-header.center .section-label {
            justify-content: center;
        }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy-950);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45,125,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(45,125,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,125,255,0.18) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.hero-bg-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,224,0.10) 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(45,125,255,0.12);
    border: 1px solid rgba(45,125,255,0.25);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,200,224,0.4);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.85);
        box-shadow: 0 0 0 6px rgba(0,200,224,0);
    }
}

.hero-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.04em;
}

.hero-title {
    color: white;
    margin-bottom: 24px;
    line-height: 1.12;
}

    .hero-title .accent {
        background: linear-gradient(135deg, var(--accent-blue-light), var(--accent-cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-card-float {
    position: relative;
    width: 340px;
}

.float-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    backdrop-filter: blur(10px);
}

.float-card-main {
    margin-bottom: 16px;
    animation: float 6s ease-in-out infinite;
}

.float-card-small {
    position: absolute;
    width: 180px;
    animation: float 6s ease-in-out infinite 1.5s;
}

    .float-card-small.left {
        left: -80px;
        bottom: 60px;
    }

    .float-card-small.right {
        right: -60px;
        top: 40px;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.fc-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.fc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.fc-name {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.fc-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

    .fc-val.green {
        color: #4ade80;
    }

.fc-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin-top: 4px;
}

.fc-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

/* ── LOGOS STRIP ── */
.logos-strip {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}

.logos-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-partner {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

    .logo-partner:hover {
        color: var(--gray-500);
    }

/* ── SERVICES GRID ── */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .service-card:hover {
        border-color: transparent;
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

    .service-card.featured {
        background: var(--navy-900);
        border-color: transparent;
    }

        .service-card.featured .service-title {
            color: white;
        }

        .service-card.featured .service-desc {
            color: rgba(255,255,255,0.55);
        }

        .service-card.featured .service-link {
            color: var(--accent-cyan);
        }

        .service-card.featured::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.icon-blue {
    background: rgba(45,125,255,0.1);
}

.icon-green {
    background: rgba(34,197,94,0.1);
}

.icon-amber {
    background: rgba(245,158,11,0.1);
}

.icon-purple {
    background: rgba(168,85,247,0.1);
}

.icon-teal {
    background: rgba(20,184,166,0.1);
}

.icon-rose {
    background: rgba(244,63,94,0.1);
}

.icon-dark {
    background: rgba(45,125,255,0.2);
}

.icon-indigo {
    background: rgba(99,102,241,0.1);
}

.icon-ai {
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(0,200,224,0.15));
    font-size: 20px;
    font-weight: 800;
    color: #a78bfa;
    font-family: var(--font-display);
}

/* AI hizmet kartı */
.service-card-ai {
    background: linear-gradient(135deg, var(--navy-900) 0%, #0d1840 100%);
    border-color: rgba(139,92,246,0.25) !important;
}

    .service-card-ai .service-title {
        color: white;
    }

    .service-card-ai .service-desc {
        color: rgba(255,255,255,0.55);
    }

    .service-card-ai::before {
        background: linear-gradient(90deg, #8b5cf6, var(--accent-cyan));
    }

/* Yeni badge */
.service-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.3);
    color: #a78bfa;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    width: fit-content;
}

/* 2 sütun grid (öne çıkan satır için) */
.services-grid-2 {
    grid-template-columns: 1fr 1fr !important;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

    .service-link:hover {
        gap: 10px;
    }

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

/* ── WHY US ── */
.why-section {
    background: var(--gray-50);
}

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

.why-image-wrap {
    position: relative;
}

.why-image-block {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--navy-800);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.why-image-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45,125,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(45,125,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

.why-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,125,255,0.25) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-badge-float {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .why-badge-float.top-right {
        top: -20px;
        right: -30px;
    }

    .why-badge-float.bottom-left {
        bottom: -20px;
        left: -30px;
    }

.wbf-icon {
    font-size: 22px;
}

.wbf-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.wbf-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wf-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.wf-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.wf-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── PROCESS ── */
.process-section {
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45,125,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(45,125,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(12.5% + 28px);
        right: calc(12.5% + 28px);
        height: 1px;
        background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-blue));
        opacity: 0.3;
        z-index: 0;
    }

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy-800);
    border: 1px solid rgba(45,125,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-blue);
    transition: var(--transition);
}

.process-step:hover .process-num {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 24px rgba(45,125,255,0.4);
}

.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.process-step-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* ── STATS ── */
.stats-section {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stat-item {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item:hover {
        background: var(--gray-50);
    }

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 8px;
}

    .stat-num .accent {
        color: var(--accent-blue);
    }

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--gray-50);
}

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

.testimonial-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .testimonial-card.featured {
        background: var(--navy-900);
        border-color: transparent;
        grid-column: span 1;
    }

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.5;
    color: var(--accent-blue);
    opacity: 0.2;
    margin-bottom: 16px;
    display: block;
}

.testimonial-card.featured .quote-mark {
    opacity: 0.4;
    color: var(--accent-cyan);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255,255,255,0.6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-card.featured .author-name {
    color: white;
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-card.featured .author-role {
    color: rgba(255,255,255,0.4);
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,125,255,0.2) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
}

.cta-title {
    color: white;
    margin-bottom: 14px;
}

.cta-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: flex-end;
}

.cta-phone {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.cta-phone-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-align: right;
    margin-bottom: 6px;
}

/* ── FOOTER ── */
.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin: 16px 0 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

    .footer-contact-item span {
        font-size: 14px;
    }

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    transition: color 0.2s;
}

    .footer-link:hover {
        color: var(--accent-cyan);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45,125,255,0.1);
    border: 1px solid rgba(45,125,255,0.2);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: float-btn 3s ease-in-out infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    }

@keyframes float-btn {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: var(--navy-950);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45,125,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(45,125,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,125,255,0.15) 0%, transparent 65%);
    top: -100px;
    right: -100px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

    .breadcrumb a {
        color: rgba(255,255,255,0.4);
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }

.breadcrumb-sep {
    opacity: 0.4;
}

.breadcrumb-current {
    color: rgba(255,255,255,0.7);
}

.page-hero-title {
    color: white;
    margin-bottom: 16px;
}

.page-hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ── HIZMETLER PAGE ── */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detail-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .service-detail-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
        border-color: transparent;
    }

.sdc-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.sdc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.sdc-meta {
    flex: 1;
}

.sdc-title {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 4px;
}

.sdc-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(45,125,255,0.08);
    color: var(--accent-blue);
    letter-spacing: 0.04em;
}

.sdc-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.sdc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

    .sdc-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.875rem;
        color: var(--text-secondary);
    }

        .sdc-features li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(34,197,94,0.1);
            color: #16a34a;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.sdc-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sdc-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── İLETİŞİM PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

    .contact-info-card:hover {
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.ci-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ci-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.contact-form-wrap {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

    .form-label .req {
        color: var(--accent-blue);
    }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: white;
    transition: var(--transition);
    outline: none;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 4px rgba(45,125,255,0.08);
    }

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-blue);
}

    .form-submit:hover {
        background: var(--accent-blue-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(45,125,255,0.4);
    }

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* ── MAP ── */
.map-section {
    background: var(--gray-50);
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 360px;
    background: var(--navy-800);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.4);
}

    .map-placeholder p {
        font-size: 0.85rem;
        margin-top: 8px;
    }

/* ── FAQ (iletişim sayfası) ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}

    .faq-question:hover {
        color: var(--accent-blue);
    }

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-2 {
        grid-template-columns: 1fr 1fr !important;
    }

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

        .stats-grid .stat-item:nth-child(2) {
            border-right: none;
        }

        .stats-grid .stat-item:nth-child(3) {
            border-top: 1px solid var(--gray-200);
        }

        .stats-grid .stat-item:nth-child(4) {
            border-top: 1px solid var(--gray-200);
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image-wrap {
        max-width: 400px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

        .process-steps::before {
            display: none;
        }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

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

    .services-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .proj-grid {
        grid-template-columns: 1fr;
    }

    .proj-filter {
        gap: 6px;
    }

    .pf-btn {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
}

/* ════════════════════════════════════════
   SPIRAL SPLASH ANİMASYONU
════════════════════════════════════════ */
#intro-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none;
}

/* Canvas: tam ekran arka plan + parçacıklar */
#splash-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Logo */
.splash-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1), transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

    .splash-logo-wrap.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .splash-logo-wrap.hide {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.75);
        transition: opacity 0.38s ease, transform 0.38s ease;
    }

.splash-logo-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 40px rgba(45,125,255,0.5), 0 0 80px rgba(0,200,224,0.2);
}

.splash-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

    .splash-logo-text span {
        color: var(--accent-cyan);
    }

.splash-tagline {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.splash-progress {
    width: 90px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.splash-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 2px;
    animation: splashProgress 1.1s cubic-bezier(0.4,0,0.2,1) 0.9s both;
}

@keyframes splashProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Sayfa içeriği splash açıkken gizli — canvas JS kaldırınca görünür */
body.splash-active {
    overflow: hidden;
}

    body.splash-active .navbar,
    body.splash-active main,
    body.splash-active footer,
    body.splash-active .whatsapp-float {
        opacity: 0;
    }

body .navbar,
body main,
body footer,
body .whatsapp-float {
    transition: opacity 0.45s ease 0.1s;
}

body:not(.splash-active) .navbar,
body:not(.splash-active) main,
body:not(.splash-active) footer,
body:not(.splash-active) .whatsapp-float {
    opacity: 1;
}

/* ════════════════════════════════════════
   PROJELER SAYFASI
════════════════════════════════════════ */

/* Filtre butonları */
.proj-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.pf-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

    .pf-btn:hover {
        border-color: rgba(255,255,255,0.35);
        color: rgba(255,255,255,0.85);
    }

    .pf-btn.active {
        background: var(--accent-blue);
        border-color: var(--accent-blue);
        color: white;
        box-shadow: 0 4px 16px rgba(45,125,255,0.35);
    }

/* Proje grid */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Proje kartı */
.proj-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: white;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

    .proj-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-6px);
        border-color: transparent;
    }

/* ── Thumbnail ana wrapper ── */
.proj-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--navy-900);
}

/* ── Img wrapper: hem img hem placeholder barındırır ── */
.proj-thumb-img-wrap {
    position: absolute;
    inset: 0;
}

/* ── Gerçek ekran görüntüsü ── */
.proj-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    z-index: 1;
}

.proj-card:hover .proj-thumb-img {
    transform: scale(1.04);
}

/* ── Placeholder: img yokken (onerror → no-img class) görünür ── */
.proj-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 0; /* img'nin arkasında */
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
/* img yüklenince placeholder görünmez (z-index ile), img hata verirse no-img eklenir */
.no-img .proj-thumb-img {
    display: none;
}

.no-img .proj-thumb-placeholder {
    z-index: 1;
}

.proj-card:hover .proj-thumb-placeholder {
    transform: scale(1.04);
}

/* Placeholder içerik */
.ptp-domain {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
}

.ptp-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
}

/* Hover overlay */
.proj-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,18,40,0.82);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proj-card:hover .proj-overlay {
    opacity: 1;
}

.proj-overlay-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(6px);
    transition: transform 0.3s ease;
}

.proj-card:hover .proj-overlay-icon {
    transform: translateY(0);
}

.proj-overlay-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transform: translateY(6px);
    transition: transform 0.3s ease 0.04s;
}

.proj-card:hover .proj-overlay-text {
    transform: translateY(0);
}

/* Proje bilgi alanı */
.proj-info {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.proj-cat-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(45,125,255,0.08);
    color: var(--accent-blue);
    padding: 3px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 4px;
}

.proj-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.proj-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.proj-tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

    .proj-tech span {
        font-size: 0.72rem;
        font-weight: 500;
        color: var(--text-muted);
        background: var(--gray-100);
        padding: 3px 9px;
        border-radius: 100px;
    }

/* Proje ekle CTA */
.proj-add-cta {
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    transition: var(--transition);
}

    .proj-add-cta:hover {
        border-color: var(--accent-blue);
        background: rgba(45,125,255,0.02);
    }

.proj-add-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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