@font-face {
  font-family: "Sukar";
  src: url("/fonts/SukarBlack.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy: #092342;
  --navy-deep: #061a31;
  --navy-soft: #103150;
  --yellow: #ffcb04;
  --yellow-soft: #ffe371;
  --red: #c51c30;
  --orange: #cd6419;
  --ink: #092342;
  --paper: #f8f4e8;
  --paper-strong: #fffaf0;
  --text: #f8f4e8;
  --text-muted: #cbd3d8;
  --border: rgba(255, 203, 4, 0.22);
  --heading-font: "Sukar", Tahoma, Arial, sans-serif;
  --body-font: Tahoma, Arial, sans-serif;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: var(--body-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--yellow);
  color: var(--navy);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 203, 4, 0.12);
  background: rgba(9, 35, 66, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: block;
  width: 160px;
  height: 70px;
  overflow: hidden;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.94rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transition: width 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--yellow);
  transform: translateY(-1px);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--yellow);
  border-radius: 14px;
  padding: 0 19px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  display: flex;
  cursor: pointer;
  list-style: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--yellow);
}

.mobile-menu nav {
  position: absolute;
  top: 56px;
  left: 0;
  width: min(300px, calc(100vw - 32px));
  display: grid;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text-muted);
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: rgba(255, 203, 4, 0.1);
  color: var(--yellow);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-block: 84px 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.eyebrow-line {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.eyebrow-dark {
  color: var(--navy);
}

.hero h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 6.6vw, 6.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--yellow);
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0 23px;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 14px 38px rgba(255, 203, 4, 0.17);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-soft);
  box-shadow: 0 17px 45px rgba(255, 203, 4, 0.27);
}

.button-secondary {
  border-color: rgba(248, 244, 232, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--yellow);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-deep);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 42px 0 0;
}

.trust-list div {
  min-width: 120px;
  display: grid;
  gap: 6px;
  padding-right: 16px;
  border-right: 2px solid var(--border);
}

.trust-list dt {
  color: #91a1ae;
  font-size: 0.74rem;
}

.trust-list dd {
  margin: 0;
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-emblem {
  position: relative;
  z-index: 2;
  width: min(430px, 88%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 4, 0.34);
  border-radius: 50%;
  background: var(--navy);
  box-shadow:
    0 0 0 22px rgba(255, 203, 4, 0.04),
    0 40px 90px rgba(0, 0, 0, 0.35);
}

.brand-emblem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent 28%,
    transparent 70%,
    rgba(255, 203, 4, 0.08)
  );
  pointer-events: none;
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 203, 4, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  aspect-ratio: 1;
}

.orbit-two {
  width: 590px;
  aspect-ratio: 1;
  border-style: dashed;
}

.orbit-two::before,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(255, 203, 4, 0.65);
}

.orbit-two::before {
  top: 64px;
  left: 84px;
}

.orbit-two::after {
  right: 46px;
  bottom: 112px;
  background: var(--red);
}

.privacy-badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 56px;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 203, 4, 0.28);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(6, 26, 49, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.privacy-badge-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow);
}

.privacy-badge div {
  display: grid;
  gap: 4px;
}

.privacy-badge strong {
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.85rem;
}

.privacy-badge small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.documents-section {
  padding-block: 108px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 203, 4, 0.14), transparent 28%),
    var(--navy-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
  gap: 48px;
  margin-bottom: 54px;
}

.section-heading h2,
.coverage-copy h2,
.contact-strip h2,
.legal-next h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading > p,
.coverage-copy > p,
.contact-strip > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.document-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 203, 4, 0.15);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.document-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 203, 4, 0.54);
  background: rgba(255, 203, 4, 0.055);
}

.document-number {
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.84rem;
}

.document-card h3 {
  margin: 62px 0 16px;
  font-family: var(--heading-font);
  font-size: 1.68rem;
}

.document-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.document-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.87rem;
}

.process-section {
  padding-block: 112px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 170px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.process-grid li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--heading-font);
}

.process-grid h3 {
  margin: 2px 0 10px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.process-grid p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.coverage-section {
  padding-block: 96px;
  background: var(--yellow);
  color: var(--navy);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: 72px;
}

.coverage-copy > p {
  margin-top: 22px;
  color: rgba(9, 35, 66, 0.78);
}

.coverage-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-item {
  min-width: 112px;
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.route-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 0.8rem;
}

.route-active > span {
  background: var(--navy);
  color: var(--yellow);
}

.route-item strong {
  font-family: var(--heading-font);
  font-size: 1.05rem;
}

.route-item small {
  color: rgba(9, 35, 66, 0.65);
}

.route-line {
  height: 2px;
  flex: 1;
  margin: 0 8px 42px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--orange));
}

