/* ════════════════════════════════════════════════════════════════════
   DOESTAR · SEO Landing — programmatic kombin önerileri sayfaları
   ════════════════════════════════════════════════════════════════════ */

.seo-landing {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ═════════ HERO ═════════ */
.seo-hero {
    position: relative;
    text-align: center;
    padding: 64px 24px 56px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse at top, rgba(225, 29, 72, .08), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(124, 58, 237, .06), transparent 60%),
        linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.seo-hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, .07), transparent 70%);
    pointer-events: none;
}
.seo-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .07), transparent 70%);
    pointer-events: none;
}
.seo-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.seo-hero-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e11d48;
    margin-bottom: 16px;
    padding: 5px 14px;
    border: 1px solid rgba(225, 29, 72, .25);
    border-radius: 999px;
    background: rgba(225, 29, 72, .05);
}

.seo-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    line-height: 1.05;
    font-family: var(--font-display, "Playfair Display", Georgia, serif);
}

.seo-hero-intro {
    margin: 0 auto 32px;
    max-width: 600px;
    font-size: 16px;
    color: #525252;
    line-height: 1.7;
}
.seo-hero-intro p { margin: 0 0 12px; }
.seo-hero-intro p:last-child { margin: 0; }

.seo-hero-stats {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 18px 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    border: 1px solid #ededed;
}
.seo-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.seo-hero-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}
.seo-hero-stat em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #737373;
}

/* ═════════ SECTION ═════════ */
.seo-section { display: flex; flex-direction: column; gap: 22px; }

.seo-section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.seo-section-head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    font-family: var(--font-display, "Playfair Display", Georgia, serif);
}
.seo-section-head p {
    margin: 0;
    color: #737373;
    font-size: 15px;
}

/* ═════════ KOMBİNLER ═════════ */
.seo-combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}
.seo-combo-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.seo-combo-card:hover {
    transform: translateY(-4px);
    border-color: #d4d4d4;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.seo-combo-cover {
    aspect-ratio: 4 / 5;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}
.seo-combo-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.seo-combo-body h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.01em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.seo-combo-cat {
    font-size: 11px;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.seo-combo-author {
    font-size: 12px;
    color: #737373;
}

/* ═════════ ÜRÜNLER ═════════ */
.seo-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.seo-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.seo-product-card:hover {
    transform: translateY(-3px);
    border-color: #d4d4d4;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.seo-product-img {
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}
.seo-product-body {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.seo-product-brand {
    font-size: 10.5px;
    font-weight: 700;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.seo-product-body h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 34px;
}
.seo-product-body strong {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 800;
    color: #0a0a0a;
}

/* ═════════ MARKALAR ═════════ */
.seo-brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.seo-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 8px;
    border: 1.5px solid #e5e5e5;
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 13.5px;
    font-weight: 600;
    transition: border-color .15s ease, background .15s ease;
}
.seo-brand-pill img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: #f5f5f5;
}
.seo-brand-pill:hover {
    border-color: #0a0a0a;
    background: #fafafa;
}

/* ═════════ FAQ ═════════ */
.seo-faq-list { display: flex; flex-direction: column; gap: 10px; }
.seo-faq-item {
    border: 1px solid #ededed;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}
.seo-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 700;
    color: #0a0a0a;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
    content: '＋';
    font-size: 18px;
    font-weight: 400;
    color: #737373;
    transition: transform .15s ease;
}
.seo-faq-item[open] summary::after { transform: rotate(45deg); }
.seo-faq-answer {
    padding: 0 20px 18px;
    color: #525252;
    line-height: 1.6;
    font-size: 14.5px;
}
.seo-faq-answer p { margin: 0 0 8px; }

/* ═════════ OUTRO ═════════ */
.seo-outro {
    border-top: 1px solid #ededed;
    padding-top: 28px;
}
.seo-outro-inner {
    max-width: 720px;
    margin: 0 auto;
    color: #525252;
    line-height: 1.75;
    font-size: 15.5px;
}
.seo-outro-inner h2,
.seo-outro-inner h3 {
    color: #0a0a0a;
    margin: 18px 0 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.seo-outro-inner a {
    color: #7c3aed;
    border-bottom: 1px solid rgba(124, 58, 237, .25);
    text-decoration: none;
}
.seo-outro-inner a:hover { border-bottom-color: #7c3aed; }

/* ═════════ CTA ═════════ */
.seo-cta {
    text-align: center;
    padding: 56px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0a0a0a 0%, #7c3aed 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.seo-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.seo-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: var(--font-display, "Playfair Display", Georgia, serif);
}
.seo-cta p {
    margin: 0 0 28px;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
}
.seo-cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.seo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.seo-cta-btn--primary {
    background: #fff;
    color: #0a0a0a;
}
.seo-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,255,255,.20);
}
.seo-cta-btn--ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}
.seo-cta-btn--ghost:hover {
    background: rgba(255, 255, 255, .20);
    border-color: rgba(255, 255, 255, .35);
}

/* ═════════ MOBILE ═════════ */
@media (max-width: 640px) {
    .seo-landing { padding: 16px 12px 60px; gap: 40px; }
    .seo-hero { padding: 44px 18px 36px; border-radius: 22px; }
    .seo-hero-stats { gap: 18px; padding: 14px 20px; }
    .seo-combo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .seo-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .seo-cta { padding: 40px 18px; border-radius: 20px; }
}
