/* ================================
   Nasıl Çalışır / How It Works
   ================================ */

/* Hero */
.nc-hero-section {
    position: relative;
    padding: calc(var(--zentura-header-offset) + 2rem) 2rem 4rem;
    background: var(--zentura-secondary);
    border-top: 1px solid var(--zentura-border);
    overflow: hidden;
}

.nc-hero-section .zentura-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.nc-hero-section .zentura-grid-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.9) 100%);
    pointer-events: none;
}

.nc-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.nc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(17, 96, 98, 0.08);
    border: 1px solid rgba(17, 96, 98, 0.15);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--zentura-primary);
    margin-bottom: 1.25rem;
}

.nc-hero-badge i {
    color: var(--zentura-accent);
}

.nc-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--zentura-primary);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.nc-hero-description {
    font-size: 1.05rem;
    color: var(--zentura-gray);
    line-height: 1.7;
    margin: 0;
}

/* Breadcrumb */
.nc-hero-section .proje-breadcrumb-nav {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.nc-hero-section .proje-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow: hidden;
}

.nc-hero-section .proje-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--zentura-gray);
    white-space: nowrap;
    flex-shrink: 0;
}

.nc-hero-section .proje-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.75rem;
    color: var(--zentura-border);
}

.nc-hero-section .proje-breadcrumb-list a {
    color: var(--zentura-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nc-hero-section .proje-breadcrumb-list a:hover {
    color: var(--zentura-primary);
}

.nc-hero-section .proje-breadcrumb-list li.active {
    color: var(--zentura-primary);
    font-weight: 600;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Container */
.nc-container {
    max-width: var(--zentura-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Steps Overview */
.nc-steps-section {
    padding: 4rem 0;
    background: var(--zentura-light-gray);
}

.nc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.nc-step-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--zentura-secondary);
    border: 1px solid var(--zentura-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.nc-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.nc-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zentura-primary);
    color: var(--zentura-secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.nc-step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 96, 98, 0.08);
    border-radius: 14px;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--zentura-primary);
}

.nc-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zentura-primary);
    margin: 0 0 0.5rem;
}

.nc-step-desc {
    font-size: 0.875rem;
    color: var(--zentura-gray);
    line-height: 1.6;
    margin: 0;
}

/* Content Section */
.nc-content-section {
    padding: 4rem 0;
    background: var(--zentura-secondary);
}

.nc-content-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

/* Sidebar nav */
.nc-sidebar {
    position: sticky;
    top: calc(var(--zentura-header-offset) + 2rem);
    align-self: start;
}

.nc-sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nc-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--zentura-gray);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nc-sidebar-link:hover {
    color: var(--zentura-primary);
    background: var(--zentura-light-gray);
}

.nc-sidebar-link.active {
    color: var(--zentura-primary);
    font-weight: 600;
    background: var(--zentura-light-gray);
    border-color: var(--zentura-border);
}

.nc-sidebar-link i {
    width: 18px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--zentura-accent);
    flex-shrink: 0;
}

/* Article content */
.nc-article {
    min-width: 0;
}

.nc-section {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--zentura-border);
}

.nc-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nc-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zentura-primary);
    margin: 0 0 1rem;
}

.nc-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--zentura-primary);
    color: var(--zentura-secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.nc-section p {
    font-size: 0.95rem;
    color: var(--zentura-text);
    line-height: 1.8;
    margin: 0 0 0.75rem;
}

.nc-section p:last-child {
    margin-bottom: 0;
}

.nc-section ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.nc-section ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    font-size: 0.9rem;
    color: var(--zentura-text);
    line-height: 1.65;
}

.nc-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--zentura-accent);
    border-radius: 50%;
}

.nc-section a {
    color: var(--zentura-accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nc-section a:hover {
    opacity: 0.8;
}

/* Info Cards (step-by-step mini cards) */
.nc-info-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.nc-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--zentura-light-gray);
    border: 1px solid var(--zentura-border);
    border-radius: 12px;
}

.nc-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 96, 98, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.nc-info-icon i {
    font-size: 0.9rem;
    color: var(--zentura-primary);
}

.nc-info-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--zentura-primary);
    margin-bottom: 0.25rem;
}

.nc-info-card p {
    font-size: 0.85rem;
    color: var(--zentura-gray);
    line-height: 1.5;
    margin: 0;
}

/* Highlight boxes */
.nc-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(17, 96, 98, 0.05);
    border: 1px solid rgba(17, 96, 98, 0.15);
    border-radius: 14px;
    margin-top: 1.25rem;
}

.nc-highlight-box > i {
    font-size: 1.1rem;
    color: var(--zentura-primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.nc-highlight-box p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--zentura-primary);
    line-height: 1.6;
    margin: 0;
}

/* Plan cards */
.nc-plan-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.25rem 0;
}

.nc-plan-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    background: var(--zentura-light-gray);
    border: 1px solid var(--zentura-border);
    border-radius: 16px;
    text-align: center;
}

.nc-plan-card.nc-plan-featured {
    background: var(--zentura-secondary);
    border-color: var(--zentura-primary);
    box-shadow: 0 4px 24px rgba(17, 96, 98, 0.1);
}

.nc-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.85rem;
    background: var(--zentura-primary);
    color: var(--zentura-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 99px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nc-plan-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.nc-plan-header i {
    font-size: 1rem;
    color: var(--zentura-primary);
}

.nc-plan-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--zentura-primary);
    margin: 0;
}

.nc-plan-limit {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--zentura-primary);
    margin-bottom: 0.5rem;
}

.nc-plan-card p {
    font-size: 0.82rem;
    color: var(--zentura-gray);
    line-height: 1.5;
    margin: 0;
}

/* CTA section */
.nc-cta-section {
    padding: 4rem 0;
    background: var(--zentura-light-gray);
}

.nc-cta-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--zentura-secondary);
    border: 1px solid var(--zentura-border);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nc-cta-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 96, 98, 0.08);
    border-radius: 14px;
    margin: 0 auto 1.25rem;
    font-size: 1.35rem;
    color: var(--zentura-primary);
}

.nc-cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zentura-primary);
    margin: 0 0 0.5rem;
}

.nc-cta-desc {
    font-size: 0.92rem;
    color: var(--zentura-gray);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.nc-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nc-cta-btn-primary {
    background: var(--zentura-primary);
    color: var(--zentura-secondary);
}

.nc-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 96, 98, 0.2);
}

.nc-cta-btn-secondary {
    background: transparent;
    color: var(--zentura-primary);
    border: 1px solid var(--zentura-border);
}

.nc-cta-btn-secondary:hover {
    background: var(--zentura-light-gray);
    border-color: var(--zentura-primary);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nc-hero-section {
        padding: calc(var(--zentura-header-offset) + 1rem) 1.25rem 2.5rem;
    }

    .nc-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nc-step-card {
        padding: 1.5rem 1rem;
    }

    .nc-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nc-sidebar {
        position: relative;
        top: auto;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--zentura-border);
    }

    .nc-sidebar-nav {
        flex-direction: row;
        gap: 0.35rem;
    }

    .nc-sidebar-link {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }

    .nc-container {
        padding: 0 1.25rem;
    }

    .nc-plan-cards {
        grid-template-columns: 1fr;
    }

    .nc-cta-card {
        padding: 2rem 1.5rem;
    }

    .nc-cta-buttons {
        flex-direction: column;
    }

    .nc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nc-steps-grid {
        grid-template-columns: 1fr;
    }
}
