﻿:root {
  --bg: #0f0f10;
  --bg-elev: #121216;
  --panel: #141417;
  --panel-2: #1b1b20;
  --text: #f4f1ea;
  --muted: #cfc8bc;
  --accent: #caa24a;
  --accent-strong: #e2bc66;
  --accent-soft: rgba(202, 162, 74, 0.14);
  --line: #2d2d34;
  --focus: #f0cf84;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 92% 0%, rgba(202, 162, 74, 0.1) 0%, transparent 35%), radial-gradient(circle at 0% 100%, rgba(202, 162, 74, 0.07) 0%, transparent 35%), var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 0.8rem;
  border-radius: 0 0 6px 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 16, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(202, 162, 74, 0.55);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: rgba(202, 162, 74, 0.5);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.country-select {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
}

.country-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  border: 1px solid rgba(202, 162, 74, 0.35);
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(202, 162, 74, 0.08);
}

main {
  min-height: 60vh;
}

section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

section.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.hero {
  padding: clamp(4rem, 7vw, 7rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-media {
  position: relative;
}

.media-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(202, 162, 74, 0.22);
  background: linear-gradient(180deg, #17171b, #111116);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.post-thumb {
  border-radius: 12px;
  border: 1px solid rgba(202, 162, 74, 0.22);
  margin-bottom: 0.9rem;
  background: #111116;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  max-width: 60ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #181410;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(202, 162, 74, 0.28);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: var(--panel);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.panel {
  background: linear-gradient(180deg, var(--panel), #121217);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.panel:hover {
  border-color: rgba(202, 162, 74, 0.25);
}

.stat-grid,
.card-grid,
.review-grid,
.faq-grid,
.blog-grid,
.step-grid,
.outcome-grid {
  display: grid;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 1.4rem;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 162, 74, 0.45);
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
}

th {
  color: var(--text);
  font-size: 0.95rem;
}

td strong {
  color: var(--text);
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.cta-banner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(202, 162, 74, 0.25);
  background: linear-gradient(145deg, rgba(202, 162, 74, 0.18), rgba(202, 162, 74, 0.04));
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  gap: 0.6rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.4rem;
}

.filter-btn {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.filter-btn[aria-pressed="true"] {
  color: #171411;
  border-color: transparent;
  background: var(--accent);
}

.no-results {
  margin-top: 0.8rem;
  border: 1px dashed rgba(202, 162, 74, 0.4);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--muted);
  background: rgba(202, 162, 74, 0.08);
}

.hidden {
  display: none !important;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  background: var(--panel);
}

details + details {
  margin-top: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

details[open] summary::after {
  content: "-";
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

article {
  max-width: 78ch;
}

article h2,
article h3 {
  margin-top: 1.8rem;
}

article ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

article li {
  margin-bottom: 0.5rem;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

input,
textarea,
select {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 140px;
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumbs {
  padding: 1.1rem 0 0;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #7f786e;
  margin-right: 0.5rem;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-nav {
  display: grid;
  gap: 0.4rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.small {
  font-size: 0.86rem;
}

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

.country-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--panel);
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 74, 0.4);
  background: rgba(20, 20, 23, 0.95);
  color: var(--text);
  display: none;
  place-items: center;
  cursor: pointer;
}

.back-top.show {
  display: grid;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 980px) {
  .hero-grid,
  .step-grid,
  .card-grid,
  .review-grid,
  .blog-grid,
  .footer-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(88vw, 320px);
    padding: 0.8rem;
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 12px;
  }

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

  .header-controls {
    width: 100%;
    justify-content: space-between;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
