:root {
    --accent-color: #3b82f6;
    --bg-dark: #0f1319;
    --card-bg: #11151c;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #222b35;
}
body.light-theme {
    --bg-dark: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
}
body {
    margin: 0; padding: 0;
    background-color: var(--bg-dark);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

/* 🏛️ MAVİ BANT NAVİGASYON DROPDOWN SİTEMİ */
.top-navbar {
    background-color: #3b82f6!important;
    padding: 0px 30px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: sticky; top: 0; z-index: 1000;
    box-sizing: border-box;
    height: 55px;
}
.navbar-brand {
    font-size: 24px; font-weight: 900; letter-spacing: 2px;
    color: #ffffff!important; text-transform: uppercase; text-decoration: none;
}
.nav-links { display: flex; gap: 5px; align-items: center; height: 100%; margin-left: 30px; margin-right: auto; }
.dropdown { position: relative; display: inline-block; height: 100%; }
.dropbtn { 
    background: none; border: none; color: white !important; 
    font-weight: 700; font-size: 13px; cursor: pointer; 
    padding: 0 16px; text-transform: uppercase; letter-spacing: 0.5px;
    height: 100%; display: flex; align-items: center; gap: 4px;
}
.dropbtn:hover { background: rgba(255, 255, 255, 0.1); }
.dropdown-content { 
    display: none; position: absolute; background-color: var(--card-bg); 
    min-width: 240px; max-height: 400px; overflow-y: auto;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3); 
    z-index: 1001; border-radius: 0 0 8px 8px; border: 1px solid var(--border-color); 
    border-top: none; top: 100%; left: 0;
}
.dropdown-content a { 
    color: var(--text-main) !important; padding: 12px 16px; 
    text-decoration: none; display: block; font-size: 13px; font-weight: bold;
    border-bottom: 1px solid var(--border-color); text-align: left;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: rgba(59, 130, 246, 0.08); color: #3b82f6 !important; }
.dropdown:hover .dropdown-content { display: block; }

.theme-toggle {
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff!important; padding: 8px 16px;
    border-radius: 20px; cursor: pointer; font-size: 13px; font-weight: bold;
    transition: all 0.2s;
}
.theme-toggle:hover { background-color: rgba(255,255,255,0.3); }

.hero {
    text-align: center; padding: 50px 20px 30px 20px;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-dark) 100%);
}
h1 { font-size: 42px; font-weight: bold; margin: 0 0 10px 0; letter-spacing: -1px; color: var(--text-main); }
.subtitle { font-size: 15px; color: var(--text-muted); max-width: 800px; margin: 0 auto; text-align: center; }

.container { max-width: 1350px; margin: 0 auto; padding: 30px 20px; }
.section-title {
    font-size: 22px; font-weight: 900; margin-bottom: 25px; margin-top: 20px;
    color: var(--text-main); border-left: 5px solid var(--accent-color); padding-left: 15px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.section-subtitle {
    color: var(--text-muted); font-size: 14.5px; margin-top: -15px; margin-bottom: 25px; padding-left: 15px;
}

.portal-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px; margin-bottom: 40px;
}

.card {
    background-color: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 12px; padding: 22px; display: flex; flex-direction: column;
    justify-content: space-between; transition: all 0.2s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent-color); box-shadow: 0 8px 20px rgba(59,130,246,0.1); }

.card h3 { font-size: 18px; margin: 10px 0; font-weight: bold; color: var(--text-main); }
.card p { color: var(--text-muted); font-size: 13.5px; margin: 0 0 15px 0; flex-grow: 1; text-align: justify; line-height: 1.5; }

