@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2C3E50;
    --primary-dark: #1a252f;
    --primary-light: #3d5166;
    --accent-orange: #F39C12;
    --accent-blue: #3498DB;
    --neutral-grey: #E0E0E0;
    --white: #FFFFFF;
    --dark-text: #333333;
    --mid-text: #5a6a7a;
    --light-bg: #f5f6f7;
    --border-color: #d0d5da;
    --shadow: 0 4px 24px rgba(44,62,80,0.10);
    --shadow-hover: 0 8px 40px rgba(44,62,80,0.18);
    --radius: 4px;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Lora', serif;
    --max-width: 1280px;
    --section-gap: 96px;
    --block-gap: 48px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.25s ease;
}
a:hover { color: var(--accent-orange); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.5rem; }

.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 68px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--accent-orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
}
.logo:hover { color: var(--neutral-grey); }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    padding: 0;
    margin: 0;
}
.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neutral-grey);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 12px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    display: block;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
    background: rgba(243,156,18,0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--primary-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.45;
    transition: opacity 0.4s;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,40,52,0.97) 0%, rgba(28,40,52,0.5) 55%, rgba(28,40,52,0.15) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.hero-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}
.hero-content h1 {
    color: var(--white);
    max-width: 780px;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-content h2 {
    color: var(--neutral-grey);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 400;
    font-family: var(--font-body);
    font-style: italic;
    max-width: 600px;
    margin-bottom: 36px;
}
.hero-disclaimer {
    display: inline-block;
    background: rgba(243,156,18,0.12);
    border-left: 3px solid var(--accent-orange);
    color: var(--neutral-grey);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    padding: 10px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    letter-spacing: 0.3px;
}

.section { padding: var(--section-gap) 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--primary); }
.section-accent { background: var(--primary-dark); }

.section-header { margin-bottom: var(--block-gap); }
.section-header--center { text-align: center; }
.section-kicker {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--mid-text); max-width: 660px; font-size: 1.05rem; }
.section-header--center p { margin: 0 auto; }

.section-dark .section-kicker { color: var(--accent-orange); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: var(--neutral-grey); }
.section-accent h1, .section-accent h2, .section-accent h3 { color: var(--white); }
.section-accent p { color: var(--neutral-grey); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--border-color);
}
.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.card-body { padding: 28px; }
.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(243,156,18,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-orange);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; color: var(--primary); }
.card p { color: var(--mid-text); font-size: 0.95rem; margin: 0; }

.card-img { position: relative; overflow: hidden; height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.04); }

.image-block {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.image-block--tall img { height: 480px; }
.image-block--medium img { height: 360px; }
.image-block--short img { height: 260px; }

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 48px 0;
}
.divider--orange { background: var(--accent-orange); height: 3px; width: 60px; margin-bottom: 24px; }
.divider--wide { width: 100%; margin: 0; }

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}
.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}
.btn-blue {
    background: var(--accent-blue);
    color: var(--white);
    border-color: var(--accent-blue);
}
.btn-blue:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.accent-bar {
    width: 48px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
    margin-bottom: 20px;
}
.accent-bar--center { margin: 0 auto 20px; }
.accent-bar--blue { background: var(--accent-blue); }

.quote-block {
    border-left: 4px solid var(--accent-orange);
    padding: 24px 28px;
    background: rgba(243,156,18,0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
}
.quote-block p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
    line-height: 1.8;
}

.info-box {
    background: rgba(52,152,219,0.07);
    border: 1px solid rgba(52,152,219,0.2);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}
.info-box p { margin: 0; font-size: 0.95rem; color: var(--mid-text); }

.disclaimer-block {
    background: rgba(44,62,80,0.05);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 24px 28px;
    margin-top: 48px;
}
.disclaimer-block h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-text);
    margin-bottom: 8px;
}
.disclaimer-block p { font-size: 0.9rem; color: var(--mid-text); margin: 0; }

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-strip-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-strip-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neutral-grey);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.95rem;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}
.data-table th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}
.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-text);
    vertical-align: top;
}
.data-table tr:nth-child(even) td { background: var(--light-bg); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(52,152,219,0.05); }
.data-table td.myth { color: #c0392b; }
.data-table td.fact { color: #27ae60; }

.timeline {
    position: relative;
    padding-left: 36px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--accent-orange);
}
.timeline-item {
    position: relative;
    margin-bottom: 36px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-orange);
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.93rem; color: var(--mid-text); margin: 0; }

