:root {
  --red: #e31e24;
  --red-dark: #c41218;
  --navy: #0f172a;
  --purple: #8b1fa8;
  --ink: #1a2332;
  --muted: #64748b;
  --line: #e8ecf1;
  --soft: #f8fafc;
  --pink: #fff0f2;
  --pink-deep: #ffe4e8;
  --gray-light: #f8fafc;
  --gray-medium: #64748b;
  --gray-dark: #334155;
  --black: #0f172a;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: all 0.2s ease;
  --font: "Prompt", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red {
  color: var(--red);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.logo,
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-end {
  color: var(--ink);
}

.logo-hiv {
  color: var(--red);
}

.logo .logo-end,
.logo .logo-hiv,
.footer-logo .logo-end,
.footer-logo .logo-hiv {
  display: inline;
}

.logo-dot {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 2px;
}

.logo span:not(.logo-dot),
.footer-logo span:not(.logo-dot) {
  /* legacy support if any */
}

.nav-menu {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  font-size: 13.5px;
  color: #334155;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--red);
}

.nav-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-search {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #475569;
  border-radius: 50%;
  text-decoration: none;
}

.nav-search:hover {
  background: var(--soft);
}

.nav-search svg {
  width: 20px;
  height: 20px;
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--red-dark);
}

.nav-cta::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.3);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border-color: #d1d5db;
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: #94a3b8;
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  white-space: nowrap;
}

.btn-white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--red);
  padding: 12px 32px;
  border-radius: 999px;
  border: 2px solid var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--red);
  color: #fff;
}

/* ---------- Section helpers ---------- */
.section {
  padding: 72px 0;
}

.section-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
  text-align: center;
}

.section-head--center {
  text-align: center;
  margin-bottom: 36px;
}

.section-head--center .section-title,
.section-head--center .section-subtitle {
  text-align: center;
}

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

/* ---------- Home Hero ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(227, 30, 36, 0.06) 0%, transparent 70%),
    #fff;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  min-height: 560px;
  gap: 24px;
  padding: 48px 0 64px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.home-kicker {
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
}

.home-hero-title {
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.home-hero-lead {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 420px;
}

.home-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero-visual {
  position: relative;
  height: 520px;
}

.home-hero-circle {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ff6b72 0%, var(--red) 45%, #b01018 100%);
}

.home-hero-circle::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 2px solid rgba(227, 30, 36, 0.12);
}

.home-hero-photo {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 78%;
  height: 92%;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  background: #ddd center / cover no-repeat;
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1200&q=88");
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  z-index: 1;
}

.home-quote-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 280px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
  z-index: 3;
}

.home-quote-label {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.home-quote-mark {
  font-size: 42px;
  line-height: 0.7;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 6px;
}

.home-quote-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.home-quote-note {
  color: #94a3b8;
  font-size: 12px;
  margin: 10px 0 16px;
  line-height: 1.6;
}

.home-quote-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 0.15s;
}

.home-quote-link:hover {
  background: var(--red-dark);
}

/* ---------- Topics ---------- */
.home-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.home-topic-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.home-topic-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-topic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.home-topic-img {
  height: 110px;
  background-size: cover;
  background-position: center;
}

.home-topic-body {
  padding: 0 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-topic-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: -20px;
  position: relative;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

.home-topic-icon svg {
  width: 18px;
  height: 18px;
}

.home-topic-icon--shield {
  background: #fef2f2;
  color: var(--red);
}

.home-topic-icon--heart {
  background: #fce7f3;
  color: #db2777;
}

.home-topic-icon--pill {
  background: #eff6ff;
  color: #2563eb;
}

.home-topic-icon--people {
  background: #f0fdf4;
  color: #16a34a;
}

.home-topic-icon--chat {
  background: #faf5ff;
  color: #9333ea;
}

.home-topic-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.home-topic-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.home-topic-arrow {
  align-self: flex-end;
  margin-top: 12px;
  color: var(--red);
  opacity: 0.7;
  font-size: 18px;
  transition: opacity 0.15s, transform 0.15s;
}

.home-topic-card:hover .home-topic-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ---------- Stats ---------- */
.home-stats {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}

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

.home-stats-intro {
  padding-right: 36px;
}

.home-stats-intro .section-label {
  color: #ff5a5f;
}

.home-stats-intro h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}

.home-stats-intro p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.7;
}

.home-stat {
  padding: 4px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.home-stat-ico {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-bottom: 12px;
}

.home-stat-ico svg {
  width: 28px;
  height: 28px;
}

.home-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-stat span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.55;
  margin-top: 8px;
}

/* ---------- Articles + Service ---------- */
.home-content-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.home-latest-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.see-all {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.15s;
}

.see-all:hover {
  text-decoration: underline;
}

.home-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.home-article:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.home-article-img {
  display: block;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: var(--soft);
  text-decoration: none;
}

.home-article-body {
  padding: 14px;
}

.home-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--red);
  background: var(--pink);
  padding: 4px 10px;
  border-radius: 999px;
}

.home-article h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  margin: 10px 0 8px;
}

.home-article h3 a {
  color: inherit;
  text-decoration: none;
}

.home-article h3 a:hover {
  color: var(--red);
}

.home-date {
  font-size: 11px;
  color: #94a3b8;
}

.home-service {
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.home-service h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}