.contact-strip {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--yellow);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding-block: 72px 56px;
}

.footer-brand > a {
  width: 190px;
  height: 90px;
  display: block;
  overflow: hidden;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.95rem;
}

.footer-column a,
.footer-column span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 203, 4, 0.1);
  padding-block: 24px;
  color: #8294a3;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-block: 86px 72px;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 203, 4, 0.13), transparent 28%),
    var(--navy);
}

.legal-hero::after {
  content: "ع";
  position: absolute;
  left: 6%;
  bottom: -45%;
  color: rgba(255, 203, 4, 0.035);
  font-family: var(--heading-font);
  font-size: 28rem;
  line-height: 1;
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 56px;
}

.legal-hero h1 {
  max-width: 840px;
  font-size: clamp(3.2rem, 6.2vw, 6rem);
}

.legal-hero h1 + p {
  max-width: 750px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.version-card {
  min-width: 210px;
  display: grid;
  gap: 16px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.version-card div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.version-card dt {
  color: #93a3af;
  font-size: 0.76rem;
}

.version-card dd {
  margin: 0;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.78rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
  padding-block: 80px 110px;
}

.legal-aside {
  position: sticky;
  top: 120px;
}

.legal-aside > p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.83rem;
}

.legal-aside nav {
  display: grid;
  border-top: 1px solid var(--border);
}

.legal-aside nav a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 203, 4, 0.1);
  padding-block: 12px;
  color: #aebbc4;
  font-size: 0.82rem;
  line-height: 1.5;
  transition:
    color 180ms ease,
    padding-right 180ms ease;
}

.legal-aside nav a span {
  color: #647887;
  font-size: 0.68rem;
}

.legal-aside nav a:hover,
.legal-aside nav a:focus-visible {
  padding-right: 5px;
  color: var(--yellow);
}

.aside-help {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  border-radius: 18px;
  padding: 20px;
  background: var(--yellow);
  color: var(--navy);
}

.aside-help strong {
  font-family: var(--heading-font);
  font-size: 0.88rem;
}

.aside-help p {
  margin: 0;
  color: rgba(9, 35, 66, 0.76);
  font-size: 0.78rem;
  line-height: 1.6;
}

.aside-help a {
  width: fit-content;
  border-bottom: 1px solid var(--navy);
  font-family: var(--heading-font);
  font-size: 0.78rem;
}

.legal-content {
  min-width: 0;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}

.legal-summary > div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.legal-summary span {
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.72rem;
}

.legal-summary strong {
  margin-top: auto;
  font-family: var(--heading-font);
  font-size: 0.98rem;
}

.legal-summary p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.legal-section {
  padding-block: 20px 66px;
  border-bottom: 1px solid rgba(255, 203, 4, 0.13);
}

.legal-section + .legal-section {
  padding-top: 66px;
}

.section-index {
  margin: 0 0 14px !important;
  color: var(--yellow) !important;
  font-family: var(--heading-font);
  font-size: 0.76rem !important;
}

.legal-section h2 {
  margin: 0 0 24px;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  line-height: 1.15;
}

.legal-section h3 {
  margin: 34px 0 13px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 1rem;
}

.legal-section p,
.legal-section li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 2;
}

.legal-section p {
  margin: 0 0 18px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0 23px 0 0;
}

.legal-section li::marker {
  color: var(--yellow);
}

.legal-section p a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 4, 0.35);
  text-underline-offset: 4px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--border);
}

.info-list div {
  min-height: 95px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 22px;
  background: var(--navy);
}

.info-list dt {
  color: #8da0ae;
  font-size: 0.75rem;
}

.info-list dd {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 0.94rem;
}

.info-list a {
  color: var(--yellow);
}

.data-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.data-group {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.028);
}

.data-group h3 {
  margin-top: 0;
}

.data-group ul {
  margin-bottom: 0;
}

.data-group li {
  font-size: 0.88rem;
  line-height: 1.8;
}

.legal-note {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid rgba(255, 203, 4, 0.38);
  border-radius: 22px;
  padding: 24px 26px 24px 30px;
  background: rgba(255, 203, 4, 0.07);
}

.legal-note::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(var(--yellow), var(--orange), var(--red));
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.95rem;
}

.legal-note p {
  margin: 0;
  font-size: 0.9rem;
}

.access-table {
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.access-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 203, 4, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.access-row:last-child {
  border-bottom: 0;
}

.access-row strong {
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 0.88rem;
}

.access-head {
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 0.82rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.service-cards article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.service-cards h3 {
  margin-top: 0;
}

.service-cards p {
  font-size: 0.84rem;
  line-height: 1.8;
}

.service-cards a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.78rem;
}

.retention-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.retention-wrap table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.retention-wrap th,
.retention-wrap td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 203, 4, 0.11);
  text-align: right;
  vertical-align: top;
}

