/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    height: 63px;
    width: auto;
    max-width: min(250px, 52vw);
    object-fit: contain;
}

.site-logo--footer {
    height: 55px;
    max-width: 220px;
}

@media (max-width: 640px) {
    .site-logo {
        height: 51px;
    }

    .site-logo--footer {
        height: 47px;
    }
}

/* Özel animasyonlar için bir örnek */
button {
    transition: transform 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Growth CTA banner (anasayfa) */
.growth-cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #07040f 0%, #12082a 45%, #0a0618 100%);
    box-shadow: 0 20px 50px rgba(11, 4, 32, 0.45);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2rem;
}

.growth-cta-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.growth-cta-glow--left {
    width: 260px;
    height: 260px;
    left: 4%;
    bottom: -25%;
    background: rgba(88, 28, 135, 0.12);
}

.growth-cta-glow--right {
    width: 300px;
    height: 300px;
    right: 2%;
    top: 0;
    background: rgba(147, 51, 234, 0.14);
}

.growth-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 520px;
}

.growth-cta-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.growth-cta-subtitle {
    margin: 0 0 1.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.growth-cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    background: #7c3aed;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.growth-cta-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.55);
}

.growth-cta-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.growth-cta-deco--left {
    left: 2%;
    bottom: -4%;
    color: #c4b5fd;
    opacity: 0.12;
}

.growth-cta-deco--right {
    right: 1%;
    top: 50%;
    transform: translateY(-48%);
    color: #d8b4fe;
    opacity: 0.14;
}

.growth-cta-icon {
    display: block;
    width: min(280px, 22vw);
    height: min(280px, 22vw);
    min-width: 200px;
    min-height: 200px;
}

.growth-cta-icon--chart {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.08));
}

@media (max-width: 1024px) {
    .growth-cta-icon {
        width: 200px;
        height: 200px;
        min-width: 160px;
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .growth-cta-banner {
        min-height: 300px;
        padding: 2.75rem 1.25rem 2.25rem;
    }

    .growth-cta-deco--left {
        left: -6%;
        bottom: -10%;
        opacity: 0.1;
    }

    .growth-cta-deco--right {
        right: -8%;
        opacity: 0.11;
    }

    .growth-cta-icon {
        width: 140px;
        height: 140px;
        min-width: 120px;
        min-height: 120px;
    }

    .growth-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Legacy growth-cta (keep for compatibility) */
.growth-cta {
    position: relative;
    overflow: hidden;
}
.growth-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg,
        rgba(255,255,255,0.03) 0 6px,
        transparent 6px 12px);
    pointer-events: none;
    mix-blend-mode: overlay;
}
.growth-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    pointer-events: none;
}

/* Case Study card styles */
.case-card{
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transition: transform .18s ease, box-shadow .18s ease;
}
.case-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.case-card .case-image{ position: relative; overflow: hidden; }
.case-card .case-image::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 100%); }
.case-badge{ display:inline-flex; align-items:center; gap:.4rem; padding:.28rem .6rem; border-radius:999px; font-size:13px; font-weight:600; background:#161b22; border:1px solid rgba(255,255,255,0.08); }
.case-stats p{ margin:0; }
.case-chart {
    height: 100px;
    border-radius: 12px;
    background: #161b22;
    overflow: hidden;
}
.filter-btn{ transition: all .12s ease; }
.filter-btn.active{ background:#0b0f14; border-color:rgba(255,255,255,0.06); color:#fff; }

/* How We Work process flow */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem 1rem;
}
@media (min-width: 1280px) {
    .process-flow {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
    }
}
.process-step {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: 170px;
    text-align: center;
}
@media (min-width: 768px) {
    .process-step { flex: 0 0 calc(33.333% - 1rem); }
}
@media (min-width: 1280px) {
    .process-step { flex: 1; max-width: 155px; }
}
.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.12);
    border: 2px solid rgba(147, 51, 234, 0.45);
    color: #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.process-number {
    font-size: 22px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.35rem;
    line-height: 1;
}
.process-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.process-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #9ca3af;
    margin: 0;
}
.process-arrow {
    display: none;
    flex-shrink: 0;
    align-self: center;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 2px;
    margin-top: -4rem;
}
@media (min-width: 1280px) {
    .process-arrow { display: flex; }
}

