:root {
  --hr-red: #c8102e;
  --hr-blue: #1b3a6b;
  --hr-blue-dark: #122a4f;
  --hr-blue-light: #2a5298;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-50: #f1f3f6;
  --gray-100: #e4e8ee;
  --gray-200: #c8d0db;
  --gray-500: #6b7a8f;
  --gray-700: #3d4a5c;
  --gray-900: #1a2332;
  --shadow-sm: 0 1px 3px rgba(27, 58, 107, 0.08);
  --shadow-md: 0 4px 16px rgba(27, 58, 107, 0.1);
  --shadow-lg: 0 8px 32px rgba(27, 58, 107, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1140px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hr-blue-light); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--hr-red); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--hr-blue);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--hr-blue);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-mark {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--hr-red) 33%, var(--white) 33% 66%, var(--hr-blue) 66%);
  border: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--gray-50);
  color: var(--hr-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hr-blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.disclaimer-bar {
  background: var(--hr-blue);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  line-height: 1.45;
}

.disclaimer-bar p { margin: 0; }
.disclaimer-bar strong { color: #ffd6dc; }

.hero {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, #eef2f8 100%);
  padding: 3.5rem 0 4rem;
  border-bottom: 3px solid var(--hr-red);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hr-red);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--hr-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  max-width: 54ch;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-facts li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--hr-red);
  border-radius: 50%;
}

.notice-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--hr-blue);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.notice-card h2 {
  font-size: 1.1rem;
  color: var(--hr-blue);
  margin-bottom: 0.75rem;
}

.notice-card p { font-size: 0.95rem; color: var(--gray-700); margin-bottom: 0.75rem; }
.notice-card .small { font-size: 0.85rem; margin-bottom: 0; }

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--hr-blue);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.page-header {
  background: linear-gradient(135deg, var(--hr-blue) 0%, var(--hr-blue-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  margin-bottom: 0;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 60ch;
  font-size: 1.05rem;
}

.page-header .breadcrumb {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.page-header .breadcrumb a {
  color: #b8cce8;
}

.platform-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.platform-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}

.platform-card:hover {
  box-shadow: var(--shadow-md);
}

.platform-rank {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hr-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.platform-card:nth-child(1) .platform-rank { background: var(--hr-red); }

.platform-body h3 {
  font-size: 1.25rem;
  color: var(--hr-blue);
  margin-bottom: 0.35rem;
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.stars {
  color: #e8a317;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.rating-value {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
}

.platform-body > p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin-bottom: 1.25rem;
}

.platform-tags li {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  background: var(--gray-50);
  color: var(--gray-700);
  border-radius: 999px;
  border: 1px solid var(--gray-100);
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 140px;
  max-width: 200px;
  padding: 0.65rem 1.15rem;
  margin-bottom: 0.85rem;
  background: var(--hr-blue);
  border: 1px solid var(--hr-blue-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.platform-logo img {
  max-height: 40px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

.platform-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.platform-hero {
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 70%);
  border-bottom: 1px solid var(--gray-100);
  padding: 2.5rem 0;
}

.platform-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.platform-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hr-blue);
  border: 1px solid var(--hr-blue-dark);
  border-radius: var(--radius-lg);
  padding: 1.35rem 2rem;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.platform-hero-logo img {
  max-height: 52px;
  max-width: 180px;
  object-fit: contain;
}

.platform-hero-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--hr-blue);
  margin-bottom: 0.5rem;
}

.platform-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.platform-hero-lead {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 640px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.detail-main .prose {
  max-width: none;
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.detail-sidebar h3 {
  font-size: 1rem;
  color: var(--hr-blue);
  margin-bottom: 1rem;
}

.detail-sidebar ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.detail-sidebar li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.detail-sidebar li a {
  color: var(--gray-700);
  text-decoration: none;
}

.detail-sidebar li a:hover {
  color: var(--hr-red);
  text-decoration: underline;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.spec-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.spec-card dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.spec-card dd {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hr-blue);
  margin: 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pros-cons-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.pros-cons-box h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.pros-cons-box.pros { border-top: 3px solid var(--hr-blue); }
.pros-cons-box.cons { border-top: 3px solid var(--hr-red); }

.pros-cons-box ul {
  padding-left: 1.15rem;
  margin: 0;
}

.pros-cons-box li {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.3;
}

.btn-secondary {
  background: var(--white);
  color: var(--hr-blue);
  border-color: var(--hr-blue);
}

.btn-secondary:hover {
  background: var(--hr-blue);
  color: var(--white);
}

.btn-primary {
  background: var(--hr-blue);
  color: var(--white);
  border-color: var(--hr-blue);
}

.btn-primary:hover {
  background: var(--hr-blue-dark);
  border-color: var(--hr-blue-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--hr-blue);
  color: var(--hr-blue);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.info-icon {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hr-red);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.info-card h3 {
  font-size: 1.05rem;
  color: var(--hr-blue);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.content-columns h2 {
  font-size: 1.35rem;
  color: var(--hr-blue);
  margin-bottom: 1rem;
}

.content-columns p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  margin-bottom: 1rem;
}

.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hr-blue);
  font-weight: 700;
}

.check-list-negative li::before {
  content: "✕";
  color: var(--hr-red);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
  background: var(--hr-blue);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }

.table-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
}

.faq-list,
.prose .faq-item {
  max-width: 760px;
}

.faq-list {
  margin: 0 auto;
}

.prose .faq-item {
  margin-left: 0;
  margin-right: 0;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--hr-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--hr-red);
  font-weight: 400;
}

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

.faq-item p {
  padding: 0 1.25rem 1rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.35rem;
  color: var(--hr-blue);
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.1rem;
  color: var(--hr-blue);
  margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--gray-700);
  margin-bottom: 0.85rem;
}

.prose ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--hr-blue);
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--hr-blue);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
}

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

