@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&display=swap');

/* ===== PDF PLATFORM - COMPLETE CSS ===== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --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;
    --white: #ffffff;
    --black: #000000;
    --radius: 0.5rem;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo i {
    font-size: 1.75rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-700);
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-hero {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Tools Grid */
.tools-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.tool-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.tool-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.tool-description {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.tool-meta {
    display: block;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Security Section */
.security-section {
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
    padding: 4rem 0;
}

.security-content {
    text-align: center;
}

.security-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.security-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.security-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.security-feature i {
    font-size: 2rem;
    color: var(--success);
    flex-shrink: 0;
}

.security-feature h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.security-feature p {
    color: var(--gray-600);
}

/* Articles */
.articles-section {
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.article-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-card h3 {
    margin-bottom: 0.5rem;
}

.article-card h3 a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s;
}

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

.article-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.article-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.article-link:hover {
    gap: 0.75rem;
}

/* AdSense */
.ad-container {
    text-align: center;
    margin: 3rem 0;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.security-badges {
    margin-top: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cookie-text p {
    margin: 0;
}

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

.cookie-text a:hover {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* --- BREADCRUMB (YOL GÖSTERGESİ) STİLLERİ --- */
.breadcrumb {
    background: #f9fafb;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    margin-bottom: 2rem; /* Bunu ekledim: Altındaki başlıkla yapışmasın diye */
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;          /* Bunu ekledim: Tarayıcı varsayılan boşluğunu sıfırla */
    margin: 0;           /* Bunu ekledim: Düzgün hizalama için */
}

.breadcrumb li {         /* Bunu ekledim: Yan yana dizilmeyi garantiye al */
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #9ca3af;
    font-weight: bold;   /* Bunu ekledim: Ok işareti daha net görünsün */
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s; /* Bunu ekledim: Üzerine gelince yumuşak renk değişimi */
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #4f46e5;      /* Bunu ekledim: Hover rengi biraz daha koyu olsun */
}

.breadcrumb li:last-child { /* Bunu ekledim: Son eleman (bulunduğun sayfa) gri olsun */
    color: #6b7280;
    pointer-events: none; /* Tıklanmasın */
}

/* Premium UX micro-animations */
@media (prefers-reduced-motion: no-preference) {
  .btn, .card, .tool-card { transition: transform .15s ease, box-shadow .15s ease; }
  .btn:hover { transform: translateY(-1px); }
  .card:hover, .tool-card:hover { transform: translateY(-2px); }
}


/* Trust + related links block (tool pages) */
.pp-links{min-width:260px;max-width:520px}
.pp-links-title{font-weight:700;margin-bottom:6px}
.pp-links ul{margin:8px 0 0;padding-left:18px;color:var(--muted)}
.pp-links a{text-decoration:underline}

/* ═══════════════════════════════════════════════════
   MirPDF Utility Classes — inline style replacement
   (auto-generated 2026-03-24)
═══════════════════════════════════════════════════ */
.mir-logo-img{border-radius:8px;flex-shrink:0}
.mir-logo-img-sm{border-radius:6px;flex-shrink:0}
.mir-nav-link{text-decoration:none;color:var(--muted);font-size:.88rem;font-weight:500;padding:.4rem .8rem;border-radius:8px}
.mir-sep{color:#6b7280;margin:0 8px}
.mir-btn-primary{background:#2563eb}
.mir-btn-purple{background:#7c3aed}
.mir-content-box{max-width:900px;margin:0 auto;padding:0 2rem 1rem}
.mir-content-box-lg{max-width:900px;margin:0 auto;padding:0 2rem 1.5rem}
.mir-section-heading{font-family:'Instrument Serif',serif;font-size:1.6rem;font-weight:400;color:#0d0f1a;margin:2.5rem 0 .75rem}
.mir-subsection-title{font-size:1.05rem;font-weight:800;margin-bottom:1rem}
.mir-step-row{display:flex;gap:1rem;align-items:flex-start}
.mir-step-num{width:32px;height:32px;border-radius:50%;background:#0d0f1a;color:#fff;font-size:.85rem;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.15rem}
.mir-step-title{font-size:.95rem;font-weight:700;color:#0d0f1a;margin-bottom:.25rem}
.mir-step-desc{font-size:.88rem;color:#64748b;line-height:1.6}
.mir-info-card{background:#f7f8fc;border:1px solid #e3e6f0;border-radius:12px;padding:1.1rem 1.25rem}
.mir-tip-card{margin-top:1.5rem;padding:1rem 1.25rem;background:#f0f7ff;border-radius:12px;border:1px solid #bfdbfe}
.mir-notice-row{display:flex;align-items:center;gap:.75rem;margin:.75rem 0 1.5rem;padding:.75rem 1rem;background:#f8f9fa;border-radius:10px;font-size:.82rem;color:#6c757d}
.mir-tag-chip{display:inline-flex;align-items:center;gap:.3rem;padding:.4rem .8rem;background:#fff;border:1px solid #bfdbfe;border-radius:8px;font-size:.82rem;font-weight:600;color:#1d4ed8;text-decoration:none}
.mir-tag-row{display:flex;flex-wrap:wrap;gap:.5rem}
.mir-related-tag{display:inline-flex;align-items:center;padding:.4rem .85rem;background:var(--bg-secondary,#f3f4f6);border-radius:.5rem;font-size:.875rem;color:var(--text-primary,#374151);text-decoration:none;font-weight:500;border:1px solid var(--border,#e5e7eb);transition:background .15s}
.mir-icon-badge{width:30px;height:30px;border-radius:8px;background:#ede9fe;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.75rem;color:#6d28d9}
.mir-icon-accent{margin-right:.3rem;color:#6366f1}
.mir-label-muted{font-size:.8rem;font-weight:700;color:var(--muted);align-self:center}
.mir-label-blue{font-size:.8rem;font-weight:700;color:#1d4ed8;margin-bottom:.5rem;text-transform:uppercase;letter-spacing:.05em}
.mir-label-dark{font-weight:700;color:#0d0f1a;display:block}
.mir-text-bold{font-weight:600;color:#1a1a2e}
.mir-text-xs{font-size:.78rem}
.mir-text-muted{color:#64748b}
.mir-text-primary{color:#2563eb}
.mir-text-base{color:var(--text)}
.mir-text-light{color:#e3e6f0}
.mir-link{color:#2563eb;text-underline-offset:3px;text-decoration:underline}
.mir-faq-item{border:1px solid #e3e6f0;border-radius:10px;margin-bottom:.5rem;overflow:hidden}
.mir-faq-q{padding:.8rem 1rem;font-weight:600;font-size:.92rem;cursor:pointer;list-style:none}
.mir-faq-a{padding:.5rem 1rem 1rem;font-size:.88rem;color:#64748b;line-height:1.65;margin:0}
.mir-list-item{padding:.35rem 0 .35rem 1.4rem;position:relative;border-bottom:1px solid #e3e6f0;font-size:.95rem;color:#374151}
.mir-list-dot{position:absolute;left:4px;top:.75em;width:6px;height:6px;border-radius:50%;background:#64748b;opacity:.5;display:block}
.mir-footer-link{display:block;color:rgba(255,255,255,.6);text-decoration:none;font-size:.83rem;margin-bottom:.38rem;transition:color .15s}
.mir-footer-link-light{display:block;color:#64748b;text-decoration:none;font-size:.85rem;margin-bottom:.4rem}
.mir-footer-link-dim{color:rgba(255,255,255,.45);text-decoration:none;font-size:.9rem}
.mir-mx{margin:0 .4rem}
.mir-mt-sm{margin-top:.6rem}
.mir-mt-section{margin:1.5rem 0 .75rem}
.mir-p-sm{padding:8px}
.mir-px-md{padding:.6rem 1rem}
.mir-breadcrumb-link{text-decoration:none;color:#64748b;font-size:.88rem;font-weight:500;padding:.4rem .8rem;border-radius:8px}

/* Round 2 utilities */
.mir-nav-item{color:var(--muted);text-decoration:none;padding:6px 12px;border-radius:8px;font-size:14px;font-weight:500}
.mir-hidden{display:none}
.mir-link-muted{color:#64748b;text-decoration:none}
.mir-btn-red{background:#dc2626}
.mir-link-slate{color:#94a3b8;text-decoration:none;font-size:.95rem}
.mir-tag-link{color:#64748b;text-decoration:none;font-size:.82rem;padding:.4rem .75rem}
.mir-numbered-item{counter-increment:step;display:grid;grid-template-columns:32px 1fr;column-gap:14px;align-items:start;padding:.6rem 0;border-bottom:1px solid #e3e6f0;font-size:.95rem;color:#374151}
.mir-sticky-nav{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.95);backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.mir-text-green{font-size:.85rem;color:#15803d}
.mir-bg-dark{background:#0f172a}
.mir-bg-cyan{background:#0891b2}
.mir-bg-blue-dark{background:#0369a1}
.mir-ml-auto-flex{margin-left:auto;display:flex;gap:.5rem}
.mir-badge-blue{display:inline-flex;align-items:center;gap:.3rem;padding:.3rem .65rem;border-radius:7px;background:#e7f0fd;color:#1d6ae5;font-size:.78rem;font-weight:600;text-decoration:none}
.mir-badge-green{display:inline-flex;align-items:center;gap:.3rem;padding:.3rem .65rem;border-radius:7px;background:#e6f9ef;color:#16a34a;font-size:.78rem;font-weight:600;text-decoration:none}
.mir-badge-indigo{display:inline-flex;align-items:center;gap:.3rem;padding:.3rem .65rem;border-radius:7px;background:#e8f0fe;color:#0a66c2;font-size:.78rem;font-weight:600;text-decoration:none}
.mir-icon-sm{width:28px;height:28px;border-radius:7px;background:#0d0f1a;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.75rem}
.mir-meta-row{display:flex;align-items:center;flex-wrap:wrap;gap:.75rem;margin-bottom:1.25rem;padding:.75rem 1rem;background:#f7f8fc;border-radius:12px;font-size:.82rem;color:#64748b}
.mir-block{display:block}
.mir-text-border{color:var(--border)}
.mir-w-0{width:0%}
.mir-center-pad{text-align:center;padding:1.5rem 0}
.mir-row-pad{padding:.7rem 1rem;border-bottom:1px solid #e3e6f0}
.mir-tip-card-lg{margin:2rem 0;padding:1rem 1.25rem;background:#f0f7ff;border-radius:12px;border:1px solid #bfdbfe}
.mir-accordion-q{padding:1rem 1.25rem;cursor:pointer;font-size:1rem;font-weight:600;color:#0d0f1a;background:#fff;list-style:none;display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.mir-accordion-item{margin-bottom:1rem;border:1px solid #e3e6f0;border-radius:10px;overflow:hidden}
.mir-text-tiny-muted{font-size:.75rem;color:var(--muted)}
.mir-footer-section-title{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:rgba(255,255,255,.4);margin-bottom:.6rem}

/* Round 3 utilities */
.mir-step-circle{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:#eef0f7;color:#0d0f1a;font-weight:800;font-size:.75rem;border:1.5px solid #e3e6f0;margin-top:2px;flex-shrink:0}
.mir-footer-link-sm{display:block;color:rgba(255,255,255,.6);text-decoration:none;font-size:.82rem}
.mir-m-0{margin:0}
.mir-mb-sm{margin-bottom:8px}
.mir-body-text{line-height:1.6;color:#555;margin-bottom:10px}
.mir-logo-text{font-weight:800;font-size:1.1rem;text-decoration:none;color:var(--text);display:flex;align-items:center;gap:.4rem}
.mir-inline-icon{display:flex;gap:4px;align-items:center;margin-right:8px}
.mir-btn-ghost{color:var(--muted);text-decoration:none;padding:6px 14px;border-radius:8px;font-size:14px;font-weight:500;border:1px solid var(--border)}
.mir-btn-accent{color:#fff;text-decoration:none;padding:6px 14px;border-radius:8px;font-size:14px;font-weight:600;background:var(--accent)}
.mir-footer-bar{border-top:1px solid #e5e7eb;margin-top:48px;padding:24px 0;text-align:center;color:#6b7280;font-size:13px}
.mir-footer-link-xs{color:rgba(255,255,255,.5);text-decoration:none}
.mir-text-red{color:#e63946}
.mir-list-item-sm{padding:.4rem 0 .4rem 1.4rem;position:relative;border-bottom:1px solid #e3e6f0}
.mir-section-wrap{max-width:860px;margin:0 auto;padding:2.5rem 1.5rem 0}
.mir-nav-inner{max-width:1100px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;height:60px}
.mir-prose{font-size:17px;line-height:1.75;color:#374151}
.mir-h2{font-size:1.3rem;font-weight:800;color:#0d0f1a;margin-bottom:1rem}

/* Round 4 utilities */
.mir-h2-lg{font-size:1.3rem;font-weight:800;color:#0d0f1a;margin-bottom:1.5rem}
.mir-label-sky{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#0284c7;margin-bottom:.4rem}
.mir-faq-a-alt{font-size:.88rem;color:#374151;line-height:1.65;margin:0}
.mir-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin-bottom:2.5rem}
.mir-steps-list{display:flex;flex-direction:column;gap:1.1rem;margin-bottom:2.5rem}
.mir-nav-bar{display:flex;align-items:center;justify-content:space-between;height:60px}
.mir-sky-card{background:#f0f9ff;border:1px solid #bae6fd;border-radius:12px;padding:1.1rem 1.25rem;margin-bottom:2rem}
.mir-list-indent{padding-left:1.4em;line-height:2}
.mir-hero-title-sm{font-size:1.1rem;font-weight:800;color:#fff;margin-bottom:.2rem}
.mir-h3{font-size:1.05rem;font-weight:700;color:#0d0f1a;margin:1.75rem 0 .5rem}
.mir-text-indigo-light{font-size:.8rem;color:rgba(199,210,254,.7)}
.mir-text-sm-muted{font-size:.82rem;color:#64748b;line-height:1.45}
.mir-btn-indigo{display:inline-flex;align-items:center;gap:.4rem;background:#4f46e5;color:#fff;font-size:.85rem;font-weight:700;padding:.65rem 1.4rem;border-radius:10px;text-decoration:none;flex-shrink:0}
.mir-pill-badge{display:inline-flex;align-items:center;gap:.3rem;background:rgba(255,255,255,.15);color:#c7d2fe;font-size:.65rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.2rem .65rem;border-radius:100px;margin-bottom:.6rem}
.mir-compare-grid{display:grid;grid-template-columns:1fr 1fr;background:#f7f8fc;border:1px solid #e3e6f0;border-top:none}
.mir-compare-cell-r{display:flex;align-items:flex-start;gap:.6rem;padding:.9rem 1rem;border-right:1px solid #e3e6f0}
.mir-compare-cell-br{display:flex;align-items:flex-start;gap:.6rem;padding:.9rem 1rem;border-bottom:1px solid #e3e6f0;border-right:1px solid #e3e6f0}
.mir-compare-cell-b{display:flex;align-items:flex-start;gap:.6rem;padding:.9rem 1rem;border-bottom:1px solid #e3e6f0}
.mir-compare-cell{display:flex;align-items:flex-start;gap:.6rem;padding:.9rem 1rem}
.mir-show-more-btn{display:block;width:100%;text-align:center;font-size:.72rem;color:#94a3b8;margin-top:.5rem;cursor:pointer;background:none;border:none;padding:.25rem;font-family:inherit}
.mir-text-dark-bold{color:#0d0f1a;font-weight:800}
.mir-card-header-purple{background:linear-gradient(135deg,#1e1b4b,#312e81);padding:1.25rem 1.5rem 1rem;text-align:center}
.mir-card-footer{background:#fff;border:1px solid #e3e6f0;border-top:none;border-radius:0 0 16px 16px;padding:1rem 1.25rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;flex-wrap:wrap}
.mir-btn-green{background:#16a34a}
.mir-icon-badge-lg{width:30px;height:30px;border-radius:8px;background:#ede9fe;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#6d28d9;font-size:.85rem}
.mir-mt-lg{margin-top:2rem}
.mir-fw-600{font-weight:600}
.mir-section-heading-divider{font-family:'Instrument Serif',serif;font-size:1.6rem;font-weight:400;color:#0d0f1a;margin:2.5rem 0 .75rem;padding-top:1rem;border-top:1px solid #e3e6f0}
.mir-dark-box{margin-top:40px;padding:20px;background:#0f1a30;border-radius:16px}
.mir-mt-center{margin-top:24px;text-align:center}
.mir-list-reset{list-style:none;margin:1rem 0;padding:0}
.mir-prose-indent{line-height:1.8;color:#555;padding-left:25px}
.mir-card-title{font-weight:700;font-size:1rem;margin-bottom:.5rem;color:#0d0f1a}
.mir-text-13{font-size:13px;margin-bottom:16px}
.mir-text-sm-mb{font-size:.9rem;color:#64748b;margin-bottom:1rem}
.mir-label-gray{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#64748b;margin-bottom:.75rem}
.mir-btn-dark{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.75rem;background:#0d0f1a;color:#fff;border-radius:10px;font-weight:700;font-size:.9rem;text-decoration:none}
.mir-link-sm{display:block;color:#64748b;text-decoration:none;font-size:.85rem}
.mir-cta-box{background:#f8fafc;border:1px solid #e3e6f0;border-radius:14px;padding:1.5rem;margin:2rem 0;text-align:center}
