:root {
    --color-primary: #9a3412;
    --color-primary-dark: #1f2933;
    --color-accent: #f59e0b;
    --color-surface: #fff7ed;
    --color-text: #1c1917;
    --rgb-primary: 154,52,18;
    --rgb-accent: 245,158,11;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.08), 0 1px 3px rgba(154, 52, 18, 0.10);
    --shadow-md: 0 14px 36px rgba(28, 25, 23, 0.12), 0 4px 14px rgba(245, 158, 11, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    --shadow-lg: 0 26px 70px rgba(28, 25, 23, 0.18), 0 10px 26px rgba(154, 52, 18, 0.18), inset 0 1px 0 rgba(255, 247, 237, 0.70);
    --space-section: 2rem;
    --space-card: 1rem;
    --space-gap: 0.75rem;
    --transition: 0.56s cubic-bezier(0.22, 1, 0.36, 1);
    --heading-weight: 700;
    --body-line-height: 1.7;
}

body { color: var(--color-text); line-height: var(--body-line-height); background: linear-gradient(180deg, #ffffff 0%, #fff7ed 38%, #ffffff 72%, #fef3c7 100%); caret-color: var(--color-accent); accent-color: var(--color-primary); }
h1, h2, h3, h4 { font-weight: var(--heading-weight); color: #1f2933; text-shadow: 0 2px 14px rgba(154, 52, 18, 0.12); }
section, .section { padding-top: var(--space-section); padding-bottom: var(--space-section); background: linear-gradient(90deg, #ffffff 0%, #fff7ed 28%, #fffbeb 66%, #ffffff 100%); }
.card, [class*="card"] { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--space-card); transition: var(--transition); background: radial-gradient(circle at 12% 0%, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.06) 34%, rgba(255, 255, 255, 0) 64%), linear-gradient(145deg, #ffffff 0%, #fff7ed 48%, #fffbeb 100%); color: #292524; }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: var(--transition); background: linear-gradient(135deg, #9a3412 0%, #c2410c 45%, #f59e0b 100%); color: #fffaf0; box-shadow: 0 10px 24px rgba(154, 52, 18, 0.22), 0 3px 10px rgba(245, 158, 11, 0.18); text-shadow: 0 1px 8px rgba(28, 25, 23, 0.22); }
a:not([class]) { color: var(--color-primary); transition: var(--transition); text-shadow: 0 1px 10px rgba(245, 158, 11, 0.10); }

                .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-gap); }
                .news-grid > *:first-child { grid-column: span 3; }

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

.hero { padding: 2rem 0; background: linear-gradient(100deg, #1f2933 0%, #3f2f1f 34%, #9a3412 72%, #f59e0b 100%); color: #fffaf0; box-shadow: inset 0 -24px 60px rgba(28, 25, 23, 0.22), inset 0 1px 0 rgba(255, 247, 237, 0.16); } .hero-content { max-width: 560px; }

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

                .partner-grid { display: flex; gap: 2rem; overflow: hidden; animation: partnerScroll 20s linear infinite; filter: drop-shadow(0 8px 18px rgba(154, 52, 18, 0.14)); }
                @keyframes partnerScroll { 0% { transform: translateX(0); opacity: 0.96; } 100% { transform: translateX(-50%); opacity: 0.96; } }

.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-gap); }

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

.cta-section { background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.42) 0%, rgba(245, 158, 11, 0.12) 30%, rgba(31, 41, 51, 0) 58%), linear-gradient(120deg, #1f2933 0%, #292524 42%, #7c2d12 76%, #9a3412 100%); color: #fffaf0; padding: 4rem 2rem; box-shadow: inset 0 18px 54px rgba(255, 250, 240, 0.08), inset 0 -22px 64px rgba(28, 25, 23, 0.28); }

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

.hero, [class*="hero"], section:first-of-type { background: radial-gradient(circle at 8% 12%, rgba(245, 158, 11, 0.46) 0%, rgba(245, 158, 11, 0.14) 28%, rgba(255, 255, 255, 0) 58%), linear-gradient(115deg, #1f2933 0%, #3b3026 36%, #9a3412 72%, #f59e0b 100%); color: #fffaf0; }
header, .header, .navbar { background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 247, 237, 0.82) 48%, rgba(255, 251, 235, 0.88) 100%); box-shadow: 0 8px 28px rgba(28, 25, 23, 0.08), 0 2px 8px rgba(154, 52, 18, 0.08); backdrop-filter: blur(14px) saturate(130%); }

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