:root {
    --color-primary: #0f766e;
    --color-primary-dark: #042f2e;
    --color-accent: #f59e0b;
    --color-surface: #fffbeb;
    --color-text: #0c1a1a;
    --rgb-primary: 15,118,110;
    --rgb-accent: 245,158,11;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 6px;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --space-section: 3rem;
    --space-card: 1.25rem;
    --space-gap: 1rem;
    --transition: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    --heading-weight: 700;
    --body-line-height: 1.75;
}

body { color: var(--color-text); line-height: var(--body-line-height); background: #fffdf5; }
h1, h2, h3, h4 { font-weight: var(--heading-weight); color: #042f2e; }
section, .section { padding-top: var(--space-section); padding-bottom: var(--space-section); }
section:nth-of-type(odd), .section:nth-of-type(odd) { background: #fffbeb; }
section:nth-of-type(even), .section:nth-of-type(even) { background: #ffffff; }
.card, [class*="card"] { border-radius: var(--radius-lg); box-shadow: none; padding: var(--space-card); transition: var(--transition); background: #ffffff; border: 1px solid #d6d3c4; }
.card:hover, [class*="card"]:hover { border-color: #0f766e; background: #f0fdfa; }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: var(--transition); background: #0f766e; color: #fffbeb; border: 1px solid #042f2e; }
.btn:hover, button[class*="btn"]:hover, a[class*="btn"]:hover { background: #f59e0b; color: #042f2e; border-color: #b45309; }
a:not([class]) { color: #0f766e; transition: var(--transition); }
a:not([class]):hover { color: #f59e0b; }

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

.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; background: #ffffff; border: 1px solid #d6d3c4; border-radius: var(--radius-lg); }

.hero { position: relative; min-height: 70vh; display: flex; align-items: center; }
.hero-content { position: relative; z-index: 1; }

.testimonial-list { display: flex; flex-direction: column; gap: var(--space-gap); max-width: 720px; margin: 0 auto; }
.testimonial-list > * { background: #fffbeb; border-left: 4px solid #0f766e; border-radius: var(--radius-sm); }

.partner-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-gap); align-items: center; }

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

.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.stats-grid .stat-value { font-size: 3rem; color: #0f766e; }

.cta-section { background: #042f2e; color: #fffbeb; padding: 4rem 2rem; border-top: 6px solid #f59e0b; }

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

.hero, [class*="hero"], section:first-of-type { background: #042f2e; }
header, .header, .navbar { background: transparent; }

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