.card-badge {
    display: inline-block; font-size: 10px; font-weight: bold; padding: 4px 8px;
    border-radius: 4px; text-transform: uppercase; margin-bottom: 8px; align-self: flex-start;
}
.badge-free { background-color: rgba(16,185,129,0.1); color: #10b981; }
.badge-premium { background-color: rgba(245,158,11,0.1); color: #f59e0b; }
.badge-software { background-color: rgba(139,92,246,0.1); color: #8b5cf6; }
.badge-intl { background-color: rgba(6,182,212,0.1); color: #06b6d4; }

.kvkk-info-box {
    background-color: rgba(139,92,246,0.08); border-left: 4px solid #8b5cf6;
    padding: 15px; margin-bottom: 15px; border-radius: 4px; font-size: 12.5px;
    line-height: 1.5; color: var(--text-main); text-align: left;
}

.btn {
    display: block; width: 100%; text-align: center; box-sizing: border-box;
    font-weight: bold; padding: 11px; border-radius: 6px; text-decoration: none;
    text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; transition: all 0.2s;
    margin-top: 5px; color: #ffffff !important;
}
.btn-blue-primary { background-color: #3b82f6; border: 1px solid #3b82f6; }
.btn-blue-primary:hover { background-color: #2563eb; border-color: #2563eb; }
.btn-blue-secondary { background-color: rgba(59, 130, 246, 0.15); border: 1px solid #3b82f6; color: #3b82f6!important; }
.btn-blue-secondary:hover { background-color: #3b82f6; color:#ffffff!important; }
.btn-purple-primary { background: linear-gradient(45deg,#7c3aed,#8b5cf6); border: none; }
.btn-purple-primary:hover { background: linear-gradient(45deg,#6d28d9,#7c3aed); }
.btn-purple-secondary { background-color: rgba(139,92,246,0.15); border: 1px solid #8b5cf6; color: #8b5cf6!important; }
.btn-purple-secondary:hover { background-color: #8b5cf6; color:#ffffff!important; }

.download-matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-top: 8px; }
.btn-download {
    background: #0f1319; border: 1px solid var(--border-color); color: var(--text-main);
    font-size: 9px; font-weight: bold; text-decoration: none; padding: 6px; border-radius: 5px;
    text-align: center; text-transform: uppercase; transition: all 0.2s; white-space: nowrap;
}
.btn-download:hover { border-color: var(--accent-color); background: rgba(59,130,246,0.04); }
footer { text-align: center; padding: 30px 20px; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-color); margin-top: 40px; }

/* 🤖 YAPAY ZEKA FİZİBİLİTE RAPORU ÖZEL GÖRSEL SINIFLARI */
.workspace { background-color: var(--card-bg); border: 2px solid var(--border-color); padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); text-align: center; }
input[type="text"] { 
    width: 100%; padding: 12px; background-color: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-white); box-sizing: border-box; font-size: 14px; margin-bottom: 15px; transition: border-color 0.2s;
}
input[type="text"]:focus { border-color: var(--accent-color); outline: none; }
.btn-action { display: block; width: 100%; background: linear-gradient(45deg, #8b5cf6, #6d28d9); color: white; font-weight: bold; padding: 14px; border: none; border-radius: 6px; cursor: pointer; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px; transition: opacity 0.2s; }
.btn-action:hover { opacity: 0.9; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; margin-bottom: 25px; }
.data-box { background: var(--bg-dark); border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; text-align: left; }
.box-title { font-size: 11px; font-weight: bold; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; border-bottom: 1px solid var(--border-color); padding-bottom: 5px; letter-spacing: 0.5px; }
.raw-text { font-size: 13px; color: var(--text-white); white-space: pre-wrap; font-family: monospace; }
.report-section { background: #ffffff; color: #1e293b; padding: 40px; border-radius: 12px; margin-top: 30px; display: none; text-align: left; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.report-title { font-size: 24px; font-weight: bold; color: #0f172a; border-bottom: 3px solid #1e293b; padding-bottom: 10px; margin-bottom: 20px; text-transform: uppercase; }
.report-h3 { font-size: 16px; font-weight: bold; color: #0f172a; margin-top: 25px; margin-bottom: 8px; border-bottom: 1px solid #e2e8f0; padding-bottom: 4px; }
.report-text { font-size: 14px; color: #334155; text-align: justify; margin-bottom: 12px; }
.paywall-box { background: #fffbeb; border: 2px solid #f59e0b; border-radius: 8px; padding: 25px; margin-top: 30px; text-align: center; color: #78350f; }
.btn-pay { display: inline-block; background: linear-gradient(45deg, #f59e0b, #d97706); color: white !important; font-weight: bold; padding: 12px 30px; text-decoration: none; border-radius: 6px; text-transform: uppercase; font-size: 14px; margin-top: 15px; box-shadow: 0 4px 15px rgba(217,119,6,0.3); transition: transform 0.2s; }
.btn-pay:hover { transform: translateY(-1px); }
.btn-back { display: inline-block; background-color: #64748b; color: white !important; padding: 12px 25px; text-decoration: none; font-weight: bold; border-radius: 6px; text-transform: uppercase; font-size: 13px; margin-top: 15px; transition: opacity 0.2s; }
.btn-back:hover { opacity: 0.9; }
.copyright-overlay { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background-color: rgba(0, 0, 0, 0.75) !important; justify-content: center !important; align-items: center !important; z-index: 2000 !important; }
.copyright-modal { background-color: var(--card-bg); border: 2px solid var(--border-color); border-top: 4px solid var(--accent-color); padding: 35px; border-radius: 12px; max-width: 600px; width: 90%; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); text-align: left; }
.copyright-close { position: absolute; top: 15px; right: 20px; font-size: 26px; color: var(--text-muted); cursor: pointer; }
.copyright-close:hover { color: var(--text-white); }

/* ⚖️ KÜRESEL TELİF VE MODAL GÖRSEL SİSTEMİ */
.copyright-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); display: none; justify-content: center; align-items: center; z-index: 2000; }
.copyright-modal { background-color: var(--card-bg, #11151c); border: 2px solid var(--border-color, #222b35); border-top: 4px solid #3b82f6; padding: 35px; border-radius: 12px; max-width: 600px; width: 90%; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); text-align: left; }
.copyright-close { position: absolute; top: 15px; right: 20px; font-size: 26px; color: var(--text-muted, #94a3b8); cursor: pointer; }
.copyright-close:hover { color: var(--text-white); }
.footer-link { cursor: pointer; transition: color 0.2s; }
.footer-link:hover { color: #3b82f6; text-decoration: underline; }

/* 📊 ANONİMXT KURUMSAL ANALİZ MERKEZİ ÖZEL STİLLERİ */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 25px; }
.meta-box { background: rgba(59, 130, 246, 0.05); border: 1px dashed var(--border-color); padding: 10px; border-radius: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 15px; }
.btn-primary { background-color: var(--accent-color); color: #ffffff !important; }
.btn-primary:hover { background-color: #2563eb; }
.user-notice-box { background-color: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.3); border-left: 5px solid #f59e0b; padding: 20px; margin-top: 40px; border-radius: 6px; font-size: 14px; color: var(--text-main); line-height: 1.6; text-align: left; }

/* 🌐 ANONİMXİNT GLOBAL VERSİYON ÖZEL GÖRSEL SINIFLARI */
.product-hero { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 40px; border-radius: 12px; margin-bottom: 30px; border-top: 4px solid var(--accent-color); }
.product-hero h1 { font-size: 28px; font-weight: bold; margin: 0 0 20px 0; text-align: center; }
.product-hero p { color: var(--text-muted); font-size: 15px; line-height: 1.6; text-align: justify; margin-bottom: 20px; }
.spec-box { background-color: #0f1319; border: 1px solid var(--border-color); border-radius: 10px; padding: 20px; margin: 25px 0; }
.spec-title { font-size: 12px; font-weight: bold; color: var(--accent-color); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.5px; }
.spec-text { font-size: 13.5px; color: var(--text-white); line-height: 1.5; }
.feature-bullets { list-style: none; padding: 0; margin: 25px 0; }
.feature-bullets li { font-size: 14.5px; color: var(--text-white); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.bullet-icon { color: var(--accent-color); font-weight: bold; }
.prensip-list { list-style: none; padding: 0; margin: 0; }
.prensip-list li { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; margin-bottom: 15px; display: flex; gap: 15px; align-items: flex-start; }
.check-icon { color: var(--accent-color); font-weight: bold; font-size: 18px; line-height: 1; }
.prensip-content strong { display: block; font-size: 15px; color: var(--text-white); margin-bottom: 6px; }
.prensip-content p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; text-align: justify; }
.purchase-zone { background: rgba(6, 182, 212, 0.02); border: 2px dashed var(--accent-color); padding: 30px; border-radius: 10px; text-align: center; margin-top: 40px; }
.price-tag { font-size: 36px; font-weight: 900; color: #ffffff; margin-bottom: 4px; }
.price-sub { font-size: 11px; color: var(--text-muted); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.btn-buy { display: inline-block; width: 100%; max-width: 400px; text-align: center; background: linear-gradient(45deg, #06b6d4, #0891b2); color: #fff; text-decoration: none; padding: 15px; font-size: 14px; font-weight: bold; border-radius: 6px; text-transform: uppercase; border: none; cursor: pointer; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2); }

/* 📊 ANONIMXT TÜRKİYE SÜRÜMÜ BENZERSİZ GÖRSEL SINIFLARI */
.tech-badges { display: flex; justify-content: center; gap: 10px; margin-top: 25px; margin-bottom: 10px; flex-wrap: wrap; }
.tech-badge { background-color: rgba(59, 130, 246, 0.04); color: var(--accent-color); border: 1px solid rgba(59, 130, 246, 0.15); padding: 8px 16px; border-radius: 20px; font-size: 11.5px; font-weight: bold; }
.feature-list { list-style: none; padding: 0; margin: 30px 0; }
.feature-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; color: var(--text-muted); font-size: 14px; line-height: 1.6; border-bottom: 1px dashed var(--border-color); padding-bottom: 15px; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: var(--text-white); display: block; font-size: 15px; margin-bottom: 4px; }

/* 📜 SOSYAL MEDYA İLAN & BROŞÜR STÜDYOSU ÖZEL GÖRSEL SINIFLARI */
.no-print { display: block; }
.studio-container { max-width: 1450px; margin: 20px auto; display: grid; grid-template-columns: 440px 1fr; gap: 40px; padding: 0 20px; }
.control-panel { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 30px; border-radius: 12px; height: 82vh; overflow-y: auto; position: sticky; top: 90px; }
.preview-panel { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.form-group { margin-bottom: 15px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
input[type="text"], input[type="color"], textarea { width: 100%; padding: 10px; background-color: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-white); box-sizing: border-box; font-size: 13px; }
input[type="color"] { height: 38px; cursor: pointer; padding: 3px; }
textarea { height: 75px; resize: none; }

/* 📢 ENİNE TANITIM BROŞÜRÜ ÖZEL ŞASİSİ */
.horizontal-brochure { width: 780px; background: #ffffff; color: #0f172a; border: 12px solid var(--accent-color); border-radius: 20px; padding: 30px; box-sizing: border-box; box-shadow: 0 25px 50px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 12px; text-align: left; transition: border-color 0.2s; position: relative; }
.h-row-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 3px solid #0f172a; padding-bottom: 8px; }
.h-name { font-size: 26px; font-weight: 900; text-transform: uppercase; color: #0f172a; margin: 0; letter-spacing: -1px; }
.h-job { font-size: 12px; font-weight: bold; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; transition: color 0.2s; }
.h-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.h-block { background: #f8fafc; border-left: 4px solid var(--accent-color); padding: 10px; border-radius: 4px; transition: border-left-color 0.2s; }
.h-block-title { font-size: 10.5px; font-weight: bold; color: #64748b; text-transform: uppercase; margin-bottom: 2px; }
.h-block-text { font-size: 12px; font-weight: 500; color: #24292f; line-height: 1.4; }
.h-full-block { background: #f1f5f9; border-left: 4px solid #475569; padding: 10px; border-radius: 4px; grid-column: span 2; }
.h-brochure-socials { grid-column: span 2; background: #e2e8f0; padding: 8px; border-radius: 6px; font-size: 11px; font-weight: bold; color: #334155; display: flex; flex-wrap: wrap; gap: 12px; }
.h-social-node { display: none; }
.h-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed #e2e8f0; padding-top: 8px; margin-top: 5px; }
.h-contact-text { font-size: 11px; font-weight: bold; color: #334155; }
.h-qr-section { display: flex; align-items: center; gap: 10px; }
.h-qr-wrapper { background: white; padding: 4px; border-radius: 4px; border: 1px solid #e2e8f0; }
.h-qr-wrapper img { width: 55px; height: 55px; display: block; }
.brochure-watermark { text-align: center; font-size: 11px; color: #94a3b8; border-top: 1px dashed #cbd5e1; padding-top: 8px; margin-top: 5px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }
.saas-info-box { background: rgba(245, 158, 11, 0.04); border: 1px solid rgba(245, 158, 11, 0.25); border-radius: 8px; padding: 18px; margin-top: 25px; text-align: left; font-size: 13px; line-height: 1.5; }
#printGrid { display: none; }
.print-cut-box { border: 1px dashed #94a3b8; padding: 0; background: white; display: flex; justify-content: center; align-items: center; box-sizing: border-box; page-break-inside: avoid; }

@media print {
    @page { margin: 0 !important; }
    .no-print, .top-navbar, .no-print * { display: none !important; }
    body { background-color: #ffffff; padding: 0; margin: 0; }
    body:not(.multi-print-mode) .studio-container { display: block !important; margin: 0 !important; padding: 12mm !important; box-sizing: border-box !important; }
    body:not(.multi-print-mode) .horizontal-brochure { box-shadow: none !important; border-radius: 0 !important; margin: 0 auto !important; }
    body.multi-print-mode .studio-container { display: none !important; }
    body.multi-print-mode #printGrid { display: grid !important; width: 210mm !important; height: 297mm !important; padding: 10mm !important; box-sizing: border-box !important; background: white !important; margin: 0 auto !important; page-break-after: always !important; page-break-inside: avoid !important; }
    body.multi-print-mode.print-grid-brochures #printGrid { grid-template-columns: 186mm !important; grid-template-rows: repeat(2, 120mm) !important; gap: 6mm !important; justify-content: center !important; align-content: center !important; }
    body.multi-print-mode.print-grid-brochures .print-cut-box { width: 186mm !important; height: 120mm !important; border: 1px dashed #94a3b8 !important; box-sizing: border-box !important; overflow: hidden !important; }
    body.multi-print-mode.print-grid-brochures .horizontal-brochure { width: 100% !important; height: 100% !important; padding: 6mm !important; border-width: 3mm !important; border-radius: 6mm !important; box-sizing: border-box !important; }
}

/* 📜 SOSYAL MEDYA İLAN & BROŞÜR STÜDYOSU ÖZEL GÖRSEL SINIFLARI */
.no-print { display: block; }
.studio-container { max-width: 1450px; margin: 20px auto; display: grid; grid-template-columns: 440px 1fr; gap: 40px; padding: 0 20px; }
.control-panel { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 30px; border-radius: 12px; height: 82vh; overflow-y: auto; position: sticky; top: 90px; }
.preview-panel { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.form-group { margin-bottom: 15px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
input[type="text"], input[type="color"], textarea { width: 100%; padding: 10px; background-color: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-white); box-sizing: border-box; font-size: 13px; }
input[type="color"] { height: 38px; cursor: pointer; padding: 3px; }
textarea { height: 75px; resize: none; }

/* 📢 ENİNE TANITIM BROŞÜRÜ ÖZEL ŞASİSİ */
.horizontal-brochure { width: 780px; background: #ffffff; color: #0f172a; border: 12px solid var(--accent-color); border-radius: 20px; padding: 30px; box-sizing: border-box; box-shadow: 0 25px 50px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 12px; text-align: left; transition: border-color 0.2s; position: relative; }
.h-row-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 3px solid #0f172a; padding-bottom: 8px; }
.h-name { font-size: 26px; font-weight: 900; text-transform: uppercase; color: #0f172a; margin: 0; letter-spacing: -1px; }
.h-job { font-size: 12px; font-weight: bold; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; transition: color 0.2s; }
.h-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.h-block { background: #f8fafc; border-left: 4px solid var(--accent-color); padding: 10px; border-radius: 4px; transition: border-left-color 0.2s; }
.h-block-title { font-size: 10.5px; font-weight: bold; color: #64748b; text-transform: uppercase; margin-bottom: 2px; }
.h-block-text { font-size: 12px; font-weight: 500; color: #24292f; line-height: 1.4; }
.h-full-block { background: #f1f5f9; border-left: 4px solid #475569; padding: 10px; border-radius: 4px; grid-column: span 2; }
.h-brochure-socials { grid-column: span 2; background: #e2e8f0; padding: 8px; border-radius: 6px; font-size: 11px; font-weight: bold; color: #334155; display: flex; flex-wrap: wrap; gap: 12px; }
.h-social-node { display: none; }
.h-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed #e2e8f0; padding-top: 8px; margin-top: 5px; }
.h-contact-text { font-size: 11px; font-weight: bold; color: #334155; }
.h-qr-section { display: flex; align-items: center; gap: 10px; }
.h-qr-wrapper { background: white; padding: 4px; border-radius: 4px; border: 1px solid #e2e8f0; }
.h-qr-wrapper img { width: 55px; height: 55px; display: block; }
.brochure-watermark { text-align: center; font-size: 11px; color: #94a3b8; border-top: 1px dashed #cbd5e1; padding-top: 8px; margin-top: 5px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }
.saas-info-box { background: rgba(245, 158, 11, 0.04); border: 1px solid rgba(245, 158, 11, 0.25); border-radius: 8px; padding: 18px; margin-top: 25px; text-align: left; font-size: 13px; line-height: 1.5; }
#printGrid { display: none; }
.print-cut-box { border: 1px dashed #94a3b8; padding: 0; background: white; display: flex; justify-content: center; align-items: center; box-sizing: border-box; page-break-inside: avoid; }

@media print {
    @page { margin: 0 !important; }
    .no-print, .top-navbar, .no-print * { display: none !important; }
    body { background-color: #ffffff; padding: 0; margin: 0; }
    body:not(.multi-print-mode) .studio-container { display: block !important; margin: 0 !important; padding: 12mm !important; box-sizing: border-box !important; }
    body:not(.multi-print-mode) .horizontal-brochure { box-shadow: none !important; border-radius: 0 !important; margin: 0 auto !important; }
    body.multi-print-mode .studio-container { display: none !important; }
    body.multi-print-mode #printGrid { display: grid !important; width: 210mm !important; height: 297mm !important; padding: 10mm !important; box-sizing: border-box !important; background: white !important; margin: 0 auto !important; page-break-after: always !important; page-break-inside: avoid !important; }
    body.multi-print-mode.print-grid-brochures #printGrid { grid-template-columns: 186mm !important; grid-template-rows: repeat(2, 120mm) !important; gap: 6mm !important; justify-content: center !important; align-content: center !important; }
    body.multi-print-mode.print-grid-brochures .print-cut-box { width: 186mm !important; height: 120mm !important; border: 1px dashed #94a3b8 !important; box-sizing: border-box !important; overflow: hidden !important; }
    body.multi-print-mode.print-grid-brochures .horizontal-brochure { width: 100% !important; height: 100% !important; padding: 6mm !important; border-width: 3mm !important; border-radius: 6mm !important; box-sizing: border-box !important; }
}

/* 📄 PROFESYONEL RESMİ CV STÜDYOSU ÖZEL GÖRSEL SINIFLARI */
.cv-preview-panel { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.a4-preview-page { width: 210mm; min-height: 297mm; background: #ffffff; color: #1e293b; padding: 20mm; box-sizing: border-box; box-shadow: 0 25px 50px rgba(0,0,0,0.5); display: flex; flex-direction: column; position: relative; }
.cv-header { border-bottom: 3px solid #1e293b; padding-bottom: 15px; margin-bottom: 25px; display: flex; justify-content: space-between; align-items: flex-start; }
.cv-header-left { flex-grow: 1; padding-right: 20px; }
.cv-name { font-size: 28px; font-weight: 800; text-transform: uppercase; color: #1e293b; margin: 0; letter-spacing: 0.5px; }
.cv-job { font-size: 13px; font-weight: bold; color: #2563eb; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.cv-contacts { font-size: 11px; font-weight: 600; color: #475569; margin-top: 10px; line-height: 1.4; }
.cv-photo-frame { width: 105px; height: 135px; border: 1px solid #cbd5e1; background-color: #f8fafc; border-radius: 4px; overflow: hidden; display: flex; justify-content: center; align-items: center; flex-shrink: 0; position: relative; }
.cv-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: none; }
.cv-photo-placeholder { font-size: 10px; font-weight: bold; color: #94a3b8; text-align: center; padding: 10px; text-transform: uppercase; }
.cv-section { margin-bottom: 22px; }
.cv-section-title { font-size: 13px; font-weight: 800; text-transform: uppercase; color: #1e293b; background: #f1f5f9; padding: 6px 10px; border-left: 4px solid #1e293b; margin-bottom: 10px; letter-spacing: 0.5px; }
.cv-section-body { font-size: 11.5px; line-height: 1.5; color: #334155; text-align: left; white-space: pre-line; }

@media print {
    @page { size: A4; margin: 0 !important; }
    .no-print, .top-navbar, .no-print * { display: none !important; }
    body { background-color: #ffffff; padding: 0; margin: 0; }
    .studio-container { display: block !important; margin: 0 !important; padding: 0 !important; }
    .a4-preview-page { box-shadow: none !important; border-radius: 0 !important; margin: 0 !important; padding: 20mm !important; width: 210mm !important; min-height: 297mm !important; page-break-after: avoid; }
}

/* 🔒 SISTEME GİRİŞ VE KİMLİK DOĞRULAMA ÖZEL GÖRSEL SINIFLARI */
.login-card { background-color: var(--card-bg); border: 2px solid var(--border-color); border-top: 5px solid var(--accent-color); border-radius: 12px; padding: 40px; width: 100%; max-width: 450px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); box-sizing: border-box; }
.login-card h2 { margin: 0 0 10px 0; font-size: 28px; text-align: center; }
.login-card p { text-align: center; color: var(--text-muted); margin: 0 0 30px 0; font-size: 15px; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; font-size: 13px; color: var(--text-muted); text-transform: uppercase; }
.form-control { width: 100%; padding: 12px 15px; background-color: var(--bg-dark); border: 1px solid var(--border-color); color: var(--text-white); border-radius: 6px; box-sizing: border-box; font-size: 15px; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent-color); }
.btn-submit { width: 100%; background-color: var(--accent-color); color: #ffffff; border: none; padding: 14px; font-size: 15px; font-weight: bold; border-radius: 6px; cursor: pointer; text-transform: uppercase; transition: background-color 0.2s; letter-spacing: 0.5px; }
.btn-submit:hover { background-color: #2563eb; }
.footer-text { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--text-muted); }
.footer-text a { color: var(--accent-color); text-decoration: none; font-weight: bold; }
.footer-text a:hover { text-decoration: underline; }

/* 🌐 GLOBAL ANALİZ MERKEZİ CAMGÖBEYİ ÖZEL GÖRSEL VARYASYONLARI */
.global-grid-card:hover { box-shadow: 0 8px 20px rgba(6, 182, 212, 0.15) !important; }
.btn-cyan-hover:hover { background-color: #0891b2 !important; }

/* 🎴 AKILLI DİJİTAL KARTVİZİT STÜDYOSU ÖZEL GÖRSEL SINIFLARI */
.old-school-card { width: 320px; background-color: #11151c; border: 15px solid var(--accent-color); border-radius: 24px; box-sizing: border-box; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.4); transition: border-color 0.3s; position: relative; }
.live-status-bar { background-color: #ef4444; color: white; font-size: 11px; font-weight: bold; padding: 6px 10px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.live-pulse { width: 7px; height: 7px; background-color: white; border-radius: 50%; animation: pulseGlow 1.5s infinite; }
@keyframes pulseGlow { 0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; } }
.card-header-link { display: block; background-color: transparent; color: #ffffff; text-align: center; font-size: 13px; font-weight: 900; padding: 15px 10px; letter-spacing: 1px; text-decoration: none; border-bottom: 1px solid #1f2937; }
.card-body-box { padding: 30px 20px; text-align: center; color: white !important; display: flex; flex-direction: column; align-items: center; }
.card-body-box h1 { font-size: 28px; font-weight: bold; color: #ffffff !important; margin: 0 0 6px 0; text-transform: none; word-break: break-word; line-height: 1.2; }
.card-body-box .title-sub { font-size: 13px; font-weight: bold; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px; line-height: 1.3; }
.card-body-box .divider-line { width: 140px; height: 2px; background-color: var(--accent-color); margin: 5px 0 20px 0; transition: background-color 0.3s; }
.card-body-box .phone-row { display: flex; align-items: center; justify-content: center; color: #ffffff !important; font-size: 20px; font-weight: 900; text-decoration: none; margin-bottom: 12px; gap: 8px; }
.card-body-box .meta-row { font-size: 13px; color: #94a3b8; font-weight: bold; margin-bottom: 20px; }
.smart-badges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 20px; background: #0f1319; padding: 8px; border-radius: 8px; border: 1px solid #1f2937; width: 100%; box-sizing: border-box; }
.badge-node { font-size: 9px; font-weight: 900; color: #4b5563; text-transform: uppercase; text-align: center; padding: 6px 2px; border-radius: 4px; background: #11151c; border: 1px solid transparent; }
.badge-node.active { color: #10b981; background: rgba(16, 185, 129, 0.05); border-color: rgba(16, 185, 129, 0.2); }
.qr-wrapper { width: 110px; height: 110px; background-color: #ffffff; border-radius: 12px; padding: 6px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); box-sizing: border-box; display: flex; justify-content: center; align-items: center; }
.qr-wrapper img { width: 100%; height: 100%; display: block; }
.watermark-text { display: block; text-align: center; font-size: 11px; color: #4a5568; text-decoration: none; margin-top: 20px; font-weight: bold; text-transform: none; }
.admob-banner-footer { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background-color: #11151c; border-top: 2px solid #3b82f6; display: flex; align-items: center; justify-content: center; z-index: 99999; text-align: center; font-weight: bold; }
.admob-banner-footer a { color: #3b82f6; text-decoration: none; font-size: 13px; letter-spacing: 0.5px; }
.saas-title { font-size: 14px; font-weight: 800; color: #3b82f6; border-bottom: 1px dashed var(--border-color); padding-bottom: 5px; margin-bottom: 10px; }
.saas-list { list-style: none; padding: 0; margin: 10px 0; }
.saas-list li { margin-bottom: 8px; position: relative; padding-left: 15px; }
.saas-list li::before { content: "•"; color: #3b82f6; font-weight: bold; position: absolute; left: 0; }

/* 📋 SİSTEME KAYIT VE ABONELİK ÖZEL GÖRSEL SINIFLARI */
.register-card { background-color: var(--card-bg); border: 2px solid var(--border-color); border-top: 5px solid var(--accent-color); border-radius: 12px; padding: 40px; width: 100%; max-width: 500px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); box-sizing: border-box; }
.register-card h2 { margin: 0 0 10px 0; font-size: 28px; text-align: center; }
.register-card p { text-align: center; color: var(--text-muted); margin: 0 0 30px 0; font-size: 15px; }
.package-selector { display: flex; gap: 15px; margin-bottom: 25px; }
.package-option { flex: 1; border: 2px solid var(--border-color); border-radius: 8px; padding: 15px; text-align: center; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; }
.package-option.active { border-color: var(--accent-color); background-color: rgba(59, 130, 246, 0.08); }
.package-option h4 { margin: 0 0 5px 0; font-size: 16px; }
.package-option span { font-size: 12px; color: var(--text-muted); display: block; }
.lifetime-badge { position: absolute; top: 0; right: 0; background-color: #3b82f6; color: #fff; font-size: 9px; font-weight: bold; padding: 2px 8px; border-bottom-left-radius: 8px; text-transform: uppercase; }
.kvkk-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; text-align: left; }
.kvkk-check input { margin-top: 3px; cursor: pointer; }
.kvkk-check label { font-size: 12.5px; color: var(--text-muted); cursor: pointer; line-height: 1.4; }
.kvkk-link { color: var(--accent-color); text-decoration: underline; cursor: pointer; }

/* 💼 VERSA EVRENSEL CRM MOTORU ÖZEL GÖRSEL SINIFLARI */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.step-card { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; position: relative; }
.step-num { position: absolute; top: 12px; right: 15px; font-size: 2rem; font-weight: 900; color: rgba(59, 130, 246, 0.15); line-height: 1; }
.step-card h4 { font-size: 15px; font-weight: bold; margin: 0 0 8px 0; color: #3b82f6; text-transform: uppercase; }
.step-card p { margin: 0; font-size: 13px; color: var(--text-muted); text-align: justify; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 12.5px; margin-top: 10px; }
.spec-table th { background: rgba(59, 130, 246, 0.05); color: var(--text-main); padding: 10px; text-align: left; font-weight: bold; border-bottom: 2px solid var(--border-color); }
.spec-table td { padding: 10px; border-bottom: 1px solid var(--border-color); color: var(--text-muted); }
.spec-table tr:hover td { color: var(--text-main); background: rgba(255,255,255,0.01); }
.profession-box-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; margin-bottom: 40px; }
.prof-tag-card { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 6px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; transition: all 0.2s; }
.prof-tag-card:hover { border-color: #3b82f6; background: rgba(59,130,246,0.03); transform: translateX(2px); }
.prof-icon { font-size: 18px; }
.prof-name { font-size: 13px; font-weight: 700; color: var(--text-main); }

/* 🔍 OTONOM SEO & COĞRAFİ KAYIT ÖZEL GÖRSEL SINIFLARI */
.workspace { background-color: var(--card-bg); border: 2px solid var(--border-color); padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-action { display: block; width: 100%; background: linear-gradient(45deg, #3b82f6, #1d4ed8); color: white; font-weight: bold; padding: 14px; border: none; border-radius: 6px; cursor: pointer; text-transform: uppercase; font-size: 13px; margin-top: 20px; letter-spacing: 0.5px; transition: opacity 0.2s; }
.btn-action:hover { opacity: 0.9; }
.result-box { background: #05070a; border: 1px solid #222b35; padding: 20px; border-radius: 6px; margin-top: 25px; display: none; font-family: monospace; font-size: 13px; color: #10b981; overflow-x: auto; white-space: pre-wrap; line-height: 1.4; text-align: left; }
.paywall-box { background: rgba(245, 158, 11, 0.05); border: 2px solid #f59e0b; border-radius: 8px; padding: 25px; margin-top: 20px; text-align: center; color: var(--text-white); }
.btn-pay { display: inline-block; background: linear-gradient(45deg, #f59e0b, #d97706); color: white !important; font-weight: bold; padding: 12px 30px; text-decoration: none; border-radius: 6px; text-transform: uppercase; font-size: 13px; margin-top: 15px; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2); transition: transform 0.2s; }
.btn-pay:hover { transform: translateY(-1px); }

/* 🔍 OTONOM SEO & COĞRAFİ KAYIT ÖZEL GÖRSEL SINIFLARI */
.workspace { background-color: var(--card-bg); border: 2px solid var(--border-color); padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-action { display: block; width: 100%; background: linear-gradient(45deg, #3b82f6, #1d4ed8); color: white; font-weight: bold; padding: 14px; border: none; border-radius: 6px; cursor: pointer; text-transform: uppercase; font-size: 13px; margin-top: 20px; letter-spacing: 0.5px; transition: opacity 0.2s; }
.btn-action:hover { opacity: 0.9; }
.result-box { background: #05070a; border: 1px solid #222b35; padding: 20px; border-radius: 6px; margin-top: 25px; display: none; font-family: monospace; font-size: 13px; color: #10b981; overflow-x: auto; white-space: pre-wrap; line-height: 1.4; text-align: left; }
.paywall-box { background: rgba(245, 158, 11, 0.05); border: 2px solid #f59e0b; border-radius: 8px; padding: 25px; margin-top: 20px; text-align: center; color: var(--text-white); }
.btn-pay { display: inline-block; background: linear-gradient(45deg, #f59e0b, #d97706); color: white !important; font-weight: bold; padding: 12px 30px; text-decoration: none; border-radius: 6px; text-transform: uppercase; font-size: 13px; margin-top: 15px; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2); transition: transform 0.2s; }
.btn-pay:hover { transform: translateY(-1px); }

/* 🏙️ TEK SAYFA MİKRO WEB SİTESİ STÜDYOSU ÖZEL GÖRSEL SINIFLARI */
.showcase-site-box { width: 480px; background-color: #121824; border: 4px solid var(--accent-color); border-radius: 20px; padding: 40px 30px; box-sizing: border-box; box-shadow: 0 25px 50px rgba(0,0,0,0.5); text-align: center; }
.sc-brand { font-size: 11px; font-weight: 900; color: var(--accent-color); letter-spacing: 2px; margin-bottom: 15px; }
.sc-name { font-size: 32px; font-weight: 800; color: #ffffff; margin: 10px 0 5px 0; text-transform: none; }
.sc-job { font-size: 14px; font-weight: bold; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
.sc-block { background: #0b0f17; border: 1px solid var(--border-color); padding: 15px; border-radius: 10px; margin-bottom: 20px; text-align: left; }
.sc-block-title { font-size: 11px; font-weight: bold; color: var(--accent-color); text-transform: uppercase; margin-bottom: 6px; }
.sc-block-text { font-size: 13px; color: #9ca3af; line-height: 1.5; }
.sc-link-btn { display: block; width: 100%; padding: 14px; background-color: #3b82f6; color: white; border-radius: 8px; font-weight: bold; text-decoration: none; font-size: 13px; margin-bottom: 12px; text-transform: uppercase; }
.sc-link-btn.wp { background-color: #10b981; }
.site-watermark { font-size: 11px; color: #4a5568; margin-top: 25px; font-weight: bold; text-transform: none; display: block; }

/* ⏳ ÇOK YAKINDA / AR-GE PLACEMENT ÖZEL GÖRSEL SINIFLARI */
.splash-wrapper { display: flex; justify-content: center; align-items: center; min-height: 70vh; padding: 20px; box-sizing: border-box; }
.splash-card { background-color: var(--card-bg); border: 2px solid var(--border-color); border-top: 5px solid var(--accent-color); border-radius: 12px; padding: 50px 40px; width: 100%; max-width: 550px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); text-align: center; }
.splash-card h1 { color: var(--text-main); font-size: 26px; margin: 0 0 15px 0; font-weight: bold; }
.splash-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* 🚀 MASAÜSTÜ YÖNETİM MERKEZİ & AKILLI AJANDA ÖZEL GÖRSEL SINIFLARI */
.hub-container { max-width: 1200px; margin: 30px auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 450px; gap: 30px; }
@media (max-width: 900px) { .hub-container { grid-template-columns: 1fr; } }
.main-panel, .agenda-panel { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 30px; border-radius: 12px; }
.shortcuts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.shortcut-card { background-color: #0f1319; border: 1px solid var(--border-color); padding: 15px 10px; border-radius: 8px; text-align: center; text-decoration: none; color: var(--text-white); font-weight: bold; font-size: 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all 0.2s; }
.shortcut-card:hover { border-color: #3b82f6; background-color: rgba(59, 130, 246, 0.05); transform: translateY(-2px); }
.shortcut-icon { font-size: 24px; }
.agenda-input-box { width: 100%; height: 100px; padding: 12px; background-color: #0f1319; border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-white); font-size: 13px; resize: none; box-sizing: border-box; margin-bottom: 15px; outline: none; }
.agenda-input-box:focus { border-color: #3b82f6; }
.log-preview { background-color: #0f1319; border: 1px solid var(--border-color); padding: 15px; border-radius: 6px; height: 250px; overflow-y: auto; font-family: monospace; font-size: 11px; color: #10b981; white-space: pre-wrap; margin-top: 15px; }
.saas-box { background: rgba(245, 158, 11, 0.03); border: 1px solid rgba(245, 158, 11, 0.2); padding: 15px; border-radius: 8px; font-size: 12px; line-height: 1.5; margin-top: 20px; }

/* === MOBIL UYUM VE TASMA ONLEME (EKLENDI) === */
html, body { 
    overflow-x: hidden !important; 
    max-width: 100% !important; 
}
@media (max-width: 850px) {
    .studio-container { display: flex !important; flex-direction: column !important; padding: 10px !important; margin: 0 !important; width: 100% !important; box-sizing: border-box !important; }
    .control-panel { position: relative !important; top: 0 !important; width: 100% !important; height: auto !important; overflow-y: visible !important; box-sizing: border-box !important; margin-bottom: 20px !important; }
    .preview-panel { width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: flex-start !important; margin: 0 auto 20px auto !important; padding: 0 !important; overflow: hidden !important; }
    
    /* Kartviziti dar ekrana göre küçült, layout'u bozmasını engelle ve alttaki ölü boşluğu çek */
    .old-school-card, .horizontal-brochure { transform: scale(0.8) !important; transform-origin: top center !important; margin-bottom: -80px !important; }
}
@media (max-width: 400px) {
    /* Daha küçük (Örn: 300px) telefonlar için özel kilit */
    .old-school-card, .horizontal-brochure { transform: scale(0.68) !important; margin-bottom: -150px !important; }
}

/* === MİKRO ADIM 119: HUKUKİ METİN ŞABLON STİLLERİ === */
.legal-page-body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #0f172a;
    color: #f8fafc;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.legal-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.legal-title {
    color: #3b82f6;
    font-size: 24px;
    border-bottom: 1px solid #334155;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.legal-subtitle {
    color: #10b981;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
}
.legal-text {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}
.legal-back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.legal-back-link:hover {
    text-decoration: underline;
}

/* === MİKRO ADIM 122: FOOTER HUKUKİ LİNK STİLLERİ === */
.footer-legal-links {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-legal-link {
    color: #3b82f6;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
}
.footer-legal-link:hover {
    text-decoration: underline;
}

/* === MİKRO ADIM 133: NAVBAR VE EKOSİSTEM REKLAM ŞERİDİ STİLLERİ === */
.global-ecosystem-ticker {
    background: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 8px 35px 8px 12px;
    font-size: 13px;
    color: #f8fafc;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
}
.ticker-animation-wrapper {
    display: inline-block;
    transition: opacity 0.4s ease;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.ad-ticker-text {
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #f8fafc;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    padding: 2px 6px;
    font-weight: bold;
    line-height: 1;
    transition: color 0.2s;
}
.ticker-close-btn:hover {
    color: #f8fafc;
}

/* === MİKRO ADIM 137: YAKINDA SAYFASI STİLLERİ === */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 20px;
}
.coming-soon-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}
.coming-soon-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.coming-soon-desc {
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.6;
}
.coming-soon-btn {
    margin-top: 25px;
    display: inline-block;
}
.standard-footer {
    border-top: 1px solid #3d4255;
    text-align: center;
    padding: 25px 15px;
    margin-top: 40px;
    font-size: 13px;
    color: #64748b;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}
.footer-copyright-trigger-link {
    cursor: pointer;
    text-decoration: underline;
}

/* === MİKRO ADIM 139: TELİF HAKLARI MODALI İÇERİK STİLLERİ === */
.copyright-modal-title {
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    font-size: 20px;
    color: var(--text-white);
}
.copyright-modal-text {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
}
.copyright-modal-warning {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}

/* === MİKRO ADIM 142: SEO HİZMETİ SAYFASI STİLLERİ === */
.page-header-container {
    text-align: center;
    margin-bottom: 30px;
}
.page-header-title {
    margin: 0 0 10px 0;
    font-size: 36px;
    letter-spacing: -1px;
}
.page-header-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
}
.paywall-block {
    display: none; /* JS tarafından açılacak */
}
.paywall-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #f59e0b;
}
.paywall-desc {
    font-size: 13.5px;
    margin: 0;
    opacity: 0.9;
}
.modal-overlay {
    display: none; /* JS tarafından açılacak */
}

/* === MİKRO ADIM 147: AI RAPOR SAYFASI BİLEŞEN STİLLERİ === */
.report-section {
    display: none;
}
.report-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.report-title-text {
    font-size: 20px;
    margin: 0;
    color: #f8fafc;
}
.status-badge-preview {
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}
.metric-val-amber {
    color: #f59e0b;
}
.metric-val-emerald {
    color: #10b981;
}
.metric-val-purple {
    color: #a855f7;
}
.report-sub-title {
    color: #38bdf8;
    margin-top: 15px;
}
.report-table-highlight {
    background: rgba(16, 185, 129, 0.1);
}
.text-emerald-bold {
    color: #10b981;
    font-weight: bold;
}
.paywall-container-box {
    margin-top: 25px;
}
.paywall-header-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #f59e0b;
}
.paywall-body-text {
    font-size: 13.5px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}
.center-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* === MİKRO ADIM 150: MOBİL KART STÜDYOSU BİLEŞEN STİLLERİ === */
.studio-container-layout {
    display: flex;
    gap: 20px;
    max-width: 1450px;
    margin: 20px auto;
    padding: 0 15px;
    align-items: flex-start;
}
.control-panel-box {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-sizing: border-box;
}
.saas-info-free-box {
    margin-top: 0;
    margin-bottom: 20px;
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.25);
}
.saas-title-emerald {
    color: #10b981;
    font-size: 13px;
}
.saas-desc-muted {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.saas-title-sm {
    font-size: 12px;
    margin-top: 10px;
}
.saas-list-muted {
    font-size: 12px;
    color: var(--text-muted);
}
.panel-section-title {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.panel-subsection-title {
    color: #3b82f6;
    border-bottom: 1px dashed var(--border-color);
    margin: 15px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
}
.form-group-row-mt10 {
    margin-top: 10px;
}
.btn-create-free {
    background: linear-gradient(45deg, #10b981, #059669);
    margin-top: 15px;
    width: 100%;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.preview-panel-box {
    flex: 1;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    min-width: 320px;
}
.card-widget-box {
    width: 100%;
    max-width: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
}
.phone-icon-muted {
    color: #64748b;
}
.card-links-box {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.qr-wrapper-centered {
    margin-top: 15px;
    text-align: center;
}
.img-qr-max {
    max-width: 150px;
}
.card-watermark-wrapper {
    text-align: center;
    padding-bottom: 15px;
    width: 100%;
}
.watermark-link {
    color: #64748b;
    text-decoration: underline;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
}

/* === MİKRO ADIM 154: KARTVİZİT HARİTA LİNK STİLİ === */
.kv-map-link-hidden {
    display: none;
    margin-top: 10px;
    border-color: rgba(37, 99, 235, 0.3);
}

/* === MİKRO ADIM 156: MOBİL KART SAYFASI VE İNDİRME MODALI STİLLERİ === */
.mk-phone-icon {
    color: #64748b;
}
.mk-h3-title {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.mk-fg-mt {
    margin-top: 10px;
}
.mk-h4-title {
    color: #3b82f6;
    border-bottom: 1px dashed var(--border-color);
    margin: 20px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
    text-transform: uppercase;
}
.mk-btn-generate {
    background: linear-gradient(135deg, #10b981, #059669);
    margin-top: 25px;
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.mk-download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.96);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}
.mk-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #94a3b8;
    font-size: 35px;
    cursor: pointer;
    font-weight: bold;
}
.mk-modal-text {
    color: #f1f5f9;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    padding: 0 10px;
    line-height: 1.5;
}
.mk-modal-subtext {
    color: #3b82f6;
    font-size: 13px;
    font-weight: normal;
}
.mk-modal-img {
    max-width: 100%;
    max-height: 70%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1.5px solid #3d4255;
}
.mk-modal-btn {
    margin-top: 20px;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}
.mk-footer-container {
    border-top: 1px solid #3d4255;
    text-align: center;
    padding: 25px 15px;
    margin-top: 50px;
    font-size: 13px;
    color: #64748b;
    width: 100%;
    box-sizing: border-box;
    clear: both;
    position: relative;
    z-index: 1;
}

/* === MİKRO ADIM 172: GLOBAL REKLAM ŞERİDİ FLEXBOX ONARIMI === */
.global-ecosystem-ticker {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 9999;
}
.ticker-animation-wrapper {
    flex-grow: 1;
    overflow: hidden;
    text-align: center;
    padding: 0 25px; /* Çarpı butonu için alan */
}
.ad-ticker-text {
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.ticker-close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10000;
}
