:root {
    --font-main: 'Campton', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Renk Paleti */
    --color-bg: #ffffff;
    --color-bg-subtle: #f8fafc;
    --color-bg-alt: #fbfbfd;
    --color-surface: #ffffff;
    --color-dark: #0f172a;
    --color-dark-hover: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8;
    --color-slate-300: #cbd5e1;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f1f5f9;
    --color-slate-50: #f8fafc;
    --color-accent-green: #16a34a;

    /* Gölgeler */
    --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-card-hover: 0 20px 40px rgba(15, 23, 42, 0.1);
    --shadow-btn: 0 4px 14px rgba(15, 23, 42, 0.15);

    /* Yuvarlama (Border Radius) */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Geçiş Efektleri */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET VE TABAN STILLER
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: var(--font-main);
}

::selection {
    background-color: #000000;
    color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: var(--font-main);
    border: none;
    cursor: pointer;
    background: none;
}

/* ==========================================================================
   ANA SAYFA VE HERO BÖLÜMÜ (HERO SECTION)
   ========================================================================== */
.main-wrapper {
    width: 100%;
    padding-top: 5rem;
    background-color: var(--color-bg-alt);
    min-height: 100vh;
}

.hero-ambient-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.aurora-glow-1 {
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    height: 450px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, rgba(192, 132, 252, 0.12) 40%, rgba(219, 234, 254, 0.15) 80%, transparent 100%);
    filter: blur(100px);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.aurora-glow-2 {
    position: absolute;
    top: 30rem;
    right: 1rem;
    width: 560px;
    height: 520px;
    background: radial-gradient(circle, rgba(165, 180, 252, 0.18) 0%, rgba(251, 207, 232, 0.12) 60%, transparent 100%);
    filter: blur(110px);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.aurora-glow-3 {
    position: absolute;
    top: 20rem;
    left: -5rem;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(254, 240, 138, 0.15) 0%, rgba(254, 205, 211, 0.12) 60%, transparent 100%);
    filter: blur(95px);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.hero-content-section {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    background-color: #ffffff;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 1.5rem;
}

.eyebrow-badge__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: var(--radius-full);
    background-color: var(--color-slate-900);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.eyebrow-badge__text {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-slate-700);
}

.hero-main-title {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-slate-900);
    max-width: 64rem;
    margin: 0 0 1.25rem 0;
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 4.5rem;
        line-height: 1.05;
    }
}

.hero-title-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #475569 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-slate-600);
    max-width: 42rem;
    margin: 0 auto;
}

.filter-categories-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2.5rem;
}

.filter-btn {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    background-color: #ffffff;
    border: 1px solid var(--color-slate-200);
    color: var(--color-slate-600);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    color: var(--color-slate-950);
    border-color: var(--color-slate-400);
    background-color: var(--color-slate-50);
}

.filter-btn.active {
    background-color: var(--color-slate-900);
    color: #ffffff;
    font-weight: 700;
    border-color: var(--color-slate-900);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
    transform: scale(1.02);
}

/* ==========================================================================
   iMAC 24" INTERAKTİF VİTRİN VE KAYDIRICI (SLIDER)
   ========================================================================== */
.showcase-stage-section {
    position: relative;
    z-index: 20;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem 6rem 1.5rem;
}

