* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0b0714;
    --bg-soft: #140d24;
    --bg-card: #171029;
    --ink: #f5f3ff;
    --muted: #b7aed1;
    --muted-dark: #d9d3ec;
    --line: rgba(255, 255, 255, 0.08);
    --pink: #ff2fb0;
    --purple: #9b4dff;
    --cyan: #2fd8ff;
    --gradient: linear-gradient(135deg, var(--pink), var(--purple) 55%, var(--cyan));
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 24px 60px rgba(155, 77, 255, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(600px circle at 15% 0%, rgba(255, 47, 176, 0.16), transparent 60%),
        radial-gradient(700px circle at 100% 20%, rgba(47, 216, 255, 0.14), transparent 55%),
        radial-gradient(600px circle at 50% 100%, rgba(155, 77, 255, 0.16), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 7, 20, 0.75);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: block;
}

.brand-name {
    font-size: 1.15rem;
}

.wordmark {
    font-family: 'Cinzel', 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f7e6b8 0%, #e0be79 30%, #a9793a 55%, #d8b26b 75%, #f2dca0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--pink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    color: var(--ink);
    font-size: 1.3rem;
    cursor: pointer;
}

.nav-cta,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-cta,
.primary-btn {
    background: var(--gradient);
    color: #0b0714;
    box-shadow: var(--shadow-md);
}

.nav-cta:hover,
.primary-btn:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.04);
}

.secondary-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Hero */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pink);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Section shared */
.section-kicker {
    color: var(--pink);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.section-description {
    color: var(--muted);
    max-width: 720px;
}

.section-description + .section-description {
    margin-top: 12px;
}

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

.section-heading.compact {
    margin-bottom: 28px;
}

/* About */
.about-section {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.about-copy p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

/* Genres */
.genres-section {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.genre-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.genre-chip {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--muted-dark);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.genre-chip:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

/* AI production */
.ai-section {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.ai-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
}

.ai-card span.step-no {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    color: #0b0714;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ai-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.ai-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.ai-card .pricing-card-icon {
    margin-bottom: 16px;
}

.ai-section-cta {
    margin-top: 36px;
    text-align: center;
}

/* Platforms */
.platforms-section {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.platform-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Follow / social */
.follow-section {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.follow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.follow-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    font-weight: 700;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.follow-card:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
}

.follow-card svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--cyan);
}

/* CTA band */
.cta-band {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 47, 176, 0.14), rgba(155, 77, 255, 0.14) 55%, rgba(47, 216, 255, 0.14));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-card p {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 26px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.footer-brand img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.footer-note {
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--muted-dark);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

/* Footer nav */
.footer-nav {
    display: flex;
    gap: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted-dark);
}

.footer-nav a:hover {
    color: var(--pink);
}

/* Text link */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.92rem;
}

.text-link:hover {
    color: var(--pink);
}

/* Video hero (homepage top, full-width random clip) */
.video-hero-section {
    padding: 32px 0 32px;
}

.video-hero-media {
    margin-bottom: 36px;
}

.video-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.video-hero-content .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

.video-hero-content .hero-title {
    margin-bottom: 16px;
}

.video-hero-content .hero-subtitle {
    max-width: none;
    margin: 0 auto 28px;
}

.video-hero-content .hero-actions {
    justify-content: center;
}

/* Trust strip (compact value points under hero) */
.trust-section {
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    color: var(--pink);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 17px;
    height: 17px;
}

.trust-item h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.trust-item p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    min-height: 260px;
    color: var(--muted);
    text-align: center;
    padding: 24px;
}

