/* =============================================
   HazırSiteYaptır.com — Minimal & Elegant
   Apple / Framer İlham — Yeniden Tasarım
   ============================================= */

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* — Renk Paleti — */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #eef2ff;
    --primary-glow: rgba(99,102,241,0.15);
    --secondary: #0f172a;
    --secondary-dark: #020617;
    --dark: #0a0a0a;
    --dark-light: #171717;
    --gray: #737373;
    --gray-light: #a3a3a3;
    --gray-lighter: #e5e5e5;
    --gray-bg: #fafafa;
    --white: #ffffff;
    --border: #e5e7eb;

    /* — Durum Renkleri — */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* — Gölge — */
    --shadow: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);

    /* — Radius — */
    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* — Transition — */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    /* — Spacing — */
    --section-padding: 140px;
    --section-padding-sm: 100px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

/* =============================================
   Top Bar — gizlenmeyecek ama stil saklanacak
   (header.php'den kaldırılacak)
   ============================================= */
.top-bar {
    display: none;
}

/* =============================================
   Navbar — Frosted Glass
   ============================================= */
.navbar {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: none; /* Kaldırıldı — minimal tasarım */
}

.logo-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-text strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    display: block;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2px;
}

.nav-menu a {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--dark);
    background: var(--gray-bg);
}

.nav-menu a.active {
    color: var(--dark);
    font-weight: 600;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
    padding: 4px;
}

/* =============================================
   Buttons — Apple Style
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-primary:hover {
    background: var(--dark-light);
    border-color: var(--dark-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--dark);
    background: var(--gray-bg);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-bg);
    transform: translateY(-1px);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-success {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

/* =============================================
   Alerts
   ============================================= */
.alert {
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
}

.alert .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-info { background: #dbeafe; color: #1e40af; }

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

/* =============================================
   Hero — Centered Single Column
   ============================================= */
.hero {
    background: var(--white);
    color: var(--dark);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.2);
    top: -150px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.15);
    bottom: -100px;
    left: -80px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
    border: 2px solid var(--white);
}

.hero-trust span {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    margin-left: 8px;
}

/* Hero Visual — Browser Mockup */
.hero-visual {
    position: relative;
}

.hero-mockup {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.hero-mockup-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-bg);
    border-bottom: 1px solid var(--border);
}

.hero-mockup-dots {
    display: flex;
    gap: 6px;
}

.hero-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-lighter);
}

