: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; }
}

/* --- index.html extracted styles --- */

    .ecosystem-banner {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 40px auto 20px auto;
        width: 100%;
        max-width: 280px;
        height: 80px;
        background-color: #1e2029; 
        border: 1px solid #3d4255;
        border-radius: 8px;
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
        font-size: 16px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        transition: transform 0.2s;
    }
    .ecosystem-banner:hover {
        transform: scale(1.02);
    }
    .ecosystem-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* --- kartvizit_mobil.html extracted styles --- */

        *, *::before, *::after {
            box-sizing: border-box !important;
        }
        .copyright-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
    

/* --- kartvizit.html Paid Card Button --- */
#btnCreatePaidCard {
    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;
    display: block;
    box-sizing: border-box;
}
#btnCreatePaidCard:hover {
    opacity: 0.9;
}

/* --- ÖDEME MODÜLÜ PURE CSS --- */
#iyzipay-checkout-form { margin-top: 20px; min-height: 50px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- ÖDEME MODÜLÜ PURE CSS --- */
#iyzipay-checkout-form { margin-top: 20px; min-height: 50px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- SAF HTML ÖDEME SAYFASI MERKEZİ STİLLERİ --- */
.odeme-body {
    background-color: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.odeme-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-sizing: border-box;
}

.odeme-title {
    color: #1f2937;
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
}

.odeme-subtitle {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 20px;
}

.odeme-service-name {
    color: #2563eb;
    font-weight: bold;
}

.odeme-actions {
    margin-top: 20px;
}

.btn-odeme-back {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    background-color: #4b5563;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.btn-odeme-back:hover {
    background-color: #374151;
}

#iyzipay-checkout-form {
    margin-top: 15px;
    min-height: 50px;
}

.error-msg {
    color: #dc2626;
    font-weight: bold;
    padding: 15px;
}