/* Pricing */
.pricing-section {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

.pricing-header {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-header-desc {
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 48px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.pricing-card-featured {
    border-color: rgba(155, 77, 255, 0.45);
    box-shadow: var(--shadow-md);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--gradient);
    color: #0b0714;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
}

.pricing-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.pricing-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: var(--pink);
}

.pricing-card-featured .pricing-card-icon {
    background: var(--gradient);
    color: #0b0714;
}

.pricing-card-icon svg {
    width: 26px;
    height: 26px;
}

.pricing-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-card-tagline {
    color: var(--muted);
    font-size: 0.95rem;
}

.pricing-card-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-card-price {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-suffix {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted-dark);
}

.pricing-card-summary {
    color: var(--muted-dark);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.pricing-card-features li {
    color: var(--muted-dark);
    font-size: 0.92rem;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-card-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.pricing-card-divider {
    height: 1px;
    background: var(--line);
    margin: 0 0 24px;
}

.pricing-card-cta {
    margin-top: auto;
    width: 100%;
}

/* Clip options (within Özel Şarkı + Klip card) */
.clip-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.clip-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.clip-option:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.clip-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--cyan);
}

.clip-option-icon svg {
    width: 22px;
    height: 22px;
}

.clip-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.clip-option-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
}

.clip-option-desc {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.clip-option-action {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.clip-option-price {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    white-space: nowrap;
}

.clip-option-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.clip-option:hover .clip-option-arrow {
    color: var(--pink);
    transform: translateX(3px);
}

.clip-option-premium {
    border-color: rgba(255, 47, 176, 0.35);
    background: linear-gradient(135deg, rgba(255, 47, 176, 0.08), rgba(155, 77, 255, 0.08));
    margin-top: 6px;
}

.clip-option-premium .clip-option-icon {
    background: var(--gradient);
    color: #0b0714;
}

.clip-option-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--gradient);
    color: #0b0714;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

/* Ek hizmetler */
.addon-section {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    padding: 28px 32px;
    margin-bottom: 28px;
}

.addon-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
}

.addon-item-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(47, 216, 255, 0.12);
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.85rem;
}

.addon-label {
    flex: 1;
    color: var(--muted-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.addon-value {
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Pricing disclaimer */
.pricing-disclaimer p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto 8px;
    text-align: center;
}

.pricing-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Selected package note (contact page) */
.selected-package-note {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 47, 176, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 47, 176, 0.08);
    font-size: 0.9rem;
    color: var(--muted-dark);
}

.selected-package-note strong {
    color: var(--pink);
}

/* Page header (klip listesi / iletişim) */
.page-header {
    padding: 60px 0 30px;
}

.page-header-cta {
    margin-top: 12px;
}

/* Tag filter */
.tag-filter-section {
    padding: 0 0 30px;
}

.tag-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--muted-dark);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.tag-pill:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.tag-pill.active {
    background: var(--gradient);
    color: #0b0714;
    border-color: transparent;
}

/* Clip grid (klip listesi) */
.clip-grid-section {
    padding: 0 0 70px;
}

.clip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.clip-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.clip-card:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
}

.clip-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.clip-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clip-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.clip-play svg {
    width: 64px;
    height: 45px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.clip-play-bg {
    fill: #ff0000;
}

.clip-play-triangle {
    fill: #fff;
}

.clip-card:hover .clip-play {
    opacity: 1;
}

.clip-card:hover .clip-play svg {
    transform: scale(1);
}

.clip-title {
    padding: 16px 18px 8px;
    font-size: 1rem;
}

.clip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 18px;
}

.clip-tag {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.empty-state {
    color: var(--muted);
    text-align: center;
    padding: 40px 0;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
}

.page-link {
    font-weight: 700;
    color: var(--cyan);
}

.page-link:hover {
    color: var(--pink);
}

.page-current {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Clip detail page */
.clip-detail-section {
    padding: 50px 0 70px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-dark);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--bg-card);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.back-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.back-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    transform: translateX(-2px);
}

.back-link:hover svg {
    transform: translateX(-2px);
}

.clip-detail-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.45fr;
    gap: 32px;
    align-items: start;
}

.clip-video-col .video-frame {
    margin-bottom: 20px;
}

.clip-detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.col-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.clip-comments-col {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    max-height: 720px;
    overflow-y: auto;
}