/* Pricing cards */
.pricing-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.pricing-billing-toggle button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.pricing-billing-toggle button:hover {
    color: #fff;
    transform: none;
}
.pricing-billing-toggle button.active {
    background: #9333ea;
    color: #fff;
}
.pricing-save-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(147,51,234,0.25);
    color: #c084fc;
}
.pricing-billing-toggle button.active .pricing-save-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.pricing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(11,16,27,0.95), rgba(8,10,18,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: transform .18s ease, box-shadow .18s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.pricing-card-popular {
    border-color: #9333ea;
    box-shadow: 0 0 0 1px rgba(147,51,234,0.3), 0 20px 50px rgba(147,51,234,0.12);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #9333ea;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}
.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.45;
}
.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.pricing-btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    background: transparent;
}
.pricing-btn-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}
.pricing-btn-primary {
    background: #9333ea;
    color: #fff;
    border: 1px solid #9333ea;
}
.pricing-btn-primary:hover {
    background: #7e22ce;
    border-color: #7e22ce;
}

/* Lead page */
.lead-feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.lead-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(147,51,234,0.15);
    border: 1px solid rgba(147,51,234,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.lead-form-card {
    background: linear-gradient(180deg, rgba(11,16,27,0.98), rgba(8,10,18,0.99));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
    .lead-form-card { padding: 2rem 2.25rem; }
}
.lead-input-wrap {
    position: relative;
}
.lead-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.5;
    pointer-events: none;
}
.lead-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color .15s ease;
}
.lead-input::placeholder { color: #6b7280; }
.lead-input:focus { border-color: rgba(147,51,234,0.5); }
.lead-input-hint {
    margin: 0.5rem 0 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: #9ca3af;
}
.lead-input-hint strong {
    color: #d8b4fe;
    font-weight: 600;
}
.lead-pill {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.lead-pill:hover { color: #fff; transform: none; }
.lead-pill.active {
    background: rgba(147,51,234,0.2);
    border-color: #9333ea;
    color: #fff;
}
.lead-goal-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: border-color .12s ease, background .12s ease;
}
.lead-goal-card:hover { border-color: rgba(147,51,234,0.4); }
.lead-goal-card.active {
    border-color: #9333ea;
    background: rgba(147,51,234,0.1);
}
.lead-goal-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
    position: relative;
}
.lead-goal-card.active .lead-goal-radio {
    border-color: #9333ea;
}
.lead-goal-card.active .lead-goal-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #9333ea;
}
.lead-submit-btn {
    display: block;
    width: 100%;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(to right, #9333ea, #a855f7);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: opacity .15s ease;
    text-align: center;
    text-decoration: none;
}
.lead-submit-btn:hover { opacity: 0.92; transform: none; }
.lead-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #9333ea;
    color: #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lead-process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}
@media (min-width: 768px) {
    .lead-process-flow {
        grid-template-columns: repeat(4, 1fr);
    }
    .lead-process-flow::before {
        content: "";
        position: absolute;
        top: 32px;
        left: 12%;
        right: 12%;
        border-top: 2px dotted rgba(147,51,234,0.35);
        z-index: 0;
    }
}
.lead-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.lead-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(147,51,234,0.15);
    border: 2px solid #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 0.75rem;
}
.lead-process-num {
    font-size: 20px;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 0.35rem;
    line-height: 1;
}
.lead-brand-logo {
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 0.08em;
}
.lead-cta-banner {
    background: linear-gradient(135deg, rgba(88,28,135,0.4), rgba(11,16,27,0.95) 50%, rgba(88,28,135,0.25));
    border: 1px solid rgba(147,51,234,0.25);
}

/* Home stats banner */
.home-stats-banner {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
    .home-stats-banner { padding: 2rem 2.5rem; }
}
.home-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .home-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}
.home-stat-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.home-stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-stat-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}
.home-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}
.home-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin: 0.15rem 0 0;
    line-height: 1.3;
}

/* Partners / referans logoları */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.75rem 3.75rem;
}