.home-service > p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.home-searchbox {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.home-searchbox input {
  flex: 1;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 999px;
  padding: 0 18px;
  min-height: 46px;
  outline: none;
  font-size: 13px;
  color: var(--ink);
}

.home-searchbox input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.home-searchbox button {
  border: 0;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}

.home-searchbox button:hover {
  background: var(--red-dark);
}

.home-map {
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(227, 30, 36, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 40%, rgba(227, 30, 36, 0.1) 0%, transparent 35%),
    linear-gradient(135deg, #e2ebe4 0%, #f0f4f1 50%, #e8efe9 100%);
}

.home-map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
}

.home-map-pin::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(227, 30, 36, 0.4);
}

.home-map-pin::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.home-map-pin:nth-child(1) {
  left: 22%;
  top: 55%;
}

.home-map-pin:nth-child(2) {
  left: 55%;
  top: 35%;
}

.home-map-pin:nth-child(3) {
  left: 72%;
  top: 58%;
}

/* ---------- Home CTA ---------- */
.home-cta {
  padding: 8px 0 72px;
}

.home-cta-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: linear-gradient(105deg, #e31e24 0%, #c41218 35%, #8b1fa8 100%);
  color: #fff;
  min-height: 120px;
}

.home-cta-photo {
  background:
    linear-gradient(90deg, transparent 60%, rgba(227, 30, 36, 0.4)),
    url("https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=500&q=80")
      center / cover;
  min-height: 120px;
}

.home-cta-copy {
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-cta-copy h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.home-cta-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ---------- Home hero trust ---------- */
.home-hero-trust {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.home-hero-trust a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.home-hero-trust a:hover {
  text-decoration: underline;
}

.home-stats-cite {
  margin-top: 14px;
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.55;
}

.home-booking-link {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.home-booking-link:hover {
  text-decoration: underline;
}

.home-article .byline {
  margin-top: 10px;
}

.home-article .byline-avatar {
  width: 28px;
  height: 28px;
}

.home-article .byline-name,
.home-article .byline-cat,
.home-article .byline-date {
  font-size: 11px;
}

.home-howto-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  counter-reset: none;
}

.home-howto-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-howto-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}

.home-howto-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}

.home-howto-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.home-howto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- Home FAQ ---------- */
.section-muted {
  background: #faf7f7;
}

.home-faq-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
}

.home-faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.home-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
}

.home-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.home-faq-item[open] summary::after {
  content: "–";
}

.home-faq-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Home E-E-A-T ---------- */
.home-eeat-notice {
  max-width: 820px;
  margin: 0 auto 28px;
}

.home-eeat-byline {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
  border-top: 0;
  padding-top: 0;
}

.home-eeat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.home-eeat-pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.15s;
}

.home-eeat-pillar:hover {
  border-color: #f5b7b5;
}

.home-eeat-pillar strong {
  display: block;
  font-size: 13.5px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.home-eeat-pillar span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.home-eeat-box {
  max-width: 860px;
  margin: 0 auto;
}

.eeat-sources-inline {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.eeat-sources-inline li {
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 40px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 0.75fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo .logo-end {
  color: #fff;
}

.footer-logo .logo-dot {
  color: #64748b;
}

.footer-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 14px;
}

.footer-col h4,
.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul,
.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-col li,
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-col a,
.footer-links a,
.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.15s;
}

.footer-col a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #cbd5e1;
  margin: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.footer-socials a:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(227, 30, 36, 0.15);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

/* ---------- Cookie Consent ---------- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  flex: 1;
}

.cookie-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-text p {
  font-size: 14px;
  color: #94a3b8;
}

.cookie-text a {
  color: var(--red);
}

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

.btn-cookie {
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-necessary {
  background: transparent;
  color: #fff;
  border: 2px solid #64748b;
}

.btn-necessary:hover {
  border-color: #fff;
}

.btn-accept {
  background: var(--red);
  color: #fff;
}

.btn-accept:hover {
  background: var(--red-dark);
}

/* ---------- Error Page ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
}

.error-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.error-text {
  color: var(--gray-dark);
  margin-bottom: 32px;
  font-size: 18px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    gap: 16px;
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .home-hero-copy {
    max-width: 100%;
    padding-bottom: 24px;
  }

  .home-hero-visual {
    height: 420px;
  }

  .home-hero-circle {
    width: 380px;
    height: 380px;
    right: -20px;
  }

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

  .home-howto-steps {
    grid-template-columns: 1fr 1fr;
  }

  .home-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .home-stats-intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .home-stat {
    border-left: 0;
    padding: 0;
  }

  .home-content-grid {
    grid-template-columns: 1fr;
  }

  .home-eeat-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 700px) {
  .container {
    padding: 0 16px;
  }

  .nav-cta {
    display: none;
  }

  .home-hero-title {
    font-size: 36px;
  }

  .home-hero-visual {
    height: 360px;
  }

  .home-hero-photo {
    width: 90%;
    right: 0;
    border-radius: 160px 160px 0 0;
  }

  .home-hero-circle {
    width: 300px;
    height: 300px;
  }

  .home-quote-card {
    width: 240px;
    padding: 18px;
    bottom: 16px;
  }

  .home-quote-title {
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  .home-topic-grid,
  .home-topic-grid--4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .home-howto-steps {
    grid-template-columns: 1fr;
  }

  .home-topic-card {
    min-width: 72vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .home-stats {
    padding: 40px 0;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-articles {
    grid-template-columns: 1fr;
  }

  .home-eeat-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta {
    padding-bottom: 56px;
  }

  .home-cta-box {
    grid-template-columns: 1fr;
  }

  .home-cta-photo {
    min-height: 100px;
  }

  .home-cta-copy {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }
}
