:root {
    --color-primary: #3b82f6;
    --color-primary-dark: #1e40af;
    --color-accent: #60a5fa;
    --color-surface: #1e293b;
    --color-text: #f1f5f9;
    --rgb-primary: 59,130,246;
    --rgb-accent: 96,165,250;
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --shadow-sm: 2px 2px 0px #0f172a;
    --shadow-md: 3px 3px 0px #0f172a;
    --shadow-lg: 4px 4px 0px #0f172a;
    --space-section: 4rem;
    --space-card: 1rem;
    --space-gap: 1rem;
    --transition: 0.15s ease-out;
    --heading-weight: 600;
    --body-line-height: 1.6;
}

body { color: var(--color-text); line-height: var(--body-line-height); background-color: #0f172a; }
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-color: #1e293b; border: 2px solid #334155; }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: var(--transition); background-color: #3b82f6; color: #ffffff; border: 2px solid #2563eb; box-shadow: 2px 2px 0px #0f172a; }
a:not([class]) { color: var(--color-primary); transition: var(--transition); }

.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; }
.news-grid > * { border: 2px solid #334155; box-shadow: 2px 2px 0px #0f172a; border-radius: 0; background-color: #1e293b; }

.feature-list { display: flex; gap: var(--space-gap); overflow-x: auto; scroll-snap-type: x mandatory; }
.feature-list > * { flex: 0 0 300px; scroll-snap-align: start; border: 2px solid #334155; box-shadow: 2px 2px 0px #0f172a; border-radius: 0; background-color: #1e293b; }

.hero-content { text-align: left; max-width: 600px; }

.testimonial-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-gap); }
.testimonial-list > * { border: 2px solid #334155; box-shadow: 2px 2px 0px #0f172a; border-radius: 0; background-color: #1e293b; }

.partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.partner-grid > * { border: 2px solid #334155; box-shadow: 2px 2px 0px #0f172a; border-radius: 0; background-color: #1e293b; }

.faq-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.faq-wrapper > * { border: 2px solid #334155; box-shadow: 2px 2px 0px #0f172a; border-radius: 0; background-color: #1e293b; }

.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.stats-grid .stat-value { font-size: 3rem; color: #3b82f6; }
.stats-grid > * { border: 2px solid #334155; box-shadow: 2px 2px 0px #0f172a; border-radius: 0; background-color: #1e293b; }

.cta-inner { background: #1e293b; border-radius: var(--radius-xl); padding: 3rem; text-align: center; border: 2px solid #334155; box-shadow: 4px 4px 0px #0f172a; }

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

.card:hover, [class*="card"]:hover { transform: translateY(-2px); box-shadow: 4px 4px 0px #0f172a; border-color: #3b82f6; }
a:not([class]):hover { color: var(--color-accent); }
.hero, [class*="hero"], section:first-of-type { background: linear-gradient(135deg, #1e293b, #0f172a); border-bottom: 2px solid #334155; }
header, .header, .navbar { box-shadow: 0 2px 0px #0f172a; background-color: #1e293b; border-bottom: 2px solid #334155; }

.btn:hover, button[class*="btn"]:hover, a[class*="btn"]:hover { background-color: #2563eb; box-shadow: 3px 3px 0px #0f172a; border-color: #1d4ed8; }

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