.imac-assembly-rig {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imac-enclosure-frame {
    position: relative;
    width: 100%;
    border-radius: 2rem;
    background-color: #111113;
    padding: 0.875rem;
    box-shadow: 0 30px 90px -20px rgba(15, 23, 42, 0.3), 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .imac-enclosure-frame {
        padding: 1rem;
    }
}

.imac-edge-shine-top {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.imac-edge-shine-bottom {
    position: absolute;
    bottom: 0;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.imac-screen-bezel {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #000000;
    aspect-ratio: 16 / 10;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
    .imac-screen-bezel {
        aspect-ratio: 16 / 9;
    }
}

.imac-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.imac-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.imac-slide.opacity-100 {
    opacity: 1;
    z-index: 10;
}

.imac-slide.opacity-0 {
    opacity: 0;
    z-index: 0;
}

.imac-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.imac-slide__vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 25%, transparent 70%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

.imac-browser-header-bar {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.imac-window-controls {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.imac-dot-red {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: var(--radius-full);
    background-color: rgba(255, 95, 86, 0.85);
}

.imac-dot-yellow {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: var(--radius-full);
    background-color: rgba(255, 189, 46, 0.85);
}

.imac-dot-green {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: var(--radius-full);
    background-color: rgba(39, 201, 63, 0.85);
}

.imac-address-pill {
    padding: 0.2rem 0.85rem;
    border-radius: var(--radius-full);
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.625rem;
    font-weight: 500;
    color: #d4d4d8;
}

.imac-status-pill {
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-full);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.slider-nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.08);
}

.slider-nav-arrow--prev {
    left: 1rem;
}

.slider-nav-arrow--next {
    right: 1rem;
}

.imac-hud-bar {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 30;
    pointer-events: auto;
}

.imac-hud-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.8125rem;
}

.imac-hud-counter-bold {
    font-weight: 700;
    color: #ffffff;
}

.imac-hud-counter-divider {
    color: #71717a;
}

.imac-hud-counter-total {
    color: #d4d4d8;
}

.imac-hud-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-full);
    margin-left: 50px;
}

.slider-dot {
    width: 0.5rem;
    height: 0.375rem;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
    padding: 0;
}

.slider-dot:hover {
    background-color: #ffffff;
}

.slider-dot.active,
.slider-dot.w-6 {
    width: 1.5rem;
    background-color: #ffffff;
}

.imac-hud-badge-live {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    font-size: 0.6875rem;
    font-weight: 500;
    color: #e4e4e7;
}

@media (min-width: 640px) {
    .imac-hud-badge-live {
        display: flex;
    }
}

.imac-metallic-chin {
    width: 100%;
    height: 2.25rem;
    margin-top: 0.25rem;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    background: linear-gradient(180deg, #e4e4e7 0%, #d4d4d8 50%, #a1a1aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .imac-metallic-chin {
        height: 2.75rem;
    }
}

.imac-chin-emblem {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.imac-chin-emblem:hover {
    opacity: 0.95;
}

.imac-chin-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: var(--radius-full);
    background-color: var(--color-slate-900);
}

.imac-chin-text {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-slate-900);
    font-weight: 700;
}

.imac-stand-neck {
    width: 5.5rem;
    height: 2.75rem;
    background: linear-gradient(180deg, #d4d4d8 0%, #e4e4e7 50%, #cbd5e1 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .imac-stand-neck {
        width: 7rem;
        height: 3.5rem;
    }
}

.imac-stand-foot {
    width: 11rem;
    height: 0.9rem;
    background: linear-gradient(90deg, #cbd5e1 0%, #f1f5f9 50%, #cbd5e1 100%);
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
    border-top: 1px solid #ffffff;
}

@media (min-width: 640px) {
    .imac-stand-foot {
        width: 15rem;
        height: 1rem;
    }
}

.imac-ground-contact-shadow {
    width: 18rem;
    height: 0.9rem;
    background-color: rgba(148, 163, 184, 0.35);
    filter: blur(8px);
    margin-top: -0.25rem;
    border-radius: var(--radius-full);
}

@media (min-width: 640px) {
    .imac-ground-contact-shadow {
        width: 24rem;
    }
}

/* ==========================================================================
   PROJE BİLGİ VE DETAY KARTI (PROJECT METADATA CARD)
   ========================================================================== */
.project-details-panel {
    margin-top: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

@media (min-width: 640px) {
    .project-details-panel {
        padding: 2rem;
    }
}

.project-details-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .project-details-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.project-primary-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 42rem;
}

.project-badge-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-category-chip {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background-color: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-700);
}

.project-bullet-divider {
    color: var(--color-slate-300);
    font-size: 0.75rem;
}

.project-year-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-slate-500);
}

.project-award-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-slate-700);
}

.award-dot-green {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: var(--radius-full);
    background-color: var(--color-accent-green);
}

.project-main-heading {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-slate-950);
    margin: 0;
}

@media (min-width: 768px) {
    .project-main-heading {
        font-size: 2rem;
    }
}

.project-body-summary {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-slate-600);
    margin: 0;
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.tag-badge {
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    background-color: var(--color-slate-100);
    color: var(--color-slate-700);
    border: 1px solid var(--color-slate-200);
    font-size: 0.8125rem;
    font-weight: 500;
}

