:root {
    --color-primary: #c44536;
    --color-primary-dark: #6e2418;
    --color-accent: #c44536;
    --color-surface: #f5f1e8;
    --color-text: #1a1a1a;
    --rgb-primary: 196,69,54;
    --rgb-accent: 196,69,54;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(26,26,26,.08), 0 0 12px rgba(var(--rgb-accent), .2);
    --shadow-md: 0 6px 18px rgba(26,26,26,.1), 0 0 24px rgba(var(--rgb-accent), .4);
    --shadow-lg: 0 14px 36px rgba(26,26,26,.14), 0 0 44px rgba(var(--rgb-accent), .5);
    --space-section: 4.5rem;
    --space-card: 1.65rem;
    --space-gap: 1.5rem;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --heading-weight: 800;
    --body-line-height: 1.65;
    accent-color: var(--color-primary);
    caret-color: var(--color-primary);
}
body {
    color: var(--color-text);
    line-height: var(--body-line-height);
    background-color: var(--color-surface);
}
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);
    animation: glowPulse 5s ease-in-out infinite;
}
.btn, button[class*="btn"], a[class*="btn"] {
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
a:not([class]) {
    color: var(--color-primary);
    transition: var(--transition);
    text-decoration-color: rgba(var(--rgb-accent), .35);
}
.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;
}
.hero-content {
    max-width: 560px;
}
.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-gap);
    max-width: 720px;
    margin: 0 auto;
}
.partner-grid {
    display: flex;
    gap: 2.25rem;
    overflow: hidden;
    animation: partnerScroll 24s linear infinite;
}
@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: 0 6px 22px rgba(26,26,26,.12), 0 0 36px rgba(var(--rgb-accent), .5); }
}
.faq-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.25rem;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3.25rem;
}
.cta-inner {
    background: linear-gradient(145deg, var(--color-surface), #e6ddcc);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.page-main {
    max-width: 860px;
    margin: 0 auto;
}
a:not([class]):hover {
    color: var(--color-accent);
    text-shadow: 0 0 32px rgba(var(--rgb-accent), .6);
}
.hero, [class*="hero"], section:first-of-type {
    background: linear-gradient(135deg, #c44536, #6e2418);
}
.card {
    border-left: 3px solid var(--color-primary);
}
header, .header, .navbar {
    box-shadow: 0 1px 0 rgba(196,69,54,.15), 0 4px 16px rgba(26,26,26,.08);
}
@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: 2.25rem;
        --space-card: 1.2rem;
        --space-gap: 0.8rem;
    }
    .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; }
}