.cookie-notice {
  background: #17201d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 52px rgba(18, 28, 24, 0.24);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: max(18px, calc((100vw - 1164px) / 2));
  padding: 20px;
  position: fixed;
  right: max(18px, calc((100vw - 1164px) / 2));
  z-index: 1000;
}

.public-nav .nav-links a,
.public-nav .session-signout,
.public-nav .nav-menu-toggle {
  min-height: 44px;
}

.public-nav .nav-links .mobile-nav-cta {
  display: none;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice-copy {
  max-width: 760px;
}

.cookie-notice-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.cookie-notice-copy p {
  color: #dce7e2;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.cookie-notice-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.cookie-notice-actions a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 6px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cookie-notice-actions button {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #17201d;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  min-height: 44px;
  padding: 0 16px;
}

.cookie-notice-actions button:hover {
  background: #edf4f0;
}

.cookie-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 20px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}

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

.cookie-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.cookie-table th,
.cookie-table td {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: #f2f5f3;
  color: var(--ink);
  font-weight: 700;
}

.cookie-table tbody tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  color: #0d6b50;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.cookie-status {
  align-items: center;
  background: #edf5f1;
  border-left: 4px solid var(--mint);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 30px 0 0;
  padding: 18px 20px;
}

.cookie-status strong,
.cookie-status span {
  display: block;
}

.cookie-status span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 3px;
}

.cookie-status em {
  background: #fff;
  border: 1px solid #bdd5ca;
  border-radius: 999px;
  color: #0d6b50;
  flex: 0 0 auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  padding: 7px 10px;
}

.cookie-category-list {
  border-top: 1px solid var(--line);
  margin: 24px 0 0;
}

.cookie-category-list > div {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-category-list dt {
  color: var(--ink);
  font-weight: 750;
}

.cookie-category-list dd {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.guide-library-body .product-film .film-step,
.home-body .home-product-film .film-step {
  display: none;
}

.not-found-shell,
.result-page-shell {
  align-items: center;
  display: grid;
  min-height: calc(100vh - 190px);
  padding: 56px 24px 80px;
  position: relative;
  z-index: 1;
}

.not-found-content,
.result-page-shell .verification-result-card {
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}

.not-found-code {
  color: var(--mint);
  display: block;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.not-found-content h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  margin: 0;
}

.not-found-content > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 620px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.result-page-shell .verification-result-card {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.site-footer .footer-links {
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .cookie-notice {
    bottom: 10px;
    gap: 15px;
    grid-template-columns: 1fr;
    left: 10px;
    padding: 16px;
    right: 10px;
  }

  .cookie-notice-actions {
    align-items: center;
    flex-direction: row;
  }

  .cookie-notice-actions a {
    flex: 0 0 auto;
    text-align: center;
  }

  .cookie-notice-actions button {
    flex: 1 1 auto;
    min-width: 0;
  }

  .cookie-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-category-list > div {
    grid-template-columns: 1fr;
  }

  .not-found-shell,
  .result-page-shell {
    min-height: calc(100vh - 240px);
    padding: 42px 16px 64px;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .account-body:not(.reset-body):not(.account-authenticated) .public-nav .nav-menu-toggle {
    display: grid;
  }

  .account-body:not(.reset-body):not(.account-authenticated) .public-nav .nav-links {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px rgba(20, 33, 29, 0.18);
    display: none;
    left: 16px;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: calc(100% - 4px);
  }

  .account-body:not(.reset-body):not(.account-authenticated) .public-nav.nav-open .nav-links {
    display: grid;
  }

  .account-body:not(.reset-body):not(.account-authenticated) .public-nav .nav-links a,
  .account-body:not(.reset-body):not(.account-authenticated) .public-nav .nav-links a:first-child {
    display: flex;
    min-height: 46px;
    padding: 0 12px;
    width: 100%;
  }
}

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

/* Public acquisition navigation and contact hierarchy. */
@media (max-width: 900px) {
  .home-body .public-nav .nav-links a:nth-child(2),
  .home-body .public-nav .nav-links a:nth-child(3) {
    display: flex;
  }

  .public-nav {
    gap: 12px;
  }

  .public-nav .nav-links a {
    padding-left: 7px;
    padding-right: 7px;
  }

  .public-nav .nav-cta {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 720px) {
  .public-nav.nav-open .nav-menu-toggle {
    position: relative;
  }

  .public-nav.nav-open .nav-menu-toggle span {
    left: 10px;
    position: absolute;
    top: 19px;
  }

  .public-nav.nav-open .nav-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .public-nav.nav-open .nav-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .public-nav.nav-open .nav-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .public-nav.nav-open .nav-links a:nth-child(2),
  .public-nav.nav-open .nav-links a:nth-child(3) {
    display: flex;
  }

  .public-nav.nav-open .nav-links .mobile-nav-cta {
    background: var(--mint);
    border-color: var(--mint);
    color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }

  .footer-links a {
    align-items: center;
    display: inline-flex;
    min-height: 40px;
  }
}

.contact-primary {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.contact-primary article {
  padding: 34px 40px 36px 0;
}

.contact-primary article + article {
  border-left: 1px solid var(--line);
  padding-left: 40px;
  padding-right: 0;
}

.contact-primary article > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-primary h2,
.contact-specialists h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 10px 0 0;
}

.contact-primary p {
  color: var(--muted);
  line-height: 1.6;
  margin: 13px 0 22px;
}

.contact-primary .button {
  width: fit-content;
}

.contact-specialists {
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  padding: 62px 0 24px;
}

.contact-specialists dl {
  margin: 0;
}

.contact-specialists dl > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  padding: 17px 0;
}

.contact-specialists dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-specialists dt {
  color: var(--ink);
  font-weight: 750;
}

.contact-specialists dd {
  margin: 0;
}

.contact-specialists a {
  color: var(--mint);
  font-weight: 750;
}

.contact-privacy-note {
  background: #edf2ef;
  border-left: 3px solid var(--mint);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 22px 0 0;
  padding: 14px 16px;
}

@media (max-width: 720px) {
  .contact-primary,
  .contact-specialists {
    grid-template-columns: 1fr;
  }

  .contact-primary article,
  .contact-primary article + article {
    border-left: 0;
    padding: 26px 0;
  }

  .contact-primary article + article {
    border-top: 1px solid var(--line);
  }

  .contact-primary .button {
    width: 100%;
  }

  .contact-specialists {
    gap: 26px;
    padding-top: 50px;
  }

  .contact-specialists dl > div {
    gap: 6px;
    grid-template-columns: 1fr;
  }
}
