:root {
    --color-primary: #1d4ed8;
    --color-primary-dark: #1e40af;
    --color-accent: #0ea5e9;
    --color-surface: #f8fafc;
    --color-text: #0f172a;
    --rgb-primary: 29,78,216;
    --rgb-accent: 14,165,233;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --shadow-sm: 0 1px 0 rgba(15, 23, 42, .08), 0 0 0 1px rgba(148, 163, 184, .22);
    --shadow-md: 0 10px 20px rgba(2, 6, 23, .08), 0 2px 6px rgba(2, 6, 23, .06), 0 0 0 1px rgba(148, 163, 184, .18);
    --shadow-lg: 0 18px 34px rgba(2, 6, 23, .14), 0 6px 12px rgba(2, 6, 23, .08), 0 0 0 1px rgba(59, 130, 246, .18);
    --space-section: 5rem;
    --space-card: 1.25rem;
    --space-gap: 0.95rem;
    --transition: 220ms cubic-bezier(.2, .9, .2, 1);
    --heading-weight: 800;
    --body-line-height: 1.62;
}

body { color: var(--color-text); line-height: var(--body-line-height); background: linear-gradient(180deg, #0b1220 0%, #0f172a 42%, #0b1220 100%); }
h1, h2, h3, h4 { font-weight: var(--heading-weight); letter-spacing: -0.01em; }
section, .section { padding-top: var(--space-section); padding-bottom: var(--space-section); }
.card, [class*="card"] { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--space-card); transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms cubic-bezier(.2, .9, .2, 1), background-color 220ms cubic-bezier(.2, .9, .2, 1), border-color 220ms cubic-bezier(.2, .9, .2, 1); background: linear-gradient(180deg, rgba(248, 250, 252, .98) 0%, rgba(241, 245, 249, .98) 100%); border: 1px solid rgba(148, 163, 184, .22); }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms cubic-bezier(.2, .9, .2, 1), background-color 220ms cubic-bezier(.2, .9, .2, 1), color 220ms cubic-bezier(.2, .9, .2, 1), border-color 220ms cubic-bezier(.2, .9, .2, 1), filter 220ms cubic-bezier(.2, .9, .2, 1); }
a:not([class]) { color: var(--color-primary); transition: color 220ms cubic-bezier(.2, .9, .2, 1), text-shadow 220ms cubic-bezier(.2, .9, .2, 1), filter 220ms cubic-bezier(.2, .9, .2, 1); text-shadow: 0 1px 0 rgba(2, 6, 23, .08); }

.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--space-gap) * 0.6); }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--space-gap) * 0.9); }
.hero-content { text-align: left; max-width: 600px; }
                .testimonial-list { display: flex; overflow: hidden; }
                .testimonial-list > * { flex: 0 0 100%; }
.partner-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: calc(var(--space-gap) * 0.85); align-items: center; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--space-gap) * 0.95); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--space-gap) * 0.85); text-align: center; }
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }

            .page-main { max-width: 860px; margin: 0 auto; }

.card:hover, [class*="card"]:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(241, 245, 249, .98) 100%); }
header, .header, .navbar { background: transparent; }

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .feature-list { grid-template-columns: repeat(2, 1fr) !important; }
    .partner-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .hero-inner { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
    :root { --space-section: 2.1rem; --space-card: 1rem; --space-gap: 0.6rem; --transition: 200ms cubic-bezier(.2, .9, .2, 1); --radius-lg: 7px; }
    .news-grid { grid-template-columns: 1fr !important; }
    .feature-list { grid-template-columns: 1fr !important; }
    .faq-list { grid-template-columns: 1fr !important; }
    .testimonial-list { column-count: 1 !important; }
    .partner-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .cta-inner { grid-template-columns: 1fr !important; }
}