.partner-logo {
    display: block;
    height: 52px;
    width: auto;
    object-fit: contain;
    opacity: 0.88;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo--google { width: 148px; }
.partner-logo--meta { width: 200px; }
.partner-logo--shopify { width: 210px; }
.partner-logo--woo { width: 220px; }
.partner-logo--klaviyo { width: 200px; }

@media (max-width: 640px) {
    .partners-logos {
        gap: 2rem 1.75rem;
    }

    .partner-logo {
        height: 40px;
    }

    .partner-logo--google { width: 118px; }
    .partner-logo--meta { width: 158px; }
    .partner-logo--shopify { width: 168px; }
    .partner-logo--woo { width: 175px; }
    .partner-logo--klaviyo { width: 158px; }
}

/* Contact page */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}
.contact-social:hover {
    background: rgba(147,51,234,0.2);
    color: #fff;
    transform: none;
}
.contact-form-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
    .contact-form-card { padding: 2rem 2.25rem; }
}
.contact-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .15s ease;
}
.contact-input::placeholder { color: #6b7280; }
.contact-input:focus { border-color: rgba(147,51,234,0.5); }
.contact-textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-submit-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    background: #9333ea;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .15s ease;
}
.contact-submit-btn:hover {
    background: #7e22ce;
    transform: none;
}
.contact-kvk {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #9ca3af;
    font-size: 0.78rem;
    line-height: 1.5;
}
.contact-kvk-checkbox {
    margin-top: 0.15rem;
    accent-color: #9333ea;
    flex-shrink: 0;
}
.contact-kvk a {
    color: #c084fc;
    text-decoration: underline;
}

/* Nav services dropdown */
.nav-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
}
.nav-dropdown-trigger:hover { transform: none; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 260px;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    z-index: 50;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 13px;
    color: #d1d5db;
    text-decoration: none;
    transition: background .12s ease, color .12s ease;
}
.nav-dropdown-menu a:hover {
    background: rgba(147,51,234,0.15);
    color: #fff;
}
.nav-dropdown-menu .nav-dropdown-all {
    margin-top: 0.25rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #a855f7;
    font-weight: 600;
}

