/**
 * NetEsnaf - Ana Stil Dosyası
 * Tüm sayfalar için ortak stiller
 */

:root {
    --primary-900: #0F172A;
    --primary-800: #1E293B;
    --primary-700: #334155;
    --primary-600: #1E40AF;
    --primary-500: #2563EB;
    --primary-400: #3B82F6;
    --primary-100: #DBEAFE;
    --primary-50: #EFF6FF;
    
    --accent-600: #D97706;
    --accent-500: #F59E0B;
    --accent-400: #FBBF24;
    --accent-100: #FEF3C7;
    
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --gray-900: #0F172A;
    
    --success: #10B981;
    --success-light: #D1FAE5;
    --error: #EF4444;
    --info: #0EA5E9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link.has-dropdown {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

.nav-link.has-dropdown::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: var(--gray-50);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.dropdown-text {
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.dropdown-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
}

.btn-primary {
    background: var(--accent-500);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-900);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-700);
    color: white;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--gray-300);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-800);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--gray-300);
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

/* ==================== PAGE HEADER ==================== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.page-hero-description {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1001;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--gray-50);
    color: var(--primary-600);
}

.mobile-menu-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-buttons .btn {
    width: 100%;
    justify-content: center;
}


/* ===== MODULE DETAIL PAGES STYLES ===== */
/* ==========================================================================
   Module Detail Page Styles
   Used by: fatura, irsaliye, siparis, teklif, musteri-tedarikci, kasa-banka,
            cek-senet, stok, personel, proje, kesif
   ========================================================================== */

:root {
    --mod-success: #10B981;
    --mod-success-light: #D1FAE5;
    --mod-warning: #F59E0B;
    --mod-warning-light: #FEF3C7;
    --mod-error: #EF4444;
    --mod-error-light: #FEE2E2;
    --mod-primary-50: #EFF6FF;
    --mod-primary-100: #DBEAFE;
    --mod-primary-200: #BFDBFE;
    --mod-primary-500: #3B82F6;
    --mod-primary-600: #1E40AF;
    --mod-primary-700: #334155;
    --mod-primary-800: #1E293B;
    --mod-primary-900: #0F172A;
    --mod-gray-50: #F8FAFC;
    --mod-gray-100: #F1F5F9;
    --mod-gray-200: #E2E8F0;
    --mod-gray-500: #64748B;
    --mod-gray-700: #334155;
    --mod-gray-900: #0F172A;
}

/* ---------- Hero ---------- */
.module-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--mod-primary-50) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.module-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.module-breadcrumb {
    font-size: 0.875rem;
    color: var(--mod-gray-500);
    margin-bottom: 1.5rem;
}
.module-breadcrumb a {
    color: var(--mod-primary-600);
    text-decoration: none;
}
.module-breadcrumb a:hover { text-decoration: underline; }
.module-breadcrumb span { color: var(--mod-gray-700); }

.module-icon-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--mod-primary-100), var(--mod-primary-50));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.08);
}
.module-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--mod-gray-900);
    letter-spacing: -0.02em;
}
.module-hero-subtitle {
    font-size: 1.375rem;
    color: var(--mod-primary-600);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.module-hero-description {
    font-size: 1.0625rem;
    color: var(--mod-gray-500);
    margin-bottom: 2rem;
    line-height: 1.75;
}
.module-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- Hero Preview Card ---------- */
.module-preview {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid var(--mod-gray-100);
}
.preview-header {
    background: var(--mod-gray-50);
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--mod-gray-200);
}
.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mod-gray-200);
}
.preview-dot.red    { background: #EF4444; }
.preview-dot.yellow { background: #F59E0B; }
.preview-dot.green  { background: #10B981; }

.preview-body { padding: 1.5rem; }
.preview-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.preview-stat-card {
    background: var(--mod-gray-50);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.preview-stat-card:hover {
    border-color: var(--mod-primary-100);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.preview-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mod-gray-900);
    line-height: 1.2;
}
.preview-stat-value.success { color: var(--mod-success); }
.preview-stat-value.primary { color: var(--mod-primary-600); }
.preview-stat-value.error   { color: var(--mod-error); }
.preview-stat-value.warning { color: var(--mod-warning); }
.preview-stat-label {
    font-size: 0.75rem;
    color: var(--mod-gray-500);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ---------- Sections ---------- */
.mod-section {
    padding: 5rem 0;
}
.mod-section.bg-white { background: #ffffff; }
.mod-section.bg-gray  { background: var(--mod-gray-50); }

.mod-section .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.mod-section .section-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mod-primary-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--mod-primary-50);
    padding: 0.4rem 1rem;
    border-radius: 100px;
}
.mod-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--mod-gray-900);
    letter-spacing: -0.02em;
}
.mod-section .section-description {
    font-size: 1.0625rem;
    color: var(--mod-gray-500);
    line-height: 1.7;
}

/* ---------- Problem Cards ---------- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.problem-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    border: 1px solid var(--mod-gray-100);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.problem-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.problem-number {
    width: 40px;
    height: 40px;
    background: var(--mod-error-light);
    color: var(--mod-error);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
}
.problem-content { flex: 1; }
.problem-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--mod-gray-900);
    line-height: 1.35;
}
.problem-content p {
    font-size: 0.9375rem;
    color: var(--mod-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Solution Box ---------- */
.solution-box {
    background: linear-gradient(135deg, var(--mod-primary-50), #ffffff);
    border-left: 4px solid var(--mod-primary-600);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.05);
}
.solution-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mod-primary-700);
    margin-bottom: 0.75rem;
}
.solution-box p {
    color: var(--mod-gray-700);
    line-height: 1.75;
    margin: 0;
}