/* --- SİMÜLASYON KUTUSU PURE CSS KURALLARI --- */
.simulasyon-kutusu {
    padding: 20px;
    background-color: #1e293b;
    border: 2px dashed #3b82f6;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}
.simulasyon-baslik {
    color: #60a5fa;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-size: 16px;
}
.simulasyon-aciklama {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0 0 15px 0;
}
.btn-simulasyon-onayla {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background-color: #d97706;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-simulasyon-onayla:hover {
    background-color: #b45309;
}

/* --- SİMÜLASYON KUTUSU LIGHT TEMA UYUMU (BEYAZ KART İÇİN) --- */
.simulasyon-kutusu {
    background-color: #f8fafc !important;
    border: 2px dashed #93c5fd !important;
    color: #1e293b !important;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
}
.simulasyon-baslik {
    color: #2563eb !important;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}
.simulasyon-aciklama {
    color: #475569 !important;
    font-size: 14px;
    margin-bottom: 15px;
}

/* --- CV MODÜLÜ SAF CSS BUTON MİMARİSİ (DÜZELTİLDİ) --- */
.cv-btn-download {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    border: none;
    padding: 13px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}
.cv-btn-download.is-paid,
.cv-btn-download.btn-emerald {
    background: linear-gradient(45deg, #10b981, #059669) !important;
}

.cv-btn-pay {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin-top: 5px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}
.cv-btn-pay.is-paid,
.cv-btn-pay.active-license,
.cv-btn-pay.btn-emerald {
    background: linear-gradient(45deg, #10b981, #059669) !important;
    pointer-events: auto !important;
    opacity: 0.9;
}

/* --- CV MODÜLÜ MERKEZİ MİMARİ CSS SINIFLARI --- */
.cv-header-bar {
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
    max-width: 1450px;
    margin: 20px auto 0 auto;
}
.cv-sub-desc {
    color: var(--text-muted);
    margin: 0;
}
.cv-studio-container {
    grid-template-columns: 460px 1fr !important;
}
.cv-panel-title {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
}
.cv-input-file {
    color: var(--text-white);
    font-size: 12px;
}
.cv-section-title {
    color: #3b82f6;
    border-bottom: 1px dashed var(--border-color);
    margin: 15px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
}
.cv-textarea-tall {
    height: 100px;
}
.cv-textarea-mid {
    height: 80px;
}
.copyright-title {
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    font-size: 20px;
    color: var(--text-white);
}
.copyright-text {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.7;
    opacity: 0.9;
}

/* --- CV MODÜLÜNDEN ÇIKARILAN SAF CSS --- */

        /* Geometrik Taşma ve Sığdırma Kalkanı */
        *, *::before, *::after {
            box-sizing: border-box !important;
        }

        .copyright-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        /* A4 Geometri Standartları - Ekranda Gösterim */
        .a4-preview-page {
            width: 210mm !important;
            height: 297mm !important;
            max-width: 210mm !important;
            max-height: 297mm !important;
            min-height: 297mm !important;
            margin: 0 auto !important;
            padding: 15mm !important;
            background: #ffffff !important;
            border: 1px solid #e2e8f0 !important;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
            overflow: hidden !important;
            position: relative !important;
        }

        @media print {
            @page { size: A4 portrait; margin: 0; }
            body { background: white !important; margin: 0 !important; padding: 0 !important; }
            nav, .navbar, .no-print, .control-panel, footer, .copyright-overlay { display: none !important; }
            .studio-container { display: block !important; margin: 0 !important; padding: 0 !important; }
            .cv-preview-panel { display: block !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
            .a4-preview-page {
                width: 210mm !important;
                height: 297mm !important;
                margin: 0 !important;
                padding: 15mm !important;
                border: none !important;
                box-shadow: none !important;
                page-break-after: avoid !important;
                page-break-inside: avoid !important;
            }
        }
    

/* --- CV MODÜLÜ SAF CSS MİMARİSİ (SIFIR INLINE STYLE) --- */
.cv-header-bar {
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
    max-width: 1450px;
    margin: 20px auto 0 auto;
}
.cv-sub-desc {
    color: var(--text-muted);
    margin: 0;
}
.cv-studio-container {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 20px;
    max-width: 1450px;
    margin: 20px auto;
    padding: 0 15px;
    align-items: flex-start;
}
.cv-panel-title {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
}
.cv-input-file {
    color: var(--text-white);
    font-size: 12px;
}
.cv-section-title {
    color: #3b82f6;
    border-bottom: 1px dashed var(--border-color);
    margin: 15px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
}
.cv-textarea-tall {
    height: 100px;
}
.cv-textarea-mid {
    height: 80px;
}
.cv-btn-download {
    background: linear-gradient(45deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.cv-btn-pay {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin-top: 5px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.cv-btn-pay.is-paid {
    background: linear-gradient(45deg, #10b981, #059669);
    pointer-events: none;
    opacity: 0.9;
}

/* --- CV MODÜLÜ TAM VE SAF CSS MİMARİSİ --- */
.cv-header-bar {
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
    max-width: 1450px;
    margin: 20px auto 0 auto;
}
.cv-sub-desc {
    color: var(--text-muted, #94a3b8);
    margin: 0;
}
.cv-studio-container {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 20px;
    max-width: 1450px;
    margin: 20px auto;
    padding: 0 15px;
    align-items: flex-start;
}
.cv-panel-title {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
}
.cv-input-file {
    color: #ffffff;
    font-size: 12px;
}
.cv-section-title {
    color: #3b82f6;
    border-bottom: 1px dashed #334155;
    margin: 15px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
    text-transform: uppercase;
}
.cv-textarea-tall {
    height: 100px;
}
.cv-textarea-mid {
    height: 80px;
}
.cv-btn-download {
    background: linear-gradient(45deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.cv-btn-pay {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin-top: 5px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.cv-btn-pay.is-paid {
    background: linear-gradient(45deg, #10b981, #059669);
    pointer-events: none;
    opacity: 0.9;
}

/* --- A4 ÖNİZLEME KAĞIDI KUSURSUZ DÜZEN CSS --- */
.cv-preview-panel {
    width: 100%;
    display: flex;
    justify-content: center;
}
.a4-preview-page {
    background: #ffffff;
    color: #1e293b;
    width: 100%;
    max-width: 800px;
    min-height: 1000px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.cv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.cv-name {
    font-size: 24px;
    font-weight: bold;
    color: #0f172a;
    text-transform: uppercase;
}
.cv-job {
    font-size: 13px;
    font-weight: bold;
    color: #2563eb;
    margin-top: 5px;
    text-transform: uppercase;
}
.cv-contacts {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}
.cv-photo-placeholder {
    width: 100px;
    height: 120px;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    object-fit: cover;
    border-radius: 4px;
}
.cv-section {
    margin-bottom: 18px;
}
.cv-sec-title {
    background: #f1f5f9;
    padding: 6px 10px;
    font-weight: bold;
    font-size: 12px;
    color: #0f172a;
    border-left: 4px solid #2563eb;
    margin-bottom: 8px;
}
.cv-sec-content {
    font-size: 12px;
    color: #334155;
    line-height: 1.6;
    white-space: pre-line;
    padding: 0 5px;
}

/* --- BROŞÜR MODÜLÜ SAF CSS MİMARİSİ (KONTROL PANELİ SCROLL KORUMALI) --- */
.brosur-header-bar {
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
    max-width: 1450px;
    margin: 20px auto 0 auto;
}
.brosur-sub-desc {
    color: var(--text-muted);
    margin: 0;
}
.brosur-title-blue {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
}
.brosur-sub-title-blue {
    color: #3b82f6;
    border-bottom: 1px dashed var(--border-color);
    margin: 15px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
    text-transform: uppercase;
}
.ta-works {
    height: 70px;
}
.ta-refs {
    height: 50px;
}
.btn-download-green {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.btn-pay-orange {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.btn-pay-orange.is-paid {
    background: linear-gradient(45deg, #10b981, #059669);
    pointer-events: none;
    opacity: 0.9;
}
.brosur-tagline {
    font-size: 11px;
    font-weight: bold;
    color: #94a3b8;
    letter-spacing: 1px;
}
.brosur-block-works-text {
    white-space: pre-line;
}
.brosur-block-refs {
    border-left-color: #10b981 !important;
}
.brosur-title-refs {
    color: #10b981 !important;
}
.brosur-brand-box {
    text-align: right;
    font-size: 10px;
    font-weight: bold;
    color: #64748b;
}
.brosur-brand-name {
    color: #3b82f6;
}
.copyright-modal-title {
    margin-top: 0;
    border-bottom: 1px solid #3d4255;
    padding-bottom: 10px;
    font-size: 20px;
    color: #f8fafc;
}
.copyright-modal-p {
    font-size: 14px;
    color: #f8fafc;
    line-height: 1.7;
    opacity: 0.9;
}
.copyright-modal-italic {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}
.footer-container {
    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;
    position: relative;
    z-index: 1;
}
.footer-copyright-trigger {
    cursor: pointer;
    text-decoration: underline;
}

/* --- MOBİL KART (KARTVİZİT) SAF CSS MİMARİSİ --- */
.kv-studio-container {
    display: flex;
    gap: 20px;
    max-width: 1450px;
    margin: 20px auto;
    padding: 0 15px;
    align-items: flex-start;
}
.kv-control-panel {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-sizing: border-box;
}
.kv-saas-info-box {
    margin-top: 0;
    margin-bottom: 20px;
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.25);
}
.kv-saas-title-green {
    color: #10b981;
    font-size: 13px;
}
.kv-p-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.kv-saas-title-sm {
    font-size: 12px;
    margin-top: 10px;
}
.kv-saas-list {
    font-size: 12px;
    color: var(--text-muted);
}
.kv-h3-title {
    margin-top: 0;
    color: #3b82f6;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.kv-h4-title {
    color: #3b82f6;
    border-bottom: 1px dashed var(--border-color);
    margin: 15px 0 10px 0;
    padding-bottom: 3px;
    font-size: 11px;
}
.kv-fg-row-mt {
    margin-top: 10px;
}
.kv-preview-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    min-width: 320px;
}
.kv-card-widget {
    width: 100%;
    max-width: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
}
.kv-phone-icon {
    color: #64748b;
}
.kv-links-box {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.kv-qr-wrapper {
    margin-top: 15px;
    text-align: center;
}
.kv-qr-img {
    max-width: 150px;
}
.kv-copyright-title {
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    font-size: 20px;
    color: var(--text-white);
}
.kv-copyright-p {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.7;
    opacity: 0.9;
}
.kv-footer-container {
    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;
    position: relative;
    z-index: 1;
}
.kv-footer-trigger {
    cursor: pointer;
    text-decoration: underline;
}

/* --- MOBİL KART MODÜLÜ BUTON VE TEMİZ DÜZEN SINIFLARI --- */
.btn-pay-orange {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}
.btn-download-green {
    background: linear-gradient(45deg, #10b981, #059669);
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 14px;
}

/* --- İYZİCO ÖDEME FORMU LAYOUT SHIFT (SIÇRAMA) KORUMASI --- */
#iyzipay-checkout-form {
    min-height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: min-height 0.3s ease-in-out;
    margin-bottom: 20px;
}
#iyzipay-checkout-form:empty::before {
    content: "Ödeme altyapısı yükleniyor...";
    color: #94a3b8;
    font-size: 14px;
    font-style: italic;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
.simulasyon-kutusu {
    width: 100%;
    border: 2px dashed #3b82f6;
    background-color: #f8fafc;
    padding: 30px 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* --- İYZİCO ÖDEME FORMU LAYOUT SHIFT (SIÇRAMA) KORUMASI --- */
#iyzipay-checkout-form {
    min-height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: min-height 0.3s ease-in-out;
    margin-bottom: 20px;
}
#iyzipay-checkout-form:empty::before {
    content: "Ödeme altyapısı yükleniyor...";
    color: #94a3b8;
    font-size: 14px;
    font-style: italic;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
.simulasyon-kutusu {
    width: 100%;
    border: 2px dashed #3b82f6;
    background-color: #f8fafc;
    padding: 30px 20px;
    border-radius: 8px;
    box-sizing: border-box;
}


/* --- CV MODÜLÜ BİLİŞSEL BUTON STİLLERİ (KESİN OVERRIDE) --- */
.cv-btn-download {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 13px !important;
    border-radius: 6px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: block !important;
    text-align: center !important;
    font-size: 14px !important;
    pointer-events: auto !important;
}

.cv-btn-download.is-paid {
    background: linear-gradient(45deg, #10b981, #059669) !important;
}

.cv-btn-pay {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 6px !important;
    width: 100% !important;
    margin-top: 5px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: block !important;
    text-align: center !important;
    font-size: 14px !important;
    pointer-events: auto !important;
}

.cv-btn-pay.is-paid {
    background: linear-gradient(45deg, #10b981, #059669) !important;
    cursor: default !important;
    opacity: 0.9 !important;
}


/* --- İYZİCO ÖDEME FORMU YÜKLEME VE DÜZEN İYİLEŞTİRMELERİ --- */
#iyzipay-checkout-form {
    min-height: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.iyzico-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
    padding: 40px 0;
}

.iyzico-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: iyzico-spin 0.8s linear infinite;
}

@keyframes iyzico-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- SSS POP-UP (MODAL) VE BUTON STİLLERİ --- */
.bottom-banners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px auto 20px auto;
    flex-wrap: wrap;
}

.faq-trigger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.faq-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(5px);
    z-index: 999999 !important;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.faq-modal {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    position: relative;
    color: #f8fafc;
    text-align: left;
}

.faq-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-close:hover {
    color: #ffffff;
}

.faq-modal-title {
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #334155;
    font-size: 20px;
    font-weight: 800;
    color: #38bdf8;
}

.faq-modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
}

.faq-item p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: #cbd5e1;
}

.faq-item code {
    background-color: #0f172a;
    color: #f59e0b;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12.5px;
}

/* === MİKRO ADIM 174: KESİN REKLAM VE KART KÖŞE DÜZELTMELERİ === */
/* Style.css'nin ezmesini önlemek için en alta koyuldu */
.global-ecosystem-ticker {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 9999 !important;
    background: #1e293b !important;
}
.ticker-animation-wrapper {
    flex-grow: 1 !important;
    overflow: hidden !important;
    text-align: center !important;
    padding: 0 25px !important;
}
.ad-ticker-text {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
}

/* Mobil Kart Beyaz Köşe (Pah) Hatası Çözümü */
.preview-panel, .preview-panel-box, .mobile-ux-wrapper, .hero-preview-box {
}
.old-school-card, .card-widget-box {
    border-radius: 16px !important;
    overflow: hidden !important; /* Pah dışına taşan beyazlıkları traşlar */
}

/* === MİKRO ADIM 179: KARTVİZİT KÖŞE YALITIMI (PAH SIZINTISI ÇÖZÜMÜ) === */
.old-school-card, .card-widget-box {
    background-clip: padding-box !important; /* Arka plan renginin border kavisinden taşmasını engeller */
}
.preview-panel-box, .hero-preview-box {
    background-color: transparent !important; /* Arkadaki beyaz fonu silerek ana temanın rengini geçirir */
}

/* === MİKRO ADIM 181: MOBİL KART AÇIK TEMA (LIGHT MODE) DESTEĞİ === */
body.light-theme .old-school-card {
    background-color: var(--card-bg) !important;
}
body.light-theme .card-body-box {
    color: var(--text-main) !important;
}
body.light-theme .card-header-link {
    color: var(--text-main) !important;
    border-bottom: 1px solid var(--border-color);
}
body.light-theme .badge-node {
    background-color: var(--bg-dark) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
}

/* === MİKRO ADIM 183: AÇIK TEMA METİN OKUNABİLİRLİĞİ (WHITE-ON-WHITE ÇÖZÜMÜ) === */
body.light-theme .old-school-card h1,
body.light-theme .old-school-card .phone-row,
body.light-theme .old-school-card .phone-row span {
    color: var(--text-main) !important;
}
body.light-theme .old-school-card .title-sub,
body.light-theme .old-school-card .meta-row {
    color: var(--text-muted) !important;
}
