/* SEO Hizmeti — Premium içerik bileşenleri */

.seo-premium {
    --seo-accent: #059669;
    --seo-accent-light: #10b981;
    --seo-dark: #0f172a;
    --seo-muted: #64748b;
}

.seo-stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.seo-stat {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
}

.seo-stat__value {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    color: #047857;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.seo-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #065f46;
    line-height: 1.4;
}

.seo-hero-figure {
    position: relative;
}

.seo-hero-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.seo-hero-badge i {
    color: #fbbf24;
    margin-right: 6px;
}

.seo-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.seo-pillar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seo-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(5, 150, 105, 0.12);
}

.seo-pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.seo-pillar h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
}

.seo-pillar p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
}

.seo-metrics-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #064e3b 100%);
    border-radius: 20px;
    padding: 28px 26px;
    margin-bottom: 28px;
    color: #fff;
    overflow: hidden;
}

.seo-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.22);
    color: #6ee7b7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.seo-tag--light {
    background: rgba(255, 255, 255, 0.14);
    color: #a7f3d0;
}

.seo-metrics-panel__text h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.seo-metrics-panel__text p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.seo-metrics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.seo-metrics-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.seo-metrics-list i {
    color: #34d399;
}

.seo-metrics-panel__chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    height: 180px;
    padding: 0 8px;
}

.seo-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
}

.seo-bar span {
    display: block;
    width: 100%;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(180deg, #34d399 0%, #059669 100%);
    box-shadow: 0 4px 14px rgba(52, 211, 153, 0.35);
    animation: seoBarGrow 1.2s ease-out both;
}

.seo-bar--1 span { height: 35%; animation-delay: 0.1s; }
.seo-bar--2 span { height: 48%; animation-delay: 0.2s; }
.seo-bar--3 span { height: 55%; animation-delay: 0.3s; }
.seo-bar--4 span { height: 68%; animation-delay: 0.4s; }
.seo-bar--5 span { height: 82%; animation-delay: 0.5s; }
.seo-bar--6 span { height: 100%; animation-delay: 0.6s; }

.seo-bar em {
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

@keyframes seoBarGrow {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.seo-service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 18px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.seo-service-card:hover {
    background: #ecfdf5;
    border-color: #6ee7b7;
}

.seo-service-card i {
    font-size: 22px;
    color: #059669;
    margin-bottom: 10px;
}

.seo-service-card h4 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #1e293b;
}

.seo-service-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: #64748b;
}

.seo-process {
    margin-bottom: 28px;
}

.seo-process h3 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

.seo-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.seo-process__steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.seo-process__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-process__steps strong {
    display: block;
    font-size: 0.98rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.seo-process__steps p {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}

.seo-compare {
    margin-bottom: 28px;
}

.seo-compare h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

.seo-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.seo-compare__col {
    border-radius: 16px;
    padding: 20px 18px;
}

.seo-compare__col--bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.seo-compare__col--good {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
}

.seo-compare__col h4 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 800;
}

.seo-compare__col--bad h4 {
    color: #b91c1c;
}

.seo-compare__col--good h4 {
    color: #047857;
}

.seo-compare__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.seo-compare__col li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #475569;
    padding-left: 4px;
}

.seo-faq {
    margin-bottom: 28px;
}

.seo-faq h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

.seo-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.seo-faq__item summary {
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 700;
    color: #1e293b;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seo-faq__item summary::-webkit-details-marker {
    display: none;
}

.seo-faq__item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: #059669;
    font-weight: 400;
}

.seo-faq__item[open] summary::after {
    content: "−";
}

.seo-faq__item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
}

.seo-inline-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
    border-radius: 20px;
    padding: 26px 28px;
    margin-bottom: 24px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.28);
}

.seo-inline-cta h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.seo-inline-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 480px;
}

.seo-inline-cta__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.seo-inline-cta .ecx-btn-primary {
    background: #fff;
    color: #047857;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.seo-inline-cta .ecx-btn-whatsapp {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .seo-stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-pillars,
    .seo-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-metrics-panel {
        grid-template-columns: 1fr;
    }

    .seo-metrics-panel__chart {
        height: 140px;
    }
}

@media (max-width: 575px) {
    .seo-stats-band,
    .seo-pillars,
    .seo-services-grid,
    .seo-compare__grid {
        grid-template-columns: 1fr;
    }

    .seo-inline-cta__actions {
        width: 100%;
    }

    .seo-inline-cta .ecx-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .seo-hero-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        font-size: 0.8rem;
        text-align: center;
    }
}