/* ---------- Feature Cards ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--mod-gray-100);
    transition: all 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--mod-primary-100);
}
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--mod-primary-100), var(--mod-primary-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--mod-gray-900);
}
.feature-description {
    font-size: 0.9375rem;
    color: var(--mod-gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--mod-gray-700);
    margin-bottom: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
}
.feature-list li::before {
    content: "\2713";
    color: var(--mod-success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---------- Report Cards ---------- */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.report-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--mod-gray-100);
    transition: all 0.3s ease;
}
.report-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--mod-primary-100);
}
.report-icon {
    width: 44px;
    height: 44px;
    background: var(--mod-primary-100);
    color: var(--mod-primary-600);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.report-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--mod-gray-900);
}
.report-description {
    font-size: 0.875rem;
    color: var(--mod-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Sector Pills ---------- */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.sector-pill {
    background: #ffffff;
    border: 1px solid var(--mod-gray-200);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
}
.sector-pill:hover {
    border-color: var(--mod-primary-600);
    background: var(--mod-primary-50);
    transform: translateY(-2px);
}
.sector-pill-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.sector-pill-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--mod-gray-900);
}
.sector-pill-desc {
    font-size: 0.8125rem;
    color: var(--mod-gray-500);
    line-height: 1.4;
}

/* ---------- Integration Cards ---------- */
.integrations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.integration-card {
    background: var(--mod-gray-50);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.integration-card:hover {
    background: #ffffff;
    border-color: var(--mod-primary-100);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.integration-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.integration-text { flex: 1; min-width: 0; }
.integration-text h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.1rem 0;
    color: var(--mod-gray-900);
}
.integration-text p {
    font-size: 0.8125rem;
    color: var(--mod-gray-500);
    margin: 0;
    line-height: 1.4;
}

/* ---------- Score Cards ---------- */
.score-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.score-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--mod-gray-100);
    text-align: center;
    transition: all 0.3s ease;
}
.score-card:hover {
    border-color: var(--mod-primary-600);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(30, 64, 175, 0.08);
}
.score-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--mod-primary-100), var(--mod-primary-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.score-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--mod-gray-900);
}
.score-card p {
    font-size: 0.875rem;
    color: var(--mod-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ---------- CTA ---------- */
.mod-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mod-primary-900), var(--mod-primary-800));
    position: relative;
    overflow: hidden;
}
.mod-cta-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.mod-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.mod-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.mod-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .module-hero { padding: 6rem 0 3rem; }
    .module-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .module-hero-buttons { justify-content: center; }
    .module-icon-large { margin: 0 auto 1.5rem; }
    .module-hero-title { font-size: 2.5rem; }
    .features-grid,
    .problem-grid { grid-template-columns: 1fr; }
    .reports-grid,
    .integrations,
    .score-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
    .mod-section { padding: 4rem 0; }
    .mod-cta-section { padding: 4rem 0; }
}

@media (max-width: 768px) {
    .module-hero { padding: 5rem 0 2.5rem; }
    .module-hero-title { font-size: 2rem; }
    .module-hero-subtitle { font-size: 1.125rem; }
    .module-hero-description { font-size: 1rem; }
    .mod-section { padding: 3rem 0; }
    .mod-section .section-title { font-size: 1.75rem; }
    .mod-section .section-header { margin-bottom: 2rem; }
    .reports-grid,
    .integrations,
    .sectors-grid,
    .score-grid { grid-template-columns: 1fr; }
    .preview-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card { padding: 1.5rem; }
    .problem-card { padding: 1.25rem; }
    .solution-box { padding: 1.5rem; margin: 1.5rem auto; }
    .mod-cta-content h2 { font-size: 1.75rem; }
    .mod-cta-content p { font-size: 1rem; }
    .mod-cta-buttons { flex-direction: column; }
    .mod-cta-buttons .btn { width: 100%; }
    .module-hero-buttons { flex-direction: column; }
    .module-hero-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
    .module-hero-title { font-size: 1.75rem; }
    .module-icon-large { width: 60px; height: 60px; font-size: 1.875rem; }
    .preview-stat-value { font-size: 1.25rem; }
    .mod-section .section-title { font-size: 1.5rem; }
}