/* Service detail pages */
.service-hero-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.service-hero-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
}
.service-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-highlight-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.45;
}
.service-highlight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: 700;
}
.service-feature-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.25rem;
    transition: border-color .15s ease;
}
.service-feature-card:hover {
    border-color: rgba(147,51,234,0.35);
}
.service-step-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.25rem;
}
.service-step-num {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
}
.service-cta-banner {
    background: linear-gradient(135deg, rgba(88,28,135,0.25), #0d1117);
    border: 1px solid rgba(147,51,234,0.2);
}
.service-other-link {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #d1d5db;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: background .12s ease, color .12s ease;
}
.service-other-link:hover {
    background: rgba(147,51,234,0.15);
    color: #fff;
}

/* About page */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.about-stat-box {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
}
.about-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem;
}
.about-stat-label {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}
.about-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem;
}
.about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.about-icon-vision {
    background: rgba(147,51,234,0.15);
    color: #a855f7;
    border: 1px solid rgba(147,51,234,0.3);
}
.about-icon-mission {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.25);
}
.about-value-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color .15s ease;
}
.about-value-card:hover {
    border-color: rgba(147,51,234,0.35);
}
.about-value-num {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.65rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* Blog */
.blog-grid {
    align-items: stretch;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(147, 51, 234, 0.25);
}

.blog-card-image {
    display: block;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.blog-card-image--violet { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #a855f7 100%); }
.blog-card-image--fuchsia { background: linear-gradient(135deg, #86198f 0%, #c026d3 50%, #e879f9 100%); }
.blog-card-image--orange { background: linear-gradient(135deg, #9a3412 0%, #ea580c 50%, #fb923c 100%); }
.blog-card-image--emerald { background: linear-gradient(135deg, #065f46 0%, #059669 50%, #34d399 100%); }
.blog-card-image--sky { background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #38bdf8 100%); }
.blog-card-image--pink { background: linear-gradient(135deg, #9d174d 0%, #db2777 50%, #f472b6 100%); }

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.35rem 1.5rem;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 13px;
    color: #9ca3af;
}

.blog-badge {
    display: inline-flex;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #c4b5fd;
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.65rem;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.12s ease;
}

.blog-card-title a:hover {
    color: #c4b5fd;
}

.blog-card-excerpt {
    flex: 1;
    margin: 0 0 1rem;
    font-size: 14px;
    line-height: 1.55;
    color: #9ca3af;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #a855f7;
    text-decoration: none;
    transition: color 0.12s ease;
}

.blog-card-link:hover {
    color: #c4b5fd;
}

.blog-article-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    font-size: 14px;
    font-weight: 500;
    color: #a855f7;
    text-decoration: none;
    transition: color 0.12s ease;
}

.blog-back-link:hover {
    color: #c4b5fd;
}

.blog-article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.blog-article-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #9ca3af;
    max-width: 720px;
}

.blog-article-content {
    padding: 2.5rem 0 3rem;
    max-width: 720px;
}

.blog-article-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: #fff;
}

.blog-article-content h2:first-child {
    margin-top: 0;
}

.blog-article-content p {
    margin: 0 0 1rem;
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
}

.blog-article-content ul {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    color: #d1d5db;
}

.blog-article-content li {
    margin-bottom: 0.45rem;
    font-size: 15px;
    line-height: 1.6;
}

.blog-article-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), #0d1117);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.blog-article-cta h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.blog-article-cta p {
    margin: 0 0 1rem;
    font-size: 14px;
    color: #9ca3af;
}

/* Inner pages — okunabilirlik için küçük metinler */
body.inner-page main .text-xs {
    font-size: 0.875rem;
    line-height: 1.55;
}

body.inner-page .text-\[11px\] {
    font-size: 13px;
}

body.inner-page .service-step-card h3,
body.inner-page .about-value-card h3 {
    font-size: 0.9375rem;
}

body.inner-page .service-feature-card h3 {
    font-size: 0.9375rem;
}

/* Homepage — okunabilirlik */
body.page-home main .text-xs {
    font-size: 0.875rem;
    line-height: 1.55;
}

body.page-home main .text-\[11px\] {
    font-size: 13px;
}

body.page-home main .text-\[10px\] {
    font-size: 12px;
}

body.page-home .home-services-grid h3.text-sm {
    font-size: 0.9375rem;
}

body.page-home .home-services-grid .group > div:first-child {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.375rem;
}

body.page-home .hero-social-proof {
    font-size: 0.9375rem;
}

body.page-home .hero-social-avatars > div {
    width: 2.75rem;
    height: 2.75rem;
}

body.page-home .hero-social-proof .tracking-tight {
    font-size: 1rem;
}

/* ===== Global responsive ===== */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) and (max-width: 1200px) {
    .main-nav {
        gap: 0.65rem !important;
        font-size: 0.8125rem;
    }
    #site-header .header-cta {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767px) {
    main.py-20 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-dashboard {
        padding: 1.25rem !important;
        border-radius: 1.25rem !important;
    }

    .case-card .grid.grid-cols-3 {
        gap: 0.5rem;
    }

    .case-card .text-2xl {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .home-stats-banner {
        padding: 1.25rem 1rem;
    }

    .home-stat-value {
        font-size: 1.35rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-billing-toggle {
        width: 100%;
        justify-content: center;
    }

    .service-cta-banner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 1.25rem;
        padding: 1.5rem !important;
    }

    .service-cta-banner > a {
        width: 100%;
        text-align: center;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .lead-form-card,
    .contact-form-card {
        padding: 1.25rem;
    }

    .lead-pill-group {
        gap: 0.5rem;
    }

    .growth-cta-banner {
        min-height: 280px;
    }

    #mobile-menu a {
        display: block;
        padding: 0.35rem 0;
    }

    .nav-dropdown-menu {
        left: auto;
        right: 0;
        min-width: 220px;
        max-width: calc(100vw - 2rem);
    }

    .process-flow {
        gap: 1rem;
    }

    .process-step {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .home-stats-grid {
        grid-template-columns: 1fr;
    }

    .home-stat-item {
        justify-content: flex-start;
    }

    .service-other-link {
        font-size: 0.8125rem;
        padding: 0.65rem 0.85rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hero-dashboard {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hero-dashboard-brand-wrap {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, #8b5cf6, #d946ef);
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.2);
}

.hero-dashboard-brand-icon {
    display: block;
    width: 1.65rem;
    height: 1.65rem;
    object-fit: contain;
}

.hero-dashboard > .absolute {
    pointer-events: none;
}

.hero-dashboard aside {
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .hero-dashboard .flex-col.lg\\:flex-row {
        min-width: min(100%, 640px);
    }
}