:root {
    --primary: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #DBEAFE;
    --primary-50: #EFF6FF;
    --secondary: #475569;
    --accent: #F59E0B;
    --success: #059669;
    --success-light: #D1FAE5;
    --danger: #DC2626;
    --warning: #D97706;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    color: #0F172A;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { letter-spacing: -0.02em; }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #F0F6FF 0%, #EFF6FF 60%, #F8FAFC 100%);
    padding: 3rem 0 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.hero-left { flex: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary-50); padding: 0.25rem 0.75rem;
    border-radius: 9999px; font-size: 0.7rem; font-weight: 700;
    color: var(--primary); margin-bottom: 1rem;
    border: 1px solid var(--primary-light);
}
.hero h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.3; margin-bottom: 0.75rem; color: var(--gray-900); }
.hero h1 .highlight { color: var(--primary); }
.hero p { font-size: 0.9375rem; color: var(--gray-500); max-width: 500px; margin-bottom: 1.5rem; }
.hero-search {
    display: flex; gap: 0.5rem; background: white;
    border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    padding: 0.25rem; max-width: 450px; box-shadow: var(--shadow-sm);
}
.hero-search input { flex: 1; padding: 0.625rem 1rem; border: none; outline: none; font-size: 0.875rem; background: transparent; }
.hero-search button { 
    font-family: 'Inter'; padding: 0.625rem 1.25rem; 
    background: #0f81ba; color: white; border: none; 
    border-radius: var(--radius-sm); font-weight: 600; font-size: 0.875rem; 
    cursor: pointer; transition: background 0.2s;
}
.hero-search button:hover { background: var(--primary-dark); }
.hero-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
.hero-stat .number { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.hero-stat .label { font-size: 0.7rem; color: var(--gray-500); font-weight: 500; }

/* Hero Sağ Kart */
.hero-right { flex: 1; max-width: 400px; }
.visual-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl); padding: 1.75rem;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.visual-card::before {
    content: ''; position: absolute; top: -30%; right: -20%;
    width: 180px; height: 180px; background: rgba(255,255,255,0.08);
    border-radius: 50%; pointer-events: none;
}
.visual-card::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 140px; height: 140px; background: rgba(255,255,255,0.05);
    border-radius: 50%; pointer-events: none;
}
.rating-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
    padding: 0.3rem 0.9rem; border-radius: 9999px; font-size: 0.7rem;
    font-weight: 600; color: white; margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.3);
}
.visual-card h3 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.visual-card p { color: rgba(255,255,255,0.85); font-size: 0.75rem; margin-bottom: 1.25rem; line-height: 1.5; }
.trust-strip { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.trust-chip {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.65rem;
    font-weight: 500; color: white; display: inline-flex; align-items: center;
    gap: 0.4rem; border: 1px solid rgba(255,255,255,0.2);
}

/* ── HERO KATEGORİLER ŞERIDI ── */
.hero-categories {
    border-top: 1px solid rgba(30, 64, 175, 0.1);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 0;
}
.hero-categories-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.hero-cat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid rgba(30, 64, 175, 0.08);
    text-decoration: none;
    color: inherit;
}
.hero-cat-item:last-child { border-right: none; }
.hero-cat-item:hover { background: rgba(30, 64, 175, 0.04); }
.hero-cat-item:hover .hero-cat-icon { background: var(--primary); color: white; }
.hero-cat-icon {
    width: 38px; height: 38px; min-width: 38px;
    background: var(--primary-50); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1rem;
    transition: all 0.2s ease;
}
.hero-cat-name { font-size: 0.8rem; font-weight: 700; color: var(--gray-800); line-height: 1.2; }
.hero-cat-count { font-size: 0.65rem; color: var(--gray-400); font-weight: 500; margin-top: 0.1rem; }

/* ── BÖLÜM BAŞLIKLARI ── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.section-title { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); display: flex; align-items: center; gap: 0.5rem; }
.section-title i { color: var(--primary); font-size: 1.35rem; }

/* ── İÇERİK KARTLARI ── */
.firms-section { margin: 3rem 0 2rem; }
.firms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.firm-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.firm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.firm-card-inner { padding: 1.5rem; }