.project-actions-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .project-actions-column {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .project-actions-column {
        flex-direction: column;
        align-items: flex-end;
        width: auto;
    }
}

.project-metric-card {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--color-slate-50);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 13rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

@media (min-width: 1024px) {
    .project-metric-card {
        align-items: flex-end;
    }
}

.metric-card-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-500);
}

.metric-card-stat {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-slate-950);
}

.metric-card-sublabel {
    font-size: 0.6875rem;
    color: var(--color-slate-500);
}

.btn-project-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background-color: var(--color-slate-900);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-btn);
    transition: var(--transition-smooth);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-project-action {
        width: auto;
    }
}

.btn-project-action:hover {
    background-color: var(--color-slate-800);
    transform: scale(1.02);
}

/* ==========================================================================
   BENTO VİTRİN KARTLARI (FEATURED CASE STUDIES & BENTO GRID)
   ========================================================================== */
.bento-showcase-section {
    width: 100%;
    background-color: var(--color-bg-subtle);
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    padding: 5rem 0;
    position: relative;
}

.bento-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-headline-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.5rem;
    padding-bottom: 3rem;

}

@media (min-width: 768px) {
    .section-headline-group {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-tagline {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-slate-500);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-slate-950);
    margin: 0;
}

.section-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-slate-600);
    max-width: 40rem;
    margin: 0;

}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bento-card {
    border-radius: var(--radius-2xl);
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-slate-300);
    transform: translateY(-2px);
}

.bento-card--wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .bento-card--wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .bento-card--wide {
        grid-column: span 2;
    }
}

.bento-card-media {
    position: relative;
    width: 100%;
    height: 18rem;
    overflow: hidden;
    background-color: var(--color-slate-100);
}

.bento-card-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-card-media__img {
    transform: scale(1.05);
}

.bento-card-media__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.bento-category-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-slate-900);
    box-shadow: var(--shadow-subtle);
}

.bento-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.bento-card-meta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-slate-500);
    margin-bottom: 0.5rem;
    display: block;
}

.bento-card-heading {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-slate-950);
    margin: 0 0 0.5rem 0;
}

.bento-card-summary {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--color-slate-600);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color-slate-100);
}

.bento-stat-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-slate-900);
}

.stat-icon-success {
    color: var(--color-accent-green);
    font-size: 1.125rem;
}

.bento-circle-action-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    background-color: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-800);
    transition: var(--transition-smooth);
}

.bento-circle-action-btn:hover {
    background-color: var(--color-slate-900);
    color: #ffffff;
}

/* ==========================================================================
   MÜHENDİSLİK PERFORMANS METRİKLERİ KARTI
   ========================================================================== */
.engineering-card {
    padding: 2rem;
    border-radius: var(--radius-2xl);
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.engineering-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.engineering-card-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-500);
}

.live-pulse-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: var(--radius-full);
    background-color: var(--color-accent-green);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
}

.metric-pill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem;
    border-radius: var(--radius-xl);
    background-color: var(--color-slate-50);
    border: 1px solid rgba(226, 232, 240, 0.7);
    text-align: center;
}

.metric-pill-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-950);
}

.metric-pill-name {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-slate-500);
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.link-explore-stack {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-slate-900);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.2s ease;
    margin-top: 1.5rem;
}

.link-explore-stack:hover {
    color: var(--color-slate-600);
}

/* ==========================================================================
   MARKALAR KAYDIRICI (HOMEPAGE BRANDS SLIDER)
   ========================================================================== */
#homepage-brands {
    overflow: hidden !important;
    position: relative !important;
    padding: 2.5rem 0 !important;
    background: rgba(0, 0, 0, .99) !important;
    max-height: none !important;
}

#homepage-brands .stars-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
    pointer-events: none !important;
}

.stars-wrapper .stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 90px 40px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 230px 60px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 310px 100px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 450px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 580px 80px, #ffffff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 600px 200px;
    opacity: 0.25;
}

#homepage-brands .brands-slider-wrapper {
    position: relative !important;
    z-index: 2 !important;
}

#homepage-brands .swiper-brands {
    overflow: hidden !important;
}

#homepage-brands .swiper-brands .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important;
}

#homepage-brands .box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    height: 100%;
    padding: 8px !important;
}