.alert-box {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-left: 4px solid #e8a317;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.alert-box h2 {
  font-size: 1.1rem;
  color: var(--hr-blue);
  margin-bottom: 0.5rem;
}

.alert-box p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin: 0;
}

.pia-reg-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.75rem 0;
}

.pia-reg-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pia-reg-logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pia-reg-logo-item {
  margin: 0;
}

.pia-reg-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pia-reg-logo-link:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.pia-reg-logo-link img {
  display: block;
  max-height: 52px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-footer {
  background: var(--hr-blue-dark);
  color: #c8d4e8;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

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

.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.footer-domain {
  color: #8aa8cc;
  font-size: 0.82rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer nav ul {
  list-style: none;
}

.site-footer nav a {
  color: #a8bdd8;
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  padding: 0.25rem 0;
}

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

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-disclaimer a { color: #8ec4ff; }
.footer-disclaimer strong { color: var(--white); }

.responsible-gambling {
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.25rem !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  font-size: 0.82rem;
}

.age-badge {
  background: var(--hr-red);
  color: var(--white);
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .content-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside { order: -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    z-index: 99;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .platform-card {
    grid-template-columns: 1fr;
  }

  .platform-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .platform-rank {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .section { padding: 2.5rem 0; }
  .hero { padding: 2rem 0 2.5rem; }

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

@media (max-width: 480px) {
  .disclaimer-bar { font-size: 0.75rem; }
  .platform-actions,
  .platform-card-actions { flex-direction: column; }

  .platform-actions .btn,
  .platform-card-actions .btn { width: 100%; text-align: center; }
}

/* Compliance: age gate & cookie banner */
body.pia-modal-open { overflow: hidden; }

.pia-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(18, 42, 79, 0.88);
}

.pia-age-panel {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pia-age-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--hr-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.pia-age-panel h2 {
  color: var(--hr-blue);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pia-age-panel p {
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pia-age-note {
  font-size: 0.85rem !important;
  color: var(--gray-500) !important;
}

.pia-age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.pia-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--hr-blue-dark);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.pia-cookie-bar a { color: #b8d4ff; }

.pia-cookie-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pia-cookie-bar__inner p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pia-cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Trust / compliance blocks */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  font-size: 1rem;
  color: var(--hr-blue);
  margin-bottom: 0.5rem;
}

.trust-card p,
.trust-card ul {
  font-size: 0.92rem;
  color: var(--gray-700);
}

.trust-card ul {
  margin-top: 0.5rem;
  padding-left: 1.15rem;
}

.trust-card li + li { margin-top: 0.35rem; }

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.compliance-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--gray-700);
}

.compliance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hr-blue-light);
  font-weight: 700;
}