.glossary-rail {
    background: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.glossary-rail-header {
    background: var(--primary);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}
.glossary-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.glossary-item:last-child { border-bottom: none; }
.glossary-term {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.glossary-def { font-size: 0.88rem; color: var(--mid-text); margin: 0; line-height: 1.5; }

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}
.faq-question:hover { background: var(--light-bg); }
.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(243,156,18,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: transform 0.3s;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--mid-text);
    font-size: 0.96rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}
.faq-answer p { margin-top: 16px; }
.faq-item.open .faq-answer { display: block; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--mid-text);
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--mid-text); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-orange); }
.breadcrumb-sep { color: var(--border-color); }

.page-hero {
    background: var(--primary);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(243,156,18,0.05);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(52,152,219,0.05);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: var(--neutral-grey); font-size: 1.05rem; max-width: 600px; margin: 0; }

.prose h2 { margin-top: 40px; margin-bottom: 16px; }
.prose h3 { margin-top: 28px; margin-bottom: 12px; color: var(--primary); }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }

.contact-form { max-width: 640px; }
.form-group { margin-bottom: 22px; }
.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--dark-text);
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}
.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(52,152,219,0.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }

.contact-info-block { padding: 32px; background: var(--primary); border-radius: var(--radius); }
.contact-info-block h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(243,156,18,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-top: 2px;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 3px;
}
.contact-info-value { color: var(--white); font-size: 0.95rem; }

.site-footer {
    background: var(--primary-dark);
    color: var(--neutral-grey);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-disclaimer-note {
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(243,156,18,0.1);
    border-left: 3px solid var(--accent-orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 0.3px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { margin-bottom: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 2px;
}
.footer-bottom {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-top: 3px solid var(--accent-orange);
    z-index: 9999;
    padding: 20px 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { color: rgba(255,255,255,0.75); font-size: 0.88rem; flex: 1; min-width: 260px; }
.cookie-text a { color: var(--accent-blue); font-size: inherit; }
.cookie-text a:hover { color: var(--accent-orange); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: all 0.22s;
}
.cookie-btn-accept { background: var(--accent-orange); color: var(--white); }
.cookie-btn-accept:hover { background: #e08e0b; }
.cookie-btn-reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.2); }
.cookie-btn-learn { background: transparent; color: var(--accent-blue); border: 1px solid var(--accent-blue); padding: 8px 18px; }
.cookie-btn-learn:hover { background: var(--accent-blue); color: var(--white); }

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--primary);
}
.thank-you-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 64px 32px;
}
.thank-you-icon {
    width: 80px;
    height: 80px;
    background: rgba(243,156,18,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--accent-orange);
}
.thank-you-icon svg { width: 40px; height: 40px; }
.thank-you-box h1 { color: var(--white); margin-bottom: 16px; }
.thank-you-box p { color: var(--neutral-grey); font-size: 1.05rem; margin-bottom: 32px; }

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.matrix-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 3px solid var(--accent-orange);
    transition: box-shadow 0.25s, transform 0.25s;
}
.matrix-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.matrix-item--blue { border-top-color: var(--accent-blue); }
.matrix-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.matrix-item p { font-size: 0.92rem; color: var(--mid-text); margin: 0; }

.checklist { list-style: none; padding: 0; }
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.96rem;
    color: var(--dark-text);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--accent-orange);
    border-radius: 50%;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--mid-text);
    text-decoration: none;
    transition: all 0.2s;
}
.tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.section-full-img {
    position: relative;
    overflow: hidden;
    max-height: 400px;
}
.section-full-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.section-full-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 32px;
    background: linear-gradient(to top, rgba(28,40,52,0.9), transparent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.highlight-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    display: block;
}

@media (max-width: 1024px) {
    :root { --section-gap: 72px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-gap: 56px; --block-gap: 32px; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        gap: 2px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 12px 24px; border-radius: 0; }
    .nav-toggle { display: flex; }

    .grid-2, .grid-3, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .matrix-grid { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); }

    .hero { min-height: 70vh; background-attachment: scroll; }
    .hero-bg { background-attachment: scroll; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    .image-block--tall img { height: 280px; }
    .section-full-img img { height: 260px; }

    .hero-content { padding: 0 20px 60px; }

    .data-table { font-size: 0.85rem; }
    .data-table th, .data-table td { padding: 10px 14px; }
}

@media (max-width: 480px) {
    :root { --section-gap: 40px; }
    .container { padding: 0 16px; }
    .stat-strip { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 1.8rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .btn { padding: 11px 22px; font-size: 0.8rem; }
}
