:root {
    --color-primary: #6d28d9;
    --color-primary-dark: #4c1d95;
    --color-accent: #a78bfa;
    --color-surface: #f5f3ff;
    --color-text: #2e1065;
    --rgb-primary: 109,40,217;
    --rgb-accent: 167,139,250;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(109,40,217,.08), 0 1px 3px rgba(109,40,217,.06);
    --shadow-md: 0 6px 20px rgba(109,40,217,.12), 0 3px 8px rgba(109,40,217,.08), 0 1px 4px rgba(109,40,217,.04);
    --shadow-lg: 0 12px 40px rgba(109,40,217,.15), 0 6px 16px rgba(109,40,217,.1), 0 2px 8px rgba(109,40,217,.06);
    --space-section: 5rem;
    --space-card: 2rem;
    --space-gap: 1.5rem;
    --transition: 0.5s cubic-bezier(.22,1,.36,1);
    --heading-weight: 700;
    --body-line-height: 1.7;
}

body { color: var(--color-text); line-height: var(--body-line-height); background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 50%, #ede9fe 100%); }
h1, h2, h3, h4 { font-weight: var(--heading-weight); }
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: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); border: 1px solid rgba(167,139,250,.15); }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: var(--transition); background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; border: none; }
a:not([class]) { color: var(--color-primary); transition: var(--transition); text-shadow: 0 1px 2px rgba(109,40,217,.1); }

.news-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: var(--space-gap); }
.news-grid > *:first-child { grid-row: span 2; border-radius: var(--radius-xl); background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #4c1d95 100%); color: #fff; box-shadow: var(--shadow-lg); border: none; }

.feature-list { display: flex; flex-direction: column; align-items: center; gap: calc(var(--space-gap) * 2); max-width: 720px; margin: 0 auto; }
.feature-list > * { background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%); border: 1px solid rgba(167,139,250,.2); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.hero-inner > *:first-child { background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%); border-radius: var(--radius-xl); padding: 2rem; }

.testimonial-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-gap); }
.testimonial-list > * { background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(167,139,250,.12); }

.partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.partner-grid > * { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); border-radius: var(--radius-md); padding: 1.5rem 2rem; border: 1px solid rgba(167,139,250,.15); }

.faq-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.faq-wrapper > *:first-child { background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid rgba(167,139,250,.1); }
.faq-wrapper > *:last-child { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); border-radius: var(--radius-xl); padding: 2rem; color: #fff; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-gap); text-align: center; }
.stats-grid > * { background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(167,139,250,.1); }

.cta-inner { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #4c1d95 100%); border-radius: var(--radius-xl); padding: 3rem; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }

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

a:not([class]):hover { color: var(--color-accent); text-shadow: 0 2px 4px rgba(167,139,250,.2); }
.card { border-left: 4px solid transparent; border-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%); border-image-slice: 1; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(167,139,250,.3); }
header, .header, .navbar { background: transparent; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

@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; }
}