/* ====================================
   ANASAYFA BÖLÜM STİLLERİ
   Nasıl Çalışır, Örnek Görünüm, 
   Avantajlar, Son Maaşlar, Paketler, SSS
   ==================================== */

/* ========== HERO DASHBOARD PREVIEW ========== */
.hero-dashboard-wrap {
    position: relative;
    max-width: 960px;
    margin: 60px auto 0;
    perspective: 1200px;
}

.hero-dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 3, 35, 0.20) 0%, rgba(56, 189, 248, 0.08) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.hero-dashboard {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 80px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.08);
    transform: rotateX(4deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    display: flex;
    background: #ffffff;
    min-height: 380px;
}

.hero-dashboard:hover {
    transform: rotateX(0deg);
    box-shadow:
        0 32px 100px -16px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* --- Sidebar --- */
.hd-sidebar {
    width: 160px;
    background: #000323;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.hd-sidebar-logo {
    padding: 4px 8px 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hd-logo-icon {
    width: 28px;
    height: 28px;
    background: #000323;
    border-radius: 8px;
}

.hd-sidebar-item {
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.3s;
}

.hd-sidebar-item.hd-sidebar-active {
    background: #000323;
}

.hd-sidebar-spacer {
    flex: 1;
}

.hd-sidebar-bottom {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hd-sidebar-btn {
    height: 36px;
    border-radius: 8px;
    background: #000323;
}

/* --- Main Content --- */
.hd-main {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

/* --- Announcement --- */
.hd-announce {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
}

.hd-announce-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F59E0B;
    flex-shrink: 0;
}

.hd-announce-text {
    height: 10px;
    width: 60%;
    background: #e2e8f0;
    border-radius: 4px;
}

/* --- Stat Cards --- */
.hd-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hd-stat-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}

.hd-stat-label {
    height: 8px;
    width: 65%;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 12px;
}

.hd-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #000323;
    line-height: 1;
    margin-bottom: 8px;
}

.hd-stat-desc {
    height: 7px;
    width: 80%;
    background: #f1f5f9;
    border-radius: 3px;
}

/* --- Streak --- */
.hd-streak {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #00064a 0%, #000323 100%);
    border-radius: 12px;
    padding: 14px 20px;
}

.hd-streak-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hd-streak-emoji {
    font-size: 22px;
}

.hd-streak-num {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.hd-streak-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.hd-streak-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #000323, #10B981);
    border-radius: 999px;
    animation: hd-bar-grow 1.5s ease-out 1s forwards;
}

@keyframes hd-bar-grow {
    to {
        width: 57%;
    }
}

/* --- Segment --- */
.hd-segment {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}

.hd-segment-header {
    margin-bottom: 12px;
}

.hd-text-line {
    background: #e2e8f0;
    border-radius: 4px;
}

.hd-text-sm {
    height: 9px;
    width: 35%;
}

.hd-text-xs {
    height: 7px;
    width: 50%;
    margin: 6px auto 0;
}

.hd-segment-bar {
    display: flex;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    gap: 3px;
}

.hd-seg-part {
    border-radius: 999px;
    animation: hd-seg-enter 1s ease-out 1.2s both;
}

.hd-seg-freelance {
    background: linear-gradient(90deg, #00738A, #60A5FA);
}

.hd-seg-agency {
    background: linear-gradient(90deg, #10B981, #34D399);
}

@keyframes hd-seg-enter {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.hd-segment-labels {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.hd-seg-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.hd-seg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hd-seg-dot-blue {
    background: #00738A;
}

.hd-seg-dot-green {
    background: #10B981;
}

/* --- Quick Actions --- */
.hd-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hd-action-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.hd-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 16px;
    color: #94a3b8;
}

/* --- Staggered fade-in animation --- */
.anim-fade {
    opacity: 0;
    transform: translateY(12px);
    animation: hd-fade-in 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes hd-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Pulse shimmer on stat values --- */
.hd-pulse {
    animation: hd-shimmer 2.5s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes hd-shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hd-sidebar {
        display: none;
    }

    .hero-dashboard {
        min-height: 300px;
    }

    .hd-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hd-stat-value {
        font-size: 22px;
    }

    .hd-stat-card {
        padding: 12px;
    }

    .hd-main {
        padding: 16px;
        gap: 12px;
    }

    .hd-streak-num {
        font-size: 20px;
    }

    .hd-actions {
        gap: 8px;
    }

    .hd-action-card {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-dashboard-wrap {
        margin-top: 36px;
    }

    .hero-dashboard {
        border-radius: 12px;
        transform: rotateX(2deg);
    }

    .hd-actions {
        grid-template-columns: repeat(3, 1fr);
    }

    .hd-stat-value {
        font-size: 18px;
    }
}


/* ========== ORTAK SECTION ========== */
.home-section {
    padding: 80px 0;
    position: relative;
}

.home-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-badge-indigo {
    background: #eef2ff;
    color: #003B52;
    border: 1px solid #c7d2fe;
}

.section-badge-emerald {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.section-badge-amber {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.section-badge-sky {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.section-badge-purple {
    background: #f5f3ff;
    color: #6d28d9;
    border: 1px solid #c4b5fd;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #000323;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 44px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== NASIL ÇALIŞIR ========== */
#how-it-works {
    background: linear-gradient(180deg, transparent 0%, #f8fafc 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

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

.step-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 3, 35, 0.15);
    border-color: #c7d2fe;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    color: white;
}

.step-number-1 {
    background: var(--secondary, #FF0033);
}

.step-number-2 {
    background: linear-gradient(135deg, #0EA5E9, #06B6D4);
}

.step-number-3 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #000323;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Adımlar arası ok */
.step-arrow {
    display: none;
}

@media (min-width: 768px) {
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: -24px;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        color: #94a3b8;
        z-index: 2;
        font-size: 16px;
    }
}

/* ========== ÖRNEK GÖRÜNÜM ========== */
#example-view {
    background: #000323;
    overflow: hidden;
}

#example-view .section-title {
    color: white;
}

#example-view .section-subtitle {
    color: #94a3b8;
}

.example-preview {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.example-browser {
    background: #00064a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #000323;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.browser-dot-red {
    background: #ef4444;
}

.browser-dot-yellow {
    background: #f59e0b;
}

.browser-dot-green {
    background: #22c55e;
}

.browser-url {
    flex: 1;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    color: #64748b;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.browser-content {
    padding: 32px;
}

/* Örnek senaryo kart önizlemesi */
.preview-scenario {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.preview-emoji {
    font-size: 32px;
}

.preview-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.preview-badge {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 3, 35, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(0, 3, 35, 0.3);
}

.preview-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

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

.preview-price-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.preview-price-card.active {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
}

.preview-price-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.preview-price-value {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.preview-price-card.active .preview-price-value {
    color: #FF0033;
}

.preview-bar-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}

.preview-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.preview-bar-muted {
    background: rgba(255, 255, 255, 0.06);
}

.preview-bar-active {
    background: linear-gradient(to top, rgba(56, 189, 248, 0.3), rgba(56, 189, 248, 0.8));
}

.preview-bar-highlight {
    background: linear-gradient(to top, rgba(56, 189, 248, 0.6), #FF0033);
}

/* Glow efekt */
.preview-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.preview-glow-1 {
    background: #000323;
    top: -100px;
    left: -100px;
}

.preview-glow-2 {
    background: #0EA5E9;
    bottom: -100px;
    right: -100px;
}

/* ========== AVANTAJLAR ========== */
#advantages {
    background: linear-gradient(180deg, #f8fafc 0%, transparent 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.advantage-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:nth-child(1)::before {
    background: var(--secondary, #FF0033);
}

.advantage-card:nth-child(2)::before {
    background: linear-gradient(90deg, #0EA5E9, #06B6D4);
}

.advantage-card:nth-child(3)::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.advantage-card:nth-child(4)::before {
    background: linear-gradient(90deg, #F59E0B, #D97706);
}

.advantage-card:nth-child(5)::before {
    background: linear-gradient(90deg, #EF4444, #DC2626);
}

.advantage-card:nth-child(6)::before {
    background: var(--secondary, #FF0033);
}

.advantage-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.advantage-icon-indigo {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
}

.advantage-icon-sky {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
}

.advantage-icon-emerald {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.advantage-icon-amber {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.advantage-icon-red {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.advantage-icon-purple {
    background: #f5f3ff;
    border: 1px solid #c4b5fd;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    color: #000323;
    margin-bottom: 10px;
}

.advantage-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* ========== SON FİYAT KAYITLARI (Dashboard Kart Tasarımı) ========== */
#recent-prices {
    background: linear-gradient(180deg, transparent 0%, #f8fafc 100%);
}

/* Grid: dashboard ile aynı */
.hp-prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}

/* Kart: dashboard .hizmetle-price-card ile birebir */
.hp-price-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

/* Üst renk çizgisi */
.hp-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.25s;
}

.hp-price-card[data-card-segment="freelance"]::before {
    background: #000323;
}

.hp-price-card[data-card-segment="agency"]::before {
    background: #10b981;
}

.hp-price-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Header: badge + tarih */
.hp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.hp-segment-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-badge-freelance {
    background: rgba(0, 3, 35, 0.1);
    color: #000323;
}

.hp-badge-agency {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.hp-date-tag {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Hizmet adı */
.hp-service-title {
    font-size: 18px;
    font-weight: 800;
    color: #000323;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.hp-service-category {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Body: seviye/deneyim */
.hp-card-body {
    flex: 1;
    margin-bottom: 24px;
}

.hp-info-tag {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.hp-info-tag svg {
    flex-shrink: 0;
    color: #94a3b8;
}

/* Footer: fiyat birimi + fiyat */
.hp-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hp-price-unit {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}

.hp-price-tag {
    font-size: 24px;
    font-weight: 900;
    color: #000323;
    letter-spacing: -0.5px;
}

.recent-more {
    text-align: center;
    margin-top: 32px;
}

/* ========== PAKETLER / FİYATLANDIRMA (Dark Theme) ========== */
.pricing-dark {
    background: #000323 !important;
    overflow: hidden;
    position: relative;
}

/* Glow efektleri */
.pricing-dark::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 3, 35, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-dark::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-dark .section-title {
    color: #ffffff;
}

.pricing-dark .section-subtitle {
    color: #94a3b8;
}

#pricing {
    background: #000323;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
}

.pricing-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.pricing-card.pricing-popular {
    border-color: rgba(0, 3, 35, 0.5);
    border-width: 2px;
    background: rgba(0, 3, 35, 0.08);
    box-shadow: 0 0 60px -12px rgba(0, 3, 35, 0.25);
}

.pricing-card.pricing-popular:hover {
    box-shadow: 0 0 80px -12px rgba(0, 3, 35, 0.35);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary, #FF0033);
    color: white;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-price-wrap {
    margin-bottom: 28px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pricing-price-suffix {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.pricing-price-free {
    font-size: 40px;
    font-weight: 800;
    color: #10B981;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #cbd5e1;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-check {
    color: #10B981;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cross {
    color: #475569;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
}

.pricing-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pricing-cta-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-cta-primary {
    background: #000323;
    border: 2px solid #000323;
    color: white;
}

.pricing-cta-primary:hover {
    background: #003B52;
    border-color: #003B52;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 3, 35, 0.4);
}


/* ========== SIKÇA SORULAN SORULAR ========== */
#faq {
    background: linear-gradient(180deg, transparent 0%, #f8fafc 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c7d2fe;
}

.faq-item.active {
    border-color: #000323;
    box-shadow: 0 4px 16px -4px rgba(0, 3, 35, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #000323;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #000323;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #64748b;
}

.faq-item.active .faq-toggle {
    background: #000323;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* ========== CTA BÖLÜMÜ ========== */
#cta-section {
    padding: 80px 0;
}

.cta-box {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #000323 0%, #00064a 50%, #000323 100%);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 3, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(56, 189, 248, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 40px;
    }
}

.cta-subtitle {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #000323;
    color: white;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    background: #003B52;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 3, 35, 0.4);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.cta-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* ========== SOSYAL KANIT (Sayaçlar) ========== */
#social-proof {
    background: linear-gradient(180deg, #f8fafc 0%, transparent 100%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

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

.proof-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.proof-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.proof-icon-indigo {
    background: #eef2ff;
    color: #000323;
}

.proof-icon-sky {
    background: #f0f9ff;
    color: #0EA5E9;
}

.proof-icon-emerald {
    background: #ecfdf5;
    color: #10B981;
}

.proof-icon-amber {
    background: #fffbeb;
    color: #F59E0B;
}

.proof-counter {
    font-size: 36px;
    font-weight: 900;
    color: #000323;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

/* ========== SON YAZILAR (Blog) ========== */
#blog {
    background: linear-gradient(180deg, transparent 0%, #f8fafc 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

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

.blog-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2ff;
    color: #000323;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000323;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

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

.blog-card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-meta {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    gap: 6px;
    align-items: center;
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

/* ========== ANİMASYONLAR ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .home-section {
        padding: 56px 0;
    }

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

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .step-card {
        padding: 28px 20px;
    }

    .advantage-card {
        padding: 24px 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .cta-box {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 26px;
    }

    /* Example Browser Düzeltmesi */
    .browser-content {
        padding: 16px;
    }

    .preview-scenario {
        padding: 16px;
    }

    .browser-bar {
        padding: 12px 16px;
    }

    .preview-title {
        font-size: 18px;
    }

    .preview-price-card {
        padding: 12px 8px;
    }

    .preview-price-value {
        font-size: 18px;
    }

    .preview-prices {
        gap: 8px;
    }

    .browser-url {
        font-size: 11px;
        padding: 6px 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}