:root {
    --color-primary: #0e7490;
    --color-primary-dark: #164e63;
    --color-accent: #d97706;
    --color-accent-2: #e11d48;
    --color-surface: #fdf3e3;
    --color-text: #1e293b;
    --rgb-primary: 14, 116, 144;
    --rgb-accent: 217, 119, 6;
    --rgb-accent-2: 225, 29, 72;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 4px rgba(2, 6, 23, .06), 0 4px 12px rgba(14, 116, 144, .08);
    --shadow-md: 0 8px 16px -6px rgba(2, 6, 23, .1), 0 12px 28px -8px rgba(14, 116, 144, .16);
    --shadow-lg: 0 20px 32px -8px rgba(2, 6, 23, .14), 0 32px 64px -12px rgba(217, 119, 6, .18);
    --space-section: 6rem;
    --space-card: 2.4rem;
    --space-gap: 1.5rem;
    --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    --heading-weight: 600;
    --body-line-height: 1.75;
}

body {
    color: var(--color-text);
    line-height: var(--body-line-height);
    background: linear-gradient(180deg, #fffdf8 0%, #fdf0dd 50%, #fffdf8 100%);
    accent-color: var(--color-accent);
    caret-color: var(--color-primary);
}

h1, h2, h3, h4 { font-weight: var(--heading-weight); }

section, .section {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
    background: linear-gradient(135deg, #fff7ed 0%, #fdf3e3 100%);
}

section:nth-of-type(4n+1) { background: #ffffff; }
section:nth-of-type(4n+2) { background: linear-gradient(135deg, #fff7ed 0%, #fdf3e3 45%, #fef9c3 100%); }
section:nth-of-type(4n+3) {
    background: linear-gradient(135deg, #0b1f3a 0%, #14365c 50%, #0b1f3a 100%);
    color: #e2e8f0;
}
section:nth-of-type(4n+4) {
    background: radial-gradient(circle at 15% 15%, rgba(217, 119, 6, .14), transparent 36%), #ffffff;
}

.card, [class*="card"] {
    border-radius: var(--radius-lg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 0 0 1px rgba(217, 119, 6, .14),
        0 0 0 2px rgba(225, 29, 72, .07),
        var(--shadow-md);
    padding: var(--space-card);
    transition: var(--transition);
    background: linear-gradient(145deg, #ffffff 0%, #fff9ef 55%, #fdf0dd 100%);
    color: var(--color-text);
}

.btn, button[class*="btn"], a[class*="btn"] {
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: linear-gradient(135deg, #0e7490 0%, #155e75 40%, #1e3a5f 75%, #e11d48 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px -2px rgba(14, 116, 144, .45), 0 8px 24px -8px rgba(225, 29, 72, .4);
}

a:not([class]) {
    color: #b45309;
    transition: var(--transition);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}

a:not([class]):hover { color: var(--color-accent-2); }

section:nth-of-type(4n+3) a:not([class]) { color: #fbbf24; }
section:nth-of-type(4n+3) a:not([class]):hover { color: #fde68a; }

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

.feature-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-gap); }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(253, 243, 227, .35));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

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

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

.faq-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .65), rgba(253, 243, 227, .3));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

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

.cta-inner {
    background:
        radial-gradient(circle at 85% 15%, rgba(217, 119, 6, .35), transparent 42%),
        radial-gradient(circle at 15% 85%, rgba(225, 29, 72, .28), transparent 45%),
        linear-gradient(135deg, #0b1f3a 0%, #14365c 60%, #1e3a5f 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(217, 119, 6, .25),
        0 0 0 2px rgba(225, 29, 72, .12),
        var(--shadow-lg);
}

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

header, .header, .navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 247, 237, .78));
    backdrop-filter: blur(14px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(217, 119, 6, .12),
        0 6px 20px -8px rgba(2, 6, 23, .12);
}

@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.4rem;
        --space-card: 1.2rem;
        --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; }
}