@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Lato:wght@300;400;600;700&display=swap');

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  color: #1A2E40;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #D64545;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #1A2E40;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #333333;
}

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

.text-secondary {
  color: #666666;
}

.text-accent {
  color: #D64545;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 15px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.col-4  { grid-column: span 4; }
.col-6  { grid-column: span 6; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

section {
  padding: 80px 0;
}

section.section-alt {
  background-color: #F5F7FA;
}

section.section-dark {
  background-color: #1A2E40;
  color: #ffffff;
}

section.section-dark h2,
section.section-dark h3,
section.section-dark h4 {
  color: #ffffff;
}

section.section-dark p,
section.section-dark .text-secondary {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   WARNING BANNER
   ============================================================ */
.warning-banner {
  background-color: #D64545;
  color: #ffffff;
  text-align: center;
  padding: 12px 15px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1000;
}

.warning-banner strong {
  font-weight: 800;
  text-transform: uppercase;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background-color: #1A2E40;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__mark {
  width: 40px;
  height: 40px;
  background-color: #D64545;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.logo__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.logo__sub {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-main a {
  color: rgba(255,255,255,0.82);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.nav-main a:hover,
.nav-main a.active {
  color: #ffffff;
  background-color: rgba(255,255,255,0.1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  color: #333333;
  font-size: 14px;
  padding: 10px 20px;
  font-weight: 400;
}

.nav-dropdown__menu a:hover {
  background-color: #F5F7FA;
  color: #D64545;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  background-color: #D64545;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  margin-left: 8px;
}

.header-cta:hover {
  background-color: #bf3c3c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214,69,69,0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background-color: #D64545;
  color: #ffffff;
  border-color: #D64545;
}

.btn-primary:hover {
  background-color: #bf3c3c;
  border-color: #bf3c3c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214,69,69,0.35);
}

.btn-secondary {
  background-color: transparent;
  color: #1A2E40;
  border-color: #1A2E40;
}

.btn-secondary:hover {
  background-color: #1A2E40;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: #ffffff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #E0E0E0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D64545;
  margin-bottom: 10px;
}

.card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A2E40;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__text {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card__meta {
  font-size: 13px;
  color: #999999;
  display: flex;
  align-items: center;
  gap: 16px;
}

.card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   PODCAST CARD
   ============================================================ */
.podcast-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #E0E0E0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.podcast-card__cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.podcast-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.podcast-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D64545;
  margin-bottom: 8px;
}

.podcast-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1A2E40;
  margin-bottom: 10px;
  line-height: 1.3;
}

.podcast-card__desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.podcast-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F0F0F0;
  padding-top: 14px;
  margin-top: auto;
}

.podcast-card__rating {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
}

.stars {
  color: #F5A623;
  font-size: 14px;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D64545;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1A2E40;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: #666666;
  max-width: 640px;
  line-height: 1.6;
}

.section-header.center .section-lead {
  margin: 0 auto;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 16px 0;
  background-color: #F5F7FA;
  border-bottom: 1px solid #E0E0E0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666666;
}

.breadcrumb__list li::after {
  content: '/';
  color: #CCCCCC;
}

.breadcrumb__list li:last-child::after {
  display: none;
}

.breadcrumb__list a {
  color: #666666;
  text-decoration: none;
}

.breadcrumb__list a:hover {
  color: #D64545;
}

.breadcrumb__list li:last-child {
  color: #333333;
  font-weight: 600;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background-color: #1A2E40;
  padding: 64px 0 72px;
}

.page-hero__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214,69,69,0.9);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.6;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background-color: #1A2E40;
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  display: inline-block;
  background-color: #F5F7FA;
  color: #1A2E40;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #E0E0E0;
  transition: all 0.2s;
  text-decoration: none;
}

.tag:hover {
  background-color: #1A2E40;
  color: #ffffff;
  border-color: #1A2E40;
}

.tag--accent {
  background-color: rgba(214,69,69,0.08);
  color: #D64545;
  border-color: rgba(214,69,69,0.2);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #DEDEDE;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: #1A2E40;
  box-shadow: 0 0 0 3px rgba(26,46,64,0.1);
}

.form-control::placeholder {
  color: #AAAAAA;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-error {
  font-size: 13px;
  color: #D64545;
  margin-top: 4px;
  display: none;
}

.form-success-msg {
  background-color: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 6px;
  padding: 16px 20px;
  color: #2E7D32;
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
  display: flex;
  gap: 0;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #333;
}

.search-bar input::placeholder {
  color: #AAAAAA;
}

.search-bar button {
  background-color: #1A2E40;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-bar button:hover {
  background-color: #D64545;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 0 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid #E0E0E0;
  color: #333333;
}

.pagination a:hover {
  background-color: #1A2E40;
  color: #ffffff;
  border-color: #1A2E40;
}

.pagination .active {
  background-color: #1A2E40;
  color: #ffffff;
  border-color: #1A2E40;
}

/* ============================================================
   QUOTE / BLOCKQUOTE
   ============================================================ */
blockquote.highlight-quote {
  border-left: 4px solid #D64545;
  padding: 20px 24px;
  background-color: #F5F7FA;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

blockquote.highlight-quote p {
  font-size: 18px;
  font-style: italic;
  color: #1A2E40;
  margin-bottom: 8px;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

blockquote.highlight-quote cite {
  font-size: 14px;
  color: #666666;
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
hr.divider {
  border: none;
  border-top: 1px solid #E0E0E0;
  margin: 40px 0;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--new { background-color: #E3F2FD; color: #1565C0; }
.badge--top { background-color: #FFF3E0; color: #E65100; }
.badge--rec { background-color: #E8F5E9; color: #2E7D32; }
.badge--info { background-color: #F5F7FA; color: #1A2E40; border: 1px solid #E0E0E0; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc {
  background-color: #F5F7FA;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.toc__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A2E40;
  margin-bottom: 14px;
}

.toc__list {
  counter-reset: toc;
}

.toc__list li {
  counter-increment: toc;
  font-size: 14px;
  margin-bottom: 8px;
}

.toc__list li::before {
  content: counter(toc) '. ';
  color: #D64545;
  font-weight: 700;
  margin-right: 4px;
}

.toc__list a {
  color: #333333;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.toc__list a:hover {
  color: #D64545;
  text-decoration-color: #D64545;
}

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-box--note {
  background-color: #E3F2FD;
  border-left: 4px solid #1565C0;
}

.info-box--warning {
  background-color: #FFF8E1;
  border-left: 4px solid #F9A825;
}

.info-box--important {
  background-color: #FFEBEE;
  border-left: 4px solid #C62828;
}

.info-box__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box__text {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-block {
  background-color: #1A2E40;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.newsletter-block h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.newsletter-block p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #333;
}

.newsletter-form button {
  background-color: #D64545;
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #bf3c3c;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #1A2E40;
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-top: 16px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #D64545;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 12px;
}

.footer-contact-item strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom__links a:hover {
  color: #D64545;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background-color: #1A2E40;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 800;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #D64545;
  transform: translateY(-2px);
}

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A2E40;
  padding: 16px 0;
  z-index: 950;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-notice.hidden {
  transform: translateY(100%);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: #D64545;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid;
  transition: all 0.2s;
}

.cookie-btn--accept {
  background-color: #D64545;
  color: #ffffff;
  border-color: #D64545;
}

.cookie-btn--accept:hover {
  background-color: #bf3c3c;
}

.cookie-btn--decline {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.pb-0  { padding-bottom: 0 !important; }
.pt-0  { padding-top: 0 !important; }

.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.d-none { display: none; }
.d-block { display: block; }

.w-100 { width: 100%; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #1A2E40;
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 32px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav a:hover {
  background-color: rgba(255,255,255,0.08);
  color: #D64545;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  section { padding: 56px 0; }

  .nav-main { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  .grid-12 { grid-template-columns: 1fr; }
  .col-4, .col-6, .col-8, .col-12 { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero__title { font-size: 30px; }

  .newsletter-block { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; border-radius: 6px; overflow: visible; }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  .header-inner { height: 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item__value { font-size: 28px; }
}