.firm-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.firm-logo-area { display: flex; align-items: center; gap: 0.875rem; }
.firm-logo {
    width: 70px; height: 70px;
    border-radius: var(--radius-md);
    border: 1px solid #eaeef8;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; background: var(--primary-50);
}
.firm-info h3 { font-size: 1rem; font-weight: 800; color: var(--gray-800); margin-bottom: 0.2rem; }
.firm-info p { font-size: 0.7rem; color: var(--gray-400); font-weight: 600; }

.firm-score-badge {
    background: #f9fafb;
    border: 1px solid #eaeef8;
    border-radius: var(--radius-lg);
    padding: 0.35rem 0.7rem;
    text-align: center;
    min-width: 60px;
}
.firm-score-badge span { font-size: 1.25rem; font-weight: 800; color: #0f81ba; }
.firm-score-badge span small { font-size: 0.65rem; font-weight: 500; color: var(--gray-400); }

.firm-description {
    border-radius: var(--radius-md);
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid #eaeef8;
    border-top: 1px solid #eaeef8;
}

.firm-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.tag {
    font-size: 0.7rem; background: var(--gray-100);
    padding: 0.25rem 0.7rem; border-radius: 999px;
    color: var(--gray-600); font-weight: 500;
}
.tag i { font-size: 0.6rem; margin-right: 0.2rem; }

.firm-action { margin-top: 0.5rem; }
.btn-review-card {
    width: 100%;
    font-family: 'Inter';
    background: #0f81ba;
    color: #f9fafb;
    border: 1px solid var(--primary-light);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-review-card:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── HAKKIMIZDA ── */
.about-section {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin: 3rem 0;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about-left {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.about-left::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px; background: rgba(255,255,255,0.06);
    border-radius: 50%; pointer-events: none;
}
.about-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    padding: 0.25rem 0.75rem; border-radius: 9999px;
    font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem; letter-spacing: 0.5px; text-transform: uppercase;
}
.about-left h2 { font-size: 1.625rem; font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.3; }
.about-left p { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.about-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.about-num-item {
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md); padding: 0.75rem; text-align: center;
}
.about-num-value { font-size: 1.25rem; font-weight: 800; color: white; line-height: 1.2; }
.about-num-label { font-size: 0.6rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 0.2rem; }

.about-right { padding: 3rem; }
.about-right h3 { font-size: 1rem; font-weight: 800; color: var(--gray-800); margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; font-size: 1rem;
}
.feature-icon.blue { background: #EFF6FF; color: #1E40AF; }
.feature-icon.green { background: #ECFDF5; color: #059669; }
.feature-icon.amber { background: #FFFBEB; color: #B45309; }
.feature-text h4 { font-size: 0.8125rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.25rem; }
.feature-text p { font-size: 0.75rem; color: var(--gray-500); line-height: 1.5; }

/* ── YORUMLAR / POPÜLER İÇERİKLER ── */
.reviews-section { margin: 2rem 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.review-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 1rem; }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-avatar { width: 36px; height: 36px; background: var(--primary-50); border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem; color: var(--primary); }
.review-name { font-weight: 700; font-size: 0.8125rem; }
.review-date { font-size: 0.65rem; color: var(--gray-400); }
.review-text { font-size: 0.75rem; color: var(--gray-600); line-height: 1.5; }

/* ── CTA ── */
.cta-section { background: var(--gray-900); border-radius: var(--radius-xl); padding: 2.5rem; text-align: center; margin: 2rem 0; }
.cta-section h2 { font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.cta-section p { font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 1.25rem; }
.btn-cta { 
    background: white; color: var(--gray-900); 
    padding: 0.5rem 1.5rem; border-radius: var(--radius-md); 
    font-weight: 700; font-size: 0.8125rem; 
    border: none; cursor: pointer; text-decoration: none; 
    display: inline-block;
}
.btn-cta:hover { background: var(--primary-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .firms-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-categories-inner { grid-template-columns: repeat(3, 1fr); }
    .hero-cat-item:nth-child(3) { border-right: none; }
    .about-inner { grid-template-columns: 1fr; }
    .about-left { padding: 2rem; }
    .about-right { padding: 2rem; }
}
@media (max-width: 768px) {
    .firms-grid { grid-template-columns: 1fr; }
    .hero-categories-inner { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-main { flex-direction: column; }
    .hero-right { max-width: 100%; }
    .about-nums { grid-template-columns: repeat(3, 1fr); }
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero-search { flex-direction: column; padding: 0.5rem; }
    .hero-search button { width: 100%; }
}