.retention-wrap th {
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 0.8rem;
}

.retention-wrap td {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.retention-wrap tr:last-child td {
  border-bottom: 0;
}

.inline-action {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 4px 0 26px;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 5px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.86rem;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.contact-box a,
.contact-box span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 0 15px;
  color: var(--text);
  font-size: 0.84rem;
}

.contact-box a:hover,
.contact-box a:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.legal-next {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid var(--border);
}

.legal-next p {
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.8rem;
}

.legal-next h2 {
  font-size: clamp(1.7rem, 3.3vw, 3rem);
}

.deletion-callout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 68px;
  border-radius: 28px;
  padding: 34px;
  background: var(--yellow);
  color: var(--navy);
}

.deletion-callout h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.deletion-callout p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(9, 35, 66, 0.76);
  line-height: 1.8;
}

.deletion-callout .button {
  flex: 0 0 auto;
}

.deletion-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.deletion-methods a {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.deletion-methods a:hover,
.deletion-methods a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.deletion-methods span {
  color: #8ea0ad;
  font-size: 0.72rem;
}

.deletion-methods strong {
  color: var(--yellow);
  font-size: 0.82rem;
  word-break: break-word;
}

.timeline-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0 !important;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 0 0 28px;
}

.timeline-list li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--heading-font);
}

.timeline-list li:not(:last-child) > span::after {
  content: "";
  position: absolute;
}

.timeline-list strong {
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 0.94rem;
}

.timeline-list p {
  margin: 6px 0 0;
  font-size: 0.88rem;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.84rem;
  }

  .hero {
    gap: 35px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .orbit-one {
    width: 430px;
  }

  .orbit-two {
    width: 500px;
  }

  .privacy-badge {
    min-width: 270px;
    right: -10px;
  }

  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-cards article {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 36px, 680px);
  }

  .header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .site-logo {
    width: 145px;
    height: 62px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 68px 72px;
  }

  .hero-copy {
    text-align: right;
  }

  .hero-visual {
    order: 2;
    min-height: 500px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: clamp(3rem, 12vw, 5.1rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .document-card {
    min-height: 280px;
  }

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

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .coverage-route {
    max-width: 620px;
  }

  .contact-strip {
    min-height: 360px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .version-card {
    max-width: 360px;
  }

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

  .legal-aside {
    position: static;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
  }

  .legal-aside nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .aside-help {
    display: none;
  }

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

  .legal-summary > div {
    min-height: 150px;
  }

  .data-groups {
    grid-template-columns: 1fr;
  }

  .deletion-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .section-shell {
    width: min(100% - 28px, 520px);
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1,
  .legal-hero h1 {
    line-height: 1.02;
  }

  .hero-lead {
    line-height: 1.75;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .trust-list div {
    min-width: 0;
  }

  .hero-visual {
    min-height: 410px;
  }

  .brand-emblem {
    width: 82%;
  }

  .orbit-one {
    width: 340px;
  }

  .orbit-two {
    width: 390px;
  }

  .privacy-badge {
    right: 0;
    bottom: 18px;
    min-width: 0;
    width: 100%;
  }

  .documents-section,
  .process-section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .coverage-copy h2,
  .contact-strip h2 {
    font-size: 2.35rem;
  }

  .document-card {
    min-height: 270px;
    border-radius: 22px;
    padding: 24px;
  }

  .process-grid li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .route-item {
    min-width: 77px;
  }

  .route-item > span {
    width: 46px;
    height: 46px;
  }

  .route-line {
    margin-inline: 2px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .legal-hero {
    padding-block: 58px 52px;
  }

  .legal-hero h1 + p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .legal-layout {
    gap: 45px;
    padding-block: 50px 78px;
  }

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

  .legal-summary {
    margin-bottom: 42px;
  }

  .legal-section {
    padding-bottom: 52px;
  }

  .legal-section + .legal-section {
    padding-top: 52px;
  }

  .legal-section h2 {
    font-size: 1.85rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .access-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access-head {
    display: none;
  }

  .contact-box {
    flex-direction: column;
  }

  .contact-box a,
  .contact-box span {
    justify-content: center;
    text-align: center;
  }

  .legal-next {
    min-height: 310px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .legal-next .button {
    width: 100%;
  }

  .deletion-callout {
    border-radius: 22px;
    padding: 26px;
  }

  .deletion-callout .button {
    width: 100%;
  }

  .deletion-methods {
    grid-template-columns: 1fr;
  }

  .deletion-methods a {
    min-height: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.not-found h1 {
  margin: 0;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}

.not-found > p:not(.eyebrow) {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 1.08rem;
}