.hero-mockup-dots span:first-child { background: #ef4444; }
.hero-mockup-dots span:nth-child(2) { background: #f59e0b; }
.hero-mockup-dots span:last-child { background: #22c55e; }

.hero-mockup-url {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--gray);
    text-align: center;
}

.hero-mockup-body {
    padding: 24px;
}

.hero-mockup-nav {
    height: 8px;
    width: 60%;
    background: var(--gray-lighter);
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero-mockup-hero-area {
    padding: 32px 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-mockup-title {
    height: 14px;
    width: 70%;
    background: var(--dark);
    border-radius: 4px;
    margin: 0 auto 10px;
    opacity: 0.15;
}

.hero-mockup-subtitle {
    height: 8px;
    width: 50%;
    background: var(--gray);
    border-radius: 4px;
    margin: 0 auto 16px;
    opacity: 0.15;
}

.hero-mockup-btn {
    height: 28px;
    width: 90px;
    background: var(--primary);
    border-radius: 6px;
    margin: 0 auto;
    opacity: 0.8;
}

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

.hero-mockup-card {
    height: 64px;
    background: var(--gray-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Floating Badges */
.hero-float {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-float i {
    color: var(--primary);
    font-size: 14px;
}

.hero-float-1 {
    top: 10px;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 50px;
    right: -20px;
    animation-delay: 2s;
}

.hero-float-3 {
    top: 50%;
    right: -35px;
    animation-delay: 4s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =============================================
   Section Styles
   ============================================= */
.section {
    padding: var(--section-padding) 0;
}

.section-gray {
    background: var(--gray-bg);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-dark .section-title h2 {
    color: var(--white);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   Feature / Service Cards
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* =============================================
   "Neden HazırSiteYaptır?" — Why Features
   ============================================= */
.why-features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-feature-card {
    position: relative;
    overflow: hidden;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.why-feature-card:hover::before {
    transform: scaleX(1);
}

/* =============================================
   "Nasıl Çalışır?" — How It Works
   ============================================= */
.how-it-works-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
}

.how-it-works-step {
    background: var(--white);
    padding: 48px 32px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    flex: 1;
    max-width: 340px;
    position: relative;
}

.how-it-works-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 64px;
    font-weight: 800;
    color: var(--gray-bg);
    line-height: 1;
    letter-spacing: -0.04em;
    z-index: 0;
    pointer-events: none;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.how-it-works-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.how-it-works-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.step-connector {
    display: none; /* Kaldırıldı */
}

/* =============================================
   Pricing Cards
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.pricing-card.popular:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99,102,241,0.15);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 16px;
    right: 16px;
    transform: none;
}

.pricing-header {
    padding: 40px 36px 24px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.pricing-header .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

.pricing-header .period {
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    padding: 20px 36px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-light);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pricing-features li i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-footer {
    padding: 20px 36px 40px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}

/* =============================================
   FAQ Accordion
   ============================================= */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-lighter);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--gray-light);
    font-size: 14px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

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

/* =============================================
   Contact Form & Info
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--gray);
}

/* =============================================
   Forms
   ============================================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23737373' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =============================================
   Cards
   ============================================= */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 18px;
}

.card-body {
    padding: 24px;
}

/* =============================================
   Blog Cards
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-image {
    height: 200px;
    background: var(--gray-bg);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card-body {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-card-body h3 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* =============================================
   About Section
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-bg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 28px;
}

.about-features li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary);
    font-size: 14px;
}

/* =============================================
   CTA Section — Dark Flat
   ============================================= */
.cta-section {
    background: var(--dark);
    color: var(--white);
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* =============================================
   Page Header — Light Gray
   ============================================= */
.page-header {
    background: var(--gray-bg);
    color: var(--dark);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.page-header .breadcrumb {
    font-size: 14px;
    color: var(--gray);
}

.page-header .breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* =============================================
   Tables
   ============================================= */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.table th {
    background: var(--gray-bg);
    font-weight: 600;
    color: var(--dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table tr:hover {
    background: var(--gray-bg);
}

/* =============================================
   Badges
   ============================================= */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }

/* =============================================
   Auth Pages
   ============================================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-bg);
    padding: 40px 20px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 440px;
    padding: 48px;
}

.auth-card .logo {
    justify-content: center;
    margin-bottom: 32px;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 700;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* =============================================
   Stats / Counter Section
   ============================================= */
.stats-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-counter-item {
    padding: 32px 20px;
}

.stat-counter-icon {
    display: none; /* Kaldırıldı — sadece rakam + etiket */
}

.stat-counter-number {
    font-size: 48px;
    font-weight: 800;
    display: inline;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-counter-suffix {
    font-size: 36px;
    font-weight: 800;
    display: inline;
}

.stat-counter-label {
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 8px;
    font-weight: 500;
}

/* =============================================
   Testimonials
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    display: none; /* Dev tırnak kaldırıldı */
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: normal; /* İtalik kaldırıldı */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray);
}

/* =============================================
   Template Cards — Badge & Overlay
   ============================================= */
.template-card {
    position: relative;
}

.template-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.template-badge-basic { background: var(--primary-light); color: var(--primary); }
.template-badge-premium { background: linear-gradient(135deg, #f59e0b, #d97706); color: var(--white); }
.template-badge-flat { background: linear-gradient(135deg, #3498DB, #2ECC71); color: var(--white); }
.template-badge-bauhaus { background: linear-gradient(135deg, #E53935, #FDD835); color: var(--white); }

.template-preview {
    position: relative;
    overflow: hidden;
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* =============================================
   Footer — Flat Dark
   ============================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    position: relative;
    padding-bottom: 0;
}

.footer h3::after {
    display: none; /* Alt çizgi kaldırıldı */
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: var(--gray-light);
    font-size: 14px;
}

.footer ul a:hover {
    color: var(--white);
    padding-left: 0; /* Kayma efekti kaldırıldı */
}

.footer p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 0.7;
}

.footer-legal a:hover {
    color: var(--white);
    opacity: 1;
}

/* =============================================
   Floating Buttons — Icon Only, Subtle
   ============================================= */
.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 0;
    gap: 0;
}

.float-btn span {
    display: none; /* Sadece ikon */
}

.float-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.float-phone {
    background: var(--dark);
}

.float-whatsapp {
    background: #25D366;
}

.float-btn i {
    font-size: 18px;
}

/* =============================================
   Scroll Top
   ============================================= */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* =============================================
   Pagination
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--dark);
    transition: var(--transition-fast);
}

.pagination a:hover,
.pagination .current {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* =============================================
   Empty State
   ============================================= */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.2;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.empty-state p {
    font-size: 14px;
}

/* =============================================
   Scroll Reveal Animation
   ============================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay utility */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   Utilities
   ============================================= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-gray { color: var(--gray); }
.text-sm { font-size: 13px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.d-flex { display: flex; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* =============================================
   Dark Mode — Theme Toggle Button
   ============================================= */
.theme-toggle {
    background: none;
    border: 1.5px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* =============================================
   Dark Mode — Variable Overrides
   ============================================= */
[data-theme="dark"] {
    /* — Renk Paleti (Ters Çevirilmiş) — */
    --primary: #818cf8;
    --primary-dark: #6366f1;
    --primary-light: rgba(99, 102, 241, 0.15);
    --primary-glow: rgba(99, 102, 241, 0.25);
    --secondary: #e2e8f0;
    --secondary-dark: #f1f5f9;
    --dark: #f5f5f5;
    --dark-light: #e5e5e5;
    --gray: #a3a3a3;
    --gray-light: #737373;
    --gray-lighter: #2a2a2a;
    --gray-bg: #111111;
    --white: #0a0a0a;
    --border: rgba(255, 255, 255, 0.1);

    /* — Durum Renkleri (Koyu Arka Plan İçin) — */
    --success: #4ade80;
    --warning: #fbbf24;
    --danger: #f87171;
    --info: #60a5fa;

    /* — Gölgeler (Koyu Arka Planda Daha Görünür) — */
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);

    color-scheme: dark;
}

/* =============================================
   Dark Mode — Geçiş Animasyonu
   ============================================= */
html[data-theme="dark"] body,
html[data-theme="dark"] .navbar,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .page-header {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* =============================================
   Dark Mode — Bileşen Override'ları
   ============================================= */

/* — Navbar Frosted Glass — */
[data-theme="dark"] .navbar {
    background: rgba(10, 10, 10, 0.8);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
}

/* — btn-primary: var(--dark) inversiyon düzeltmesi — */
[data-theme="dark"] .btn-primary {
    background: #818cf8;
    color: #0a0a0a;
    border-color: #818cf8;
}

[data-theme="dark"] .btn-primary:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
}

/* — btn-outline — */
[data-theme="dark"] .btn-outline {
    color: #e5e5e5;
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* — btn-white (CTA bölümünde kullanılır) — */
[data-theme="dark"] .btn-white {
    background: #f5f5f5;
    color: #0a0a0a;
    border-color: #f5f5f5;
}

[data-theme="dark"] .btn-white:hover {
    background: #e5e5e5;
}

/* — Alerts (Hardcoded renkler) — */
[data-theme="dark"] .alert-success { background: #052e16; color: #4ade80; }
[data-theme="dark"] .alert-error { background: #450a0a; color: #fca5a5; }
[data-theme="dark"] .alert-warning { background: #451a03; color: #fcd34d; }
[data-theme="dark"] .alert-info { background: #172554; color: #93c5fd; }

/* — Badges (Hardcoded renkler) — */
[data-theme="dark"] .badge-success { background: #052e16; color: #4ade80; }
[data-theme="dark"] .badge-warning { background: #451a03; color: #fcd34d; }
[data-theme="dark"] .badge-danger { background: #450a0a; color: #fca5a5; }
[data-theme="dark"] .badge-info { background: #172554; color: #93c5fd; }

/* — Step number ghost text — */
[data-theme="dark"] .step-number {
    color: #1a1a1a;
}

/* — Zaten koyu bölümler — dark mode'da renkleri sabit tut — */
[data-theme="dark"] .section-dark,
[data-theme="dark"] .cta-section,
[data-theme="dark"] .stats-section {
    background: #050505;
    color: #f5f5f5;
}

[data-theme="dark"] .cta-section h2,
[data-theme="dark"] .stats-section h2,
[data-theme="dark"] .section-dark h2 {
    color: #ffffff;
}

[data-theme="dark"] .cta-section p,
[data-theme="dark"] .section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .stat-counter-number,
[data-theme="dark"] .stat-counter-suffix {
    color: #ffffff;
}

[data-theme="dark"] .stat-counter-label {
    color: #a3a3a3;
}

[data-theme="dark"] .footer {
    background: #050505;
    color: #f5f5f5;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .footer h3 {
    color: #ffffff;
}

[data-theme="dark"] .footer a {
    color: #a3a3a3;
}

[data-theme="dark"] .footer a:hover {
    color: #ffffff;
}

/* — Select dropdown ok rengi — */
[data-theme="dark"] select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a3a3a3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

/* — Scroll top butonu — */
[data-theme="dark"] .scroll-top {
    background: #e5e5e5;
    color: #0a0a0a;
}

[data-theme="dark"] .scroll-top:hover {
    background: #818cf8;
    color: #fff;
}

/* — Floating telefon butonu — */
[data-theme="dark"] .float-phone {
    background: #e5e5e5;
    color: #0a0a0a;
}

/* — Hero gradient text — koyu bg'de daha canlı — */
[data-theme="dark"] .gradient-text {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* — Hero label pill — */
[data-theme="dark"] .hero-label {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
}

[data-theme="dark"] .hero-trust {
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-trust-avatar {
    border-color: #0a0a0a;
}

[data-theme="dark"] .hero-mockup {
    background: #161616;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hero-mockup-bar {
    background: #111111;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hero-mockup-dots span:first-child { background: #ef4444; }
[data-theme="dark"] .hero-mockup-dots span:nth-child(2) { background: #f59e0b; }
[data-theme="dark"] .hero-mockup-dots span:last-child { background: #22c55e; }

[data-theme="dark"] .hero-mockup-url {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.06);
    color: #737373;
}

[data-theme="dark"] .hero-mockup-nav {
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hero-mockup-hero-area {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
}

[data-theme="dark"] .hero-mockup-title {
    background: #f5f5f5;
    opacity: 0.1;
}

[data-theme="dark"] .hero-mockup-subtitle {
    background: #a3a3a3;
    opacity: 0.1;
}

[data-theme="dark"] .hero-mockup-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hero-float {
    background: #161616;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-float i {
    color: #818cf8;
}

/* — Pricing popular card border — */
[data-theme="dark"] .pricing-card.popular {
    border-color: #818cf8;
}

/* — Pricing badge — */
[data-theme="dark"] .pricing-badge {
    background: #818cf8;
}

/* — Auth pages — */
[data-theme="dark"] .auth-page {
    background: #0a0a0a;
}

[data-theme="dark"] .auth-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* — Pagination — */
[data-theme="dark"] .pagination a:hover,
[data-theme="dark"] .pagination .current {
    background: #818cf8;
    color: #0a0a0a;
    border-color: #818cf8;
}

/* — Template badge (basic) override — */
[data-theme="dark"] .template-badge-basic {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

/* — Blog card image placeholder — */
[data-theme="dark"] .blog-card-image {
    background: #171717;
}

/* — About image geometric div — */
[data-theme="dark"] .about-image > div {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* — Hero stats border — */
/* hero-stats artık hero-trust olarak güncellendi */

/* =============================================
   Cookie Banner — Modern Floating Card (Sağ Alt)
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    width: 380px;
    max-width: calc(100vw - 32px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-header span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.cookie-text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.cookie-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-links a {
    font-size: 12px;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-links a:hover {
    color: var(--primary);
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-reject {
    flex: 1;
    font-size: 13px !important;
    padding: 10px 16px !important;
    border-radius: var(--radius) !important;
}

.cookie-accept {
    flex: 1;
    font-size: 13px !important;
    padding: 10px 16px !important;
    border-radius: var(--radius) !important;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 20px;
    }
}

/* Cookie Banner — Dark Mode */
[data-theme="dark"] .cookie-banner {
    background: #161616;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cookie-header span {
    color: #f5f5f5;
}

[data-theme="dark"] .cookie-text p {
    color: #a3a3a3;
}

[data-theme="dark"] .cookie-text a {
    color: #818cf8;
}

[data-theme="dark"] .cookie-links a {
    color: #737373;
}

[data-theme="dark"] .cookie-links a:hover {
    color: #818cf8;
}

/* =============================================
   Legal Pages (Gizlilik, KVKK, Koşullar, Çerez)
   ============================================= */
.legal-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 8px 0 16px 20px;
}

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

.legal-content strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-updated {
    display: inline-block;
    font-size: 13px;
    color: var(--gray-light);
    background: var(--gray-bg);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

/* Legal Pages — Dark Mode */
[data-theme="dark"] .legal-content h2 {
    color: #f5f5f5;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .legal-content strong {
    color: #e5e5e5;
}

[data-theme="dark"] .legal-updated {
    background: #1a1a1a;
    color: #737373;
}
