/* ===== Kesfet.site - Tema (Beyaz + Lacivert / Premium) ===== */
:root {
    --navy: #0b1f4d;
    --navy-700: #122a63;
    --navy-600: #1b3a86;
    --navy-500: #2f4fb0;
    --accent: #2f6bff;
    --accent-soft: #eaf0ff;
    --gold: #f4b740;
    --bg: #f6f8fc;
    --white: #ffffff;
    --text: #1a2236;
    --muted: #6b7488;
    --border: #e6eaf2;
    --shadow: 0 10px 30px rgba(11, 31, 77, 0.08);
    --shadow-sm: 0 4px 14px rgba(11, 31, 77, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-600); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600;
    font-size: 15px; cursor: pointer; border: 2px solid transparent;
    transition: all .2s; white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--navy-600); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--navy); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); color: var(--navy); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
    background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.logo-mark {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--accent));
    color: #fff; display: grid; place-items: center; font-size: 20px; font-weight: 800;
}
.logo-text { font-size: 20px; color: var(--navy); }
.logo-text span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: var(--navy); font-weight: 500; }
.main-nav a:hover { color: var(--accent); }
.nav-admin { color: var(--gold) !important; font-weight: 700 !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }

/* ===== Flash ===== */
.flash { margin: 16px auto; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 500; }
.flash-success { background: #e7f7ed; color: #157347; border: 1px solid #b6e3c6; }
.flash-error { background: #fdecec; color: #c02626; border: 1px solid #f5c2c2; }

/* ===== Hero (açık tema, referans tarzı) ===== */
.hero {
    background:
        radial-gradient(900px 400px at 85% 10%, #eaf0ff 0%, rgba(234,240,255,0) 60%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text); padding: 70px 0 80px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block; background: var(--accent-soft); color: var(--navy-600);
    font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 { font-size: 48px; line-height: 1.12; font-weight: 800; margin-bottom: 18px; color: var(--navy); }
.hero h1 .accent { color: var(--accent); }
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 28px; max-width: 540px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* Inline istatistikler */
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 26px; }
.hstat { display: flex; align-items: center; gap: 10px; }
.hstat-ico { font-size: 22px; }
.hstat b { display: block; font-size: 22px; color: var(--navy); font-weight: 800; line-height: 1; }
.hstat small { color: var(--muted); font-size: 13px; }

/* Cihaz mockup görseli */
.hero-visual { position: relative; z-index: 2; }
.mock-window {
    background: #fff; border-radius: 16px; box-shadow: var(--shadow);
    border: 1px solid var(--border); overflow: hidden; transform: perspective(1200px) rotateY(-6deg);
}
.mock-bar { background: #f1f4fa; padding: 11px 14px; display: flex; gap: 7px; border-bottom: 1px solid var(--border); }
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #d6dcea; }
.mock-bar span:first-child { background: #ff6058; }
.mock-bar span:nth-child(2) { background: #ffbd2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-body { padding: 20px; }
.mock-logo { font-weight: 800; color: var(--navy); font-size: 17px; margin-bottom: 14px; }
.mock-logo span { color: var(--accent); }
.mock-title { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.mock-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.mock-row:last-child { border-bottom: none; }
.mock-row img { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); }
.mock-info { flex: 1; min-width: 0; }
.mock-info b { display: block; font-size: 14px; color: var(--navy); }
.mock-info small { color: var(--muted); font-size: 12px; }
.mock-rate { color: var(--gold); font-weight: 700; font-size: 13px; }

/* ===== Search box ===== */
.search-box {
    background: #fff; border-radius: var(--radius-sm); padding: 8px 8px 8px 14px;
    display: flex; gap: 10px; align-items: center; box-shadow: var(--shadow);
    max-width: 560px; border: 1px solid var(--border);
}
.search-box .search-ico { color: var(--muted); font-size: 16px; }
.search-box input {
    flex: 1; border: none; outline: none; padding: 10px 4px; font-size: 16px;
    color: var(--text); background: transparent;
}

/* ===== Stats ===== */
.stats { margin-top: -40px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card {
    background: #fff; border-radius: var(--radius); padding: 26px 20px; text-align: center;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.stat-card .num { font-size: 32px; font-weight: 800; color: var(--navy); }
.stat-card .label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ===== Sections ===== */
.section { padding: 60px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-head h2 { font-size: 28px; color: var(--navy); font-weight: 800; }
.section-head a { font-weight: 600; }

/* ===== Categories (ikon kutucuklu, referans tarzı) ===== */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-chip {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 22px 14px; text-align: center; transition: all .2s; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.cat-chip:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-chip .cat-icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    font-size: 24px; margin-bottom: 8px; background: var(--accent-soft);
}
.cat-chip .cat-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.cat-chip .cat-count { color: var(--muted); font-size: 12px; }
/* renk varyasyonları */
.cat-c0 .cat-icon { background:#e8f0ff; }
.cat-c1 .cat-icon { background:#ffeaea; }
.cat-c2 .cat-icon { background:#e8f7ee; }
.cat-c3 .cat-icon { background:#fff3e0; }
.cat-c4 .cat-icon { background:#f0e9ff; }
.cat-c5 .cat-icon { background:#e0f5f9; }

/* ===== Cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: all .25s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-shot { height: 170px; background: var(--accent-soft); overflow: hidden; position: relative; }
.card-shot img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
    position: absolute; top: 10px; left: 10px; background: var(--gold); color: #4a3500;
    font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.card-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.card-favicon { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--border); }
.card-head-text { min-width: 0; }
.card-title { font-size: 16px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 5px; }
.verified { color: var(--accent); font-size: 13px; }
.card-domain { font-size: 13px; color: var(--muted); }
.card-cat { font-size: 12px; color: var(--accent); font-weight: 600; background: var(--accent-soft); padding: 4px 10px; border-radius: 20px; }
.card-desc { color: var(--muted); font-size: 14px; margin: 6px 0 14px; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.rating { color: var(--gold); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.rating .count { color: var(--muted); font-weight: 500; }
.stars { letter-spacing: 1px; }
.stars .star { color: #dde3ee; }
.stars .star.on, .stars .star.half { color: var(--gold); }
.stars .star.half { background: linear-gradient(90deg, var(--gold) 50%, #dde3ee 50%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== Detail ===== */
.detail-head { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.detail-logo { width: 90px; height: 90px; border-radius: var(--radius-sm); border: 1px solid var(--border); object-fit: cover; background:#fff;}
.detail-main { flex: 1; min-width: 260px; }
.detail-main h1 { font-size: 32px; color: var(--navy); margin-bottom: 6px; }
.detail-shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin: 24px 0; box-shadow: var(--shadow-sm); }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
.panel-box { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.panel-box h3 { color: var(--navy); margin-bottom: 14px; font-size: 18px; }

/* ===== Reviews ===== */
.review { border-bottom: 1px solid var(--border); padding: 14px 0; }
.review:last-child { border-bottom: none; }
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.review-author { font-weight: 700; color: var(--navy); }
.review-date { color: var(--muted); font-size: 13px; }

/* ===== Forms ===== */
.form-wrap { max-width: 520px; margin: 50px auto; }
.form-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-card h1 { color: var(--navy); font-size: 26px; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display:block; font-weight: 600; margin-bottom: 6px; color: var(--navy); font-size: 14px; }
.form-control {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 15px; font-family: inherit; outline: none; transition: border .2s;
}
.form-control:focus { border-color: var(--accent); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-foot { margin-top: 22px; text-align: center; color: var(--muted); font-size: 14px; }

/* ===== Tables (admin/panel) ===== */
.data-table { width: 100%; border-collapse: collapse; background:#fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.data-table th { background: var(--navy); color:#fff; font-weight: 600; }
.data-table tr:hover td { background: var(--accent-soft); }
.badge { display:inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-pending { background:#fff4e0; color:#9a6700; }
.badge-approved { background:#e7f7ed; color:#157347; }
.badge-rejected { background:#fdecec; color:#c02626; }

/* ===== Dashboard layout ===== */
.dash { display: grid; grid-template-columns: 240px 1fr; gap: 26px; padding: 40px 0; }
.dash-side { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 18px; height: fit-content; box-shadow: var(--shadow-sm); }
.dash-side a { display:block; padding: 11px 14px; border-radius: var(--radius-sm); color: var(--navy); font-weight: 500; margin-bottom: 4px; }
.dash-side a:hover, .dash-side a.active { background: var(--accent-soft); color: var(--accent); }
.dash-main { min-width: 0; }
.page-title { font-size: 26px; color: var(--navy); margin-bottom: 22px; font-weight: 800; }

/* ===== Error page ===== */
.error-page { padding: 100px 0; text-align: center; }
.error-box h1 { font-size: 90px; color: var(--accent); font-weight: 800; }
.error-box h2 { color: var(--navy); margin-bottom: 12px; }
.error-box p { color: var(--muted); margin-bottom: 24px; }

/* ===== Pagination ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.pagination a, .pagination span {
    padding: 9px 15px; border-radius: var(--radius-sm); border: 1px solid var(--border);
    background:#fff; color: var(--navy); font-weight: 600;
}
.pagination .current { background: var(--accent); color:#fff; border-color: var(--accent); }

/* ===== Star input ===== */
.star-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-input input { display: none; }
.star-input label { font-size: 26px; color: #d8dee9; cursor: pointer; transition: color .15s; }
.star-input input:checked ~ label,
.star-input label:hover, .star-input label:hover ~ label { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-grid { grid-template-columns: 1fr; }
    .dash { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute; top: 70px; left: 0; right: 0; background:#fff;
        flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px;
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow); display: none;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .card-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #c7d0e6; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 50px 0 30px; }
.footer-col h4 { color:#fff; margin-bottom: 14px; font-size: 16px; }
.footer-col a { display:block; color:#c7d0e6; padding: 5px 0; }
.footer-col a:hover { color:#fff; }
.footer-col p { font-size: 14px; opacity:.85; margin-top: 10px; }
.logo-footer .logo-text { color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 14px; opacity:.8; }

/* ===== Tabs (firma detay) ===== */
.tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
    background: none; border: none; padding: 12px 18px; font-size: 15px; font-weight: 600;
    color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 7px;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-count { background: var(--accent-soft); color: var(--accent); font-size: 12px; padding: 1px 8px; border-radius: 20px; font-weight: 700; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Basın haber öğesi */
.press-item {
    display: block; padding: 14px 0; border-bottom: 1px solid var(--border); position: relative;
}
.press-item:last-child { border-bottom: none; }
.press-type { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 6px; }
.press-item b { display: block; color: var(--navy); font-size: 16px; margin-bottom: 4px; }
.press-item small { display: block; color: var(--muted); font-size: 14px; }
.press-date { display: block; color: var(--muted); font-size: 12px; margin-top: 6px; }

/* Basın - firma bağı */
.press-firma { display: inline-block; font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.press-firma-box {
    display: flex; align-items: center; gap: 14px; background: var(--accent-soft);
    border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 22px;
}
.press-firma-box img { width: 48px; height: 48px; border-radius: 10px; object-fit: contain; background:#fff; border:1px solid var(--border); }
.press-firma-box small { display: block; color: var(--muted); font-size: 13px; }
.press-firma-box a { color: var(--navy); font-size: 16px; }

/* ============================================================
   BASIN BÜLTENİ - Kurumsal haber portalı görünümü
   ============================================================ */
.press { background: var(--bg); }

/* Kapak */
.press-cover {
    background-size: cover; background-position: center; color: #fff;
    border-radius: 0 0 0 0;
}
.press-cover-inner { padding: 38px 20px 32px; max-width: 1180px; }
.press-cover-badge {
    display: inline-block; background: var(--accent); color: #fff; font-weight: 700;
    font-size: 12px; letter-spacing: .05em; padding: 6px 14px; border-radius: 20px; margin-bottom: 14px;
}
.press-cover h1 { font-size: 33px; line-height: 1.15; font-weight: 800; max-width: 800px; margin-bottom: 12px; }
.press-cover-excerpt { font-size: 16px; opacity: .9; max-width: 720px; line-height: 1.55; margin-bottom: 16px; }
.press-cover-meta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; font-size: 13.5px; opacity: .95; }
.press-cover-meta a { color: #fff; text-decoration: underline; }
.press-share { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.press-share a {
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.15);
    display: grid; place-items: center; color: #fff; font-weight: 700; transition: background .2s;
}
.press-share a:hover { background: var(--accent); }

/* İki kolon düzen */
.press-layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 32px;
    padding: 38px 20px; align-items: start; max-width: 1280px;
}
.press-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 38px 46px; }
.press-content p { font-size: 17px; line-height: 1.85; color: var(--text); margin-bottom: 18px; }
.press-quote {
    border-left: 4px solid var(--accent); background: var(--accent-soft);
    padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--navy); margin: 26px 0; font-size: 16.5px; line-height: 1.7;
}

/* Bilgi kutusu */
.press-info {
    display: flex; gap: 14px; align-items: flex-start; background: #fff8e9;
    border: 1px solid #f4e2bd; border-radius: var(--radius-sm); padding: 18px 20px; margin: 26px 0;
    color: #6b5418; font-size: 15px; line-height: 1.6;
}
.press-info-ico { font-size: 22px; }

/* Stat kutuları (içerik içinde) */
.press-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 26px; }
.press-stat { background: var(--accent-soft); border-radius: var(--radius-sm); padding: 18px 20px; display: flex; align-items: center; gap: 14px; }
.press-stat .ps-ico { font-size: 28px; }
.press-stat .ps-num { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.press-stat .ps-label { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* Haber sonu - Firma Hakkında */
.press-about {
    margin-top: 30px; padding: 24px; border: 1px solid var(--border);
    border-radius: var(--radius); background: var(--bg);
}
.press-about-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.press-about-head img { width: 44px; height: 44px; border-radius: 10px; object-fit: contain; background: #fff; border: 1px solid var(--border); }
.press-about-head h3 { color: var(--navy); font-size: 18px; }
.press-about p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.press-about-foot { display: flex; gap: 10px; flex-wrap: wrap; }

/* Etiketler */
.press-tags { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border); }
.press-tags-label { font-weight: 700; color: var(--navy); font-size: 14px; }
.press-tag { background: var(--bg); border: 1px solid var(--border); color: var(--muted); font-size: 13px; padding: 5px 12px; border-radius: 20px; }

/* Sağ kenar */
.press-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; }

/* Firma bilgi kartı */
.firma-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.firma-card-top { height: 70px; background: linear-gradient(135deg, var(--navy), var(--accent)); }
.firma-card-logo { width: 74px; height: 74px; margin: -37px auto 0; position: relative; }
.firma-card-logo img, .firma-card-logo > span {
    width: 74px; height: 74px; border-radius: 16px; border: 3px solid #fff; background: #fff;
    object-fit: contain; display: grid; place-items: center; font-size: 30px; font-weight: 800; color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.firma-card-verified {
    position: absolute; right: 2px; top: 2px; width: 22px; height: 22px; border-radius: 50%;
    background: #28c840; color: #fff; display: grid; place-items: center; font-size: 12px; border: 2px solid #fff;
}
.firma-card-body { padding: 14px 22px 22px; text-align: center; }
.firma-card-body h3 { color: var(--navy); font-size: 19px; margin-bottom: 6px; }
.firma-card-rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 16px; font-size: 14px; }
.firma-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.fcs { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 8px; text-align: center; }
.fcs span { font-size: 18px; display: block; }
.fcs b { display: block; color: var(--navy); font-size: 16px; font-weight: 800; margin-top: 2px; }
.fcs small { color: var(--muted); font-size: 11px; }
.firma-card-meta { list-style: none; text-align: left; margin-bottom: 18px; }
.firma-card-meta li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.firma-card-meta li:last-child { border-bottom: none; }
.firma-card-meta li span { color: var(--muted); white-space: nowrap; }
.firma-card-meta li b, .firma-card-meta li a { color: var(--navy); text-align: right; font-weight: 600; }

/* Yan kutu (benzer bültenler) */
.side-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.side-box-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.side-box-head h4 { color: var(--navy); font-size: 16px; }
.side-box-head a { font-size: 12px; font-weight: 600; }
.side-press { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.side-press:last-child { border-bottom: none; }
.side-press-thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; background: var(--accent-soft); flex-shrink: 0; display: grid; place-items: center; font-size: 22px; }
.side-press-thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-press-text b { display: block; color: var(--navy); font-size: 14px; line-height: 1.3; margin-bottom: 4px; }
.side-press-text small { color: var(--muted); font-size: 12px; }

/* Alt CTA */
.press-cta { background: #fff; border-top: 1px solid var(--border); }
.press-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 34px 20px; flex-wrap: wrap; }
.press-cta-left { display: flex; gap: 18px; align-items: flex-start; max-width: 560px; }
.press-cta-ico { font-size: 42px; }
.press-cta-left h3 { color: var(--navy); font-size: 20px; margin-bottom: 6px; }
.press-cta-left p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.press-cta-feats { display: flex; gap: 26px; }
.press-cta-feats div { text-align: center; }
.press-cta-feats span { font-size: 26px; display: block; margin-bottom: 6px; }
.press-cta-feats b { color: var(--navy); font-size: 13px; }

@media (max-width: 900px) {
    .press-layout { grid-template-columns: 1fr; }
    .press-side { position: static; }
    .press-cover h1 { font-size: 30px; }
    .press-content { padding: 24px 22px; }
    .press-share { margin-left: 0; width: 100%; }
    .press-cta-feats { width: 100%; justify-content: space-around; }
}

/* Firma kart aksiyon butonları */
.firma-card-actions { display: flex; flex-direction: column; gap: 8px; }
.firma-card-logo img, .firma-card-logo > span {
    width: 76px; height: 76px; border-radius: 16px; border: 3px solid #fff; background: #fff;
    object-fit: contain; display: grid; place-items: center; font-size: 30px; font-weight: 800; color: var(--navy);
    box-shadow: var(--shadow-sm);
}

/* ===== Reklam slotları ===== */
.ad-slot { position: relative; margin: 22px auto; text-align: center; max-width: 100%; overflow: hidden; }
.ad-slot img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 0 auto; }
.ad-label {
    position: absolute; top: 4px; right: 6px; font-size: 10px; color: var(--muted);
    background: rgba(255,255,255,.8); padding: 1px 6px; border-radius: 4px; z-index: 2; letter-spacing: .03em;
}
.ad-slot a { display: inline-block; }
.ad-1920x250 { max-width: 100%; }
.ad-1200x250 { max-width: 1200px; }
.ad-970x250 { max-width: 970px; }
.ad-728x90 { max-width: 728px; }
.ad-300x250 { max-width: 300px; }
.ad-300x600 { max-width: 300px; }
.ad-container { padding: 0 20px; }

/* Sponsorlu rozet */
.badge-sponsored { background: var(--gold); color: #4a3500; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.sponsor-tag { display:inline-block; background: var(--gold); color:#4a3500; font-size:11px; font-weight:700; padding:2px 8px; border-radius:20px; margin-left:6px; vertical-align:middle; }
