:root {
    --color-primary: #7c3aed;
    --color-primary-dark: #4c1d95;
    --color-accent: #f59e0b;
    --color-surface: #faf5ff;
    --color-text: #2e1065;
    --rgb-primary: 124,58,237;
    --rgb-accent: 245,158,11;
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --shadow-sm: 0 1px 4px rgba(124,58,237,.08), 0 0 12px rgba(124,58,237,.06);
    --shadow-md: 0 4px 16px rgba(124,58,237,.12), 0 0 24px rgba(124,58,237,.1);
    --shadow-lg: 0 8px 28px rgba(124,58,237,.18), 0 0 32px rgba(245,158,11,.15);
    --space-section: 4rem;
    --space-card: 1.5rem;
    --space-gap: 1.5rem;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --heading-weight: 800;
    --body-line-height: 1.65;
}

body { color: var(--color-text); line-height: var(--body-line-height); background: #f5f3ff; }
h1, h2, h3, h4 { font-weight: var(--heading-weight); color: #2e1065; }
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: var(--transition); background: #ffffff; border: 1px solid rgba(124,58,237,.1); }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: var(--transition); box-shadow: 0 0 16px rgba(124,58,237,.25); }
a:not([class]) { color: var(--color-primary); transition: var(--transition); }
a:not([class]):hover { color: var(--color-accent); text-shadow: 0 0 12px rgba(245,158,11,.4); }

.news-grid { column-count: 2; column-gap: var(--space-gap); }
.news-grid .card { break-inside: avoid; margin-bottom: var(--space-gap); }

.news-grid .card:nth-child(3n+1) { border-left: 3px solid #7c3aed; }
.news-grid .card:nth-child(3n+2) { border-left: 3px solid #f59e0b; }
.news-grid .card:nth-child(3n+3) { border-left: 3px solid #06b6d4; }

.feature-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-gap); }
.feature-list > *:nth-child(4n+1) { box-shadow: 0 0 20px rgba(124,58,237,.15), 0 4px 16px rgba(124,58,237,.1); }
.feature-list > *:nth-child(4n+2) { box-shadow: 0 0 20px rgba(245,158,11,.15), 0 4px 16px rgba(245,158,11,.1); }
.feature-list > *:nth-child(4n+3) { box-shadow: 0 0 20px rgba(6,182,212,.15), 0 4px 16px rgba(6,182,212,.1); }
.feature-list > *:nth-child(4n+4) { box-shadow: 0 0 20px rgba(236,72,153,.15), 0 4px 16px rgba(236,72,153,.1); }

.hero { padding: 2rem 0; } .hero-content { max-width: 560px; }

.testimonial-list { display: flex; overflow: hidden; } 
.testimonial-list > * { flex: 0 0 100%; }

.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--space-gap) * 1.5); align-items: center; }

.faq-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }

.stats-grid { display: flex; justify-content: center; gap: 3rem; }

.cta-inner { background: linear-gradient(135deg, #faf5ff, #ede9fe); border-radius: var(--radius-xl); padding: 3rem; text-align: center; box-shadow: 0 0 40px rgba(124,58,237,.12), inset 0 1px 0 rgba(255,255,255,.8); border: 1px solid rgba(124,58,237,.12); }

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

.card:hover, [class*="card"]:hover { transform: translateY(-4px); box-shadow: 0 0 32px rgba(124,58,237,.6), 0 12px 36px rgba(124,58,237,.2), 0 0 48px rgba(245,158,11,.15); border-color: rgba(124,58,237,.3); }
.hero, [class*="hero"], section:first-of-type { background: linear-gradient(135deg, #7c3aed, #4c1d95 50%, #6d28d9); }
header, .header, .navbar { box-shadow: 0 2px 12px rgba(124,58,237,.15), 0 0 24px rgba(124,58,237,.08); background: #ffffff; }

@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: 2rem; --space-card: 1rem; --space-gap: 0.75rem; }
    .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; }
}