.lyrics-text {
    white-space: pre-wrap;
    font-family: inherit;
    color: var(--muted-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Açıklama / Şarkı Sözleri accordion (clip detail) */
.detail-accordion {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    margin-top: 20px;
    overflow: hidden;
}

.faq-list .detail-accordion:first-child {
    margin-top: 0;
}

.detail-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.detail-accordion-summary::-webkit-details-marker {
    display: none;
}

.detail-accordion-summary:hover {
    color: var(--pink);
}

.detail-accordion-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.detail-accordion[open] .detail-accordion-chevron {
    transform: rotate(180deg);
    color: var(--pink);
}

.detail-accordion-body {
    padding: 0 20px 22px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

/* Markdown açıklama içeriği tipografisi */
.markdown-content {
    color: var(--muted-dark);
    font-size: 0.95rem;
    line-height: 1.75;
}

.markdown-content > *:first-child {
    margin-top: 0;
}

.markdown-content > *:last-child {
    margin-bottom: 0;
}

.markdown-content p {
    margin-bottom: 14px;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.3;
    margin: 20px 0 10px;
}

.markdown-content ul,
.markdown-content ol {
    margin: 0 0 14px 22px;
}

.markdown-content li {
    margin-bottom: 6px;
}

.markdown-content a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.markdown-content a:hover {
    color: var(--pink);
}

.markdown-content strong {
    color: var(--ink);
}

.markdown-content blockquote {
    margin: 0 0 14px;
    padding: 10px 16px;
    border-left: 3px solid var(--pink);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.markdown-content code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.88em;
}

.markdown-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.comment-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.comment-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.comment-name {
    font-weight: 700;
    color: var(--ink);
}

.comment-date {
    color: var(--muted);
}

.comment-body {
    color: var(--muted-dark);
    font-size: 0.92rem;
}

.comment-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-form h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.comment-form input,
.comment-form textarea,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.92rem;
}

.comment-form input:focus,
.comment-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--pink);
}

.contact-form select option {
    background-color: #171029;
    color: #f5f3ff;
}

.form-note {
    color: var(--muted);
    font-size: 0.8rem;
}

.form-messages {
    margin-bottom: 16px;
}

.form-message {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.form-message.success {
    background: rgba(47, 216, 255, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(47, 216, 255, 0.3);
}

.form-message.error {
    background: rgba(255, 47, 176, 0.12);
    color: var(--pink);
    border: 1px solid rgba(255, 47, 176, 0.3);
}

/* Contact page */
.contact-section {
    padding: 70px 0;
}

/* Thanks (contact success) page */
.thanks-section {
    padding: 110px 0;
}

.thanks-content {
    max-width: 560px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thanks-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.thanks-icon svg {
    width: 34px;
    height: 34px;
    color: #0b0714;
}

.thanks-content .section-kicker {
    margin-bottom: 6px;
}

.thanks-content .section-title {
    margin-bottom: 16px;
}

.thanks-text {
    color: var(--muted);
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-intro p {
    color: var(--muted);
    margin-top: 16px;
}

.contact-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted-dark);
    font-weight: 600;
    font-size: 0.86rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-quick-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-quick-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.contact-form-col {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted-dark);
}

.timeline-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-field-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted-dark);
}

.timeline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 500;
    font-size: 0.86rem;
    color: var(--muted-dark);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.timeline-option input {
    width: auto;
    padding: 0;
    border: none;
    background: none;
    accent-color: var(--pink);
}

.timeline-option:has(input:checked) {
    border-color: var(--pink);
    color: var(--ink);
}

.timeline-date-field {
    max-width: 260px;
}

.timeline-date-field[hidden] {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .ai-grid,
    .ai-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .follow-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clip-grid-featured .clip-card:nth-child(3) {
        display: none;
    }

    .clip-detail-grid {
        grid-template-columns: 1fr;
    }

    .clip-comments-col {
        max-height: none;
    }

    .addon-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(11, 7, 20, 0.98);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 16px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-cta {
        display: none;
    }

    .ai-grid,
    .ai-grid-4,
    .follow-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .ai-grid,
    .ai-grid-4,
    .trust-grid,
    .follow-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 32px 22px;
    }

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

    .pricing-card-price {
        font-size: 2rem;
    }

    .addon-grid {
        grid-template-columns: 1fr;
    }

    .clip-option {
        flex-wrap: wrap;
    }

    .clip-option-price {
        margin-left: 56px;
    }
}