#homepage-brands .box>img {
    display: block !important;
    object-fit: contain !important;
    filter: grayscale(100%) invert(1) !important;
    transition: .3s ease !important;
    max-width: 120px !important;
    max-height: 55px !important;
    width: auto !important;
    height: auto !important;
}

#homepage-brands .box>img:hover {
    filter: grayscale(0%) invert(0) !important;
}

#homepage-brands .brands-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 15px !important;
}

#homepage-brands .brands-navigation .swiper-brands-prev,
#homepage-brands .brands-navigation .swiper-brands-next {
    position: static !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: .3s ease !important;
    margin: 0 !important;
    top: auto !important;
    transform: none !important;
    color: transparent !important;
    background: transparent !important;
}

#homepage-brands .brands-navigation .swiper-brands-prev::after,
#homepage-brands .brands-navigation .swiper-brands-next::after {
    display: none !important;
    content: "" !important;
    font-size: 0 !important;
}

#homepage-brands .brands-navigation .swiper-brands-prev svg,
#homepage-brands .brands-navigation .swiper-brands-next svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    pointer-events: none !important;
}

#homepage-brands .brands-navigation .swiper-brands-prev:hover,
#homepage-brands .brands-navigation .swiper-brands-next:hover {
    border-color: rgba(255, 255, 255, .6) !important;
    background: rgba(255, 255, 255, .1) !important;
}

.eg-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stats-banner-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 4rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.stats-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 4rem;
    margin-top: 0rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-top: 1px solid var(--color-slate-100);
}

@media (min-width: 640px) {
    .stats-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-metric-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-huge-number {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    color: var(--color-slate-950);
}

@media (min-width: 768px) {
    .stat-huge-number {
        font-size: 4rem;
    }
}

.stat-label-text {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-500);
    margin-top: 0.5rem;
}

/* ==========================================================================
   FELSEFE VE ALINTI BÖLÜMÜ (PHILOSOPHY QUOTE)
   ========================================================================== */
.philosophy-quote-section {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-subtle);
    padding: 6rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.philosophy-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.philosophy-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-slate-500);
    margin-bottom: 1rem;
}

.philosophy-backdrop-text {
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(15, 23, 42, 0.05);
    user-select: none;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: -1.5rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .philosophy-backdrop-text {
        font-size: 7rem;
        margin-bottom: -2.5rem;
    }
}

.philosophy-blockquote {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--color-slate-900);
    max-width: 48rem;
    margin: 0;
}

@media (min-width: 768px) {
    .philosophy-blockquote {
        font-size: 2.25rem;
    }
}

.philosophy-author-cite {
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    margin-top: 1.25rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ==========================================================================
   İLETİŞİM BÖLÜMÜ (CTA / CONTACT BANNER)
   ========================================================================== */
.agency-final-cta-section {
    position: relative;
    width: 100%;
    background-color: var(--color-bg);
    padding: 6.5rem 1.5rem 7.5rem 1.5rem;
    overflow: hidden;
    text-align: center;
}

.contact-banner-container {
    max-width: 58rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-rocket-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background-color: #f1f5f9;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-900);
    margin-bottom: 2rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-rocket-badge:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-rocket-icon {
    width: 22px;
    height: 22px;
    color: #0f172a;
}

.contact-banner-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.035em;
    color: #0f172a;
    margin: 0 0 1.35rem 0;
    text-align: center;
}

.contact-banner-desc {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 44rem;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    font-weight: 400;
}

.desktop-break {
    display: none;
}

@media (min-width: 768px) {
    .desktop-break {
        display: inline;
    }
}

.contact-banner-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.05rem 2.25rem;
    border-radius: var(--radius-full);
    background-color: #0f172a;
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.4);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.cta-btn-primary:hover {
    background-color: #1e293b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -6px rgba(15, 23, 42, 0.5);
}

.cta-btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-btn-primary:hover .cta-btn-arrow {
    transform: translateX(4px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.05rem 2rem;
    border-radius: var(--radius-full);
    background-color: #f1f5f9;
    color: #0f172a;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.cta-btn-secondary:hover {
    background-color: #e2e8f0;
    color: #000000;
    transform: translateY(-2px);
}

.cta-phone-icon {
    font-size: 1.15rem;
    color: #475569;
}