.premium-legal-page {
  min-height: 100vh;
  color: #182333;
  background:
    radial-gradient(circle at 82% 8%, rgba(24, 198, 167, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 54%, rgba(210, 230, 246, 0.72), transparent 34rem),
    #f7fafb;
}

.premium-legal-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 184, 154, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 184, 154, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.premium-legal-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.premium-legal-hero {
  max-width: 780px;
  margin-bottom: 46px;
}

.premium-legal-hero .eyebrow {
  margin: 0 0 18px;
  color: #05947e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-legal-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #182333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.premium-legal-hero > p:not(.eyebrow, .legal-updated) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #60748d;
  font-size: 1.08rem;
  line-height: 1.75;
}

.legal-updated {
  margin: 18px 0 0;
  color: #71849a;
  font-size: 0.84rem;
  font-weight: 700;
}

.premium-legal-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.premium-legal-summary,
.premium-legal-content section {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(38, 74, 99, 0.09);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.premium-legal-summary {
  position: sticky;
  top: 24px;
  padding: 28px;
  border-radius: 8px;
}

.premium-legal-summary strong {
  display: block;
  margin-bottom: 18px;
  color: #087e6d;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-legal-summary ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-legal-summary li {
  position: relative;
  padding-left: 20px;
  color: #42566d;
  font-size: 0.94rem;
  line-height: 1.55;
}

.premium-legal-summary li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12b89a;
  box-shadow: 0 0 0 5px rgba(18, 184, 154, 0.1);
}

.premium-legal-content {
  display: grid;
  gap: 16px;
}

.premium-legal-content section {
  padding: 30px 34px;
  border-radius: 8px;
}

.premium-legal-content h2 {
  margin: 0 0 12px;
  color: #182333;
  font-size: 1.22rem;
  line-height: 1.3;
}

.premium-legal-content p {
  margin: 0;
  color: #536980;
  font-size: 0.96rem;
  line-height: 1.72;
}

.premium-legal-action {
  display: inline-flex;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 184, 154, 0.34);
  border-radius: 999px;
  color: #087e6d;
  background: rgba(236, 253, 249, 0.82);
  box-shadow: 0 10px 24px rgba(18, 184, 154, 0.1);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-legal-action:hover,
.premium-legal-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 184, 154, 0.7);
  box-shadow: 0 14px 30px rgba(18, 184, 154, 0.16);
  outline: none;
}

.premium-legal-cookie-action {
  appearance: none;
  margin: 18px 0 0;
}

.premium-legal-cookie-action + p {
  margin-top: 18px;
}

.premium-static-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 30px;
}

@media (max-width: 820px) {
  .premium-legal-main {
    width: min(100% - 28px, 680px);
    padding: 38px 0 60px;
  }

  .premium-legal-grid {
    grid-template-columns: 1fr;
  }

  .premium-legal-summary {
    position: static;
  }

  .premium-legal-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .premium-static-footer {
    width: min(100% - 28px, 680px);
  }
}

@media (max-width: 520px) {
  .premium-legal-main {
    width: calc(100% - 24px);
    padding-top: 28px;
  }

  .premium-legal-hero {
    margin-bottom: 30px;
  }

  .premium-legal-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .premium-legal-hero > p:not(.eyebrow, .legal-updated) {
    font-size: 1rem;
  }

  .premium-legal-summary,
  .premium-legal-content section {
    padding: 24px 20px;
  }

  .premium-static-footer {
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-legal-action {
    transition: none;
  }
}
