:root {
    --color-primary: #6b705c;
    --color-primary-dark: #4b4f45;
    --color-accent: #c44536;
    --color-surface: #f5f1e8;
    --color-text: #1a1a1a;
    --rgb-primary: 107,112,92;
    --rgb-accent: 196,69,54;
    --radius-sm: 3px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 10px;
    --shadow-sm: 0 1px 0 rgba(var(--rgb-primary), .10), 0 2px 10px rgba(26, 26, 26, .06);
    --shadow-md: 0 1px 0 rgba(var(--rgb-primary), .14), 0 10px 22px rgba(26, 26, 26, .09);
    --shadow-lg: 0 1px 0 rgba(var(--rgb-primary), .16), 0 16px 40px rgba(26, 26, 26, .12);
    --space-section: 3rem;
    --space-card: 1.25rem;
    --space-gap: 1rem;
    --transition: 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
    --heading-weight: 800;
    --body-line-height: 1.7;
}

body { color: var(--color-text); line-height: var(--body-line-height); }
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:
        0 1px 0 rgba(26, 26, 26, .08),
        0 6px 18px rgba(26, 26, 26, .08),
        0 0 0 1px rgba(107, 112, 92, .10);
    padding: var(--space-card);
    transition: box-shadow 240ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1), border-color 240ms cubic-bezier(0.2, 0.9, 0.2, 1), background-color 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
    border: 1px solid rgba(107, 112, 92, .08);
    background: rgba(245, 241, 232, .98);
}
.btn, button[class*="btn"], a[class*="btn"] {
    border-radius: var(--radius-md);
    transition: transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1), background-color 240ms cubic-bezier(0.2, 0.9, 0.2, 1), color 240ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
a:not([class]) { color: #3a3a3a; transition: color 240ms cubic-bezier(0.2, 0.9, 0.2, 1), text-shadow 240ms cubic-bezier(0.2, 0.9, 0.2, 1); text-shadow: 0 0 0 rgba(0,0,0,0); }

a:not([class]):hover { color: var(--color-accent); text-shadow: 0 2px 10px rgba(196, 69, 54, .22); }

.hero, [class*="hero"], section:first-of-type {
    background:
        radial-gradient(1200px 320px at 10% 10%, rgba(196, 69, 54, .12) 0%, rgba(196, 69, 54, 0) 60%),
        radial-gradient(900px 260px at 90% 0%, rgba(107, 112, 92, .20) 0%, rgba(107, 112, 92, 0) 58%),
        linear-gradient(135deg, #f5f1e8 0%, #efe9da 30%, #d8d4c6 100%);
    color: #1a1a1a;
}

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

                .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--space-gap) * 0.8); }
                .feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: calc(var(--space-gap) * 1.5); }

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

                .partner-grid { display: flex; gap: 2rem; overflow: hidden; animation: partnerScroll 22s linear infinite; }
                @keyframes partnerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.faq-list { max-width: 800px; margin: 0 auto; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-gap); text-align: center; }

.cta-inner {
    background:
        radial-gradient(1000px 300px at 15% 0%, rgba(196, 69, 54, .16) 0%, rgba(196, 69, 54, 0) 55%),
        linear-gradient(180deg, rgba(245, 241, 232, .98) 0%, rgba(238, 233, 218, .98) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow:
        0 1px 0 rgba(26, 26, 26, .06),
        0 10px 26px rgba(26, 26, 26, .10),
        0 0 0 1px rgba(196, 69, 54, .14);
    border: 1px solid rgba(196, 69, 54, .10);
}

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

@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; --radius-sm: 2px; --radius-md: 3px; --radius-lg: 5px; --radius-xl: 9px; --transition: 200ms cubic-bezier(0.2, 0.85, 0.2, 1); }
    .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; }
}