:root {
  --navy: #061a30;
  --navy-deep: #010b16;
  --navy-soft: #0d2c4a;
  --gold: #e7aa2d;
  --gold-dark: #c88c17;
  --ink: #071a31;
  --muted: #637082;
  --line: #d8dee7;
  --surface: #f5f7fa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-v2 {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
}

.landing-v2 a {
  color: inherit;
  text-decoration: none;
}

.landing-v2 p,
.landing-v2 h1,
.landing-v2 h2,
.landing-v2 h3 {
  margin: 0;
}

.page-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 28px 0;
}

.site-header a {
  text-decoration: none;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 204px;
  max-width: 38vw;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a,
.header-cta {
  white-space: nowrap;
}

.main-nav a {
  color: var(--white);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.mobile-campus-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-cta,
.primary-button,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 8px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #f2bd45, var(--gold));
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--navy-deep);
  background: var(--white);
  box-shadow: inset 0 -2px 0 rgba(1, 11, 22, 0.08);
}

.header-cta:hover,
.primary-button:hover,
.form-button:hover {
  background: linear-gradient(135deg, #ffd067, #e5a21d);
  transform: translateY(-1px);
}

.header-cta-secondary:hover {
  color: var(--navy-deep);
  background: #edf3f9;
}

.nav-check,
.nav-toggle {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  transform: scale(1.02);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1, 11, 22, 0.98) 0%, rgba(4, 20, 37, 0.86) 38%, rgba(4, 20, 37, 0.30) 72%, rgba(4, 20, 37, 0.16) 100%),
    linear-gradient(180deg, rgba(1, 11, 22, 0.18), rgba(1, 11, 22, 0.55));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: -1px;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1800ms ease-in-out;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-main {
  background-image: url("../images/policias.jpg");
}

.hero-slide-k9 {
  background-image: url("../images/hero-k9-police.jpg");
}

.hero-slide-tactical {
  background-image: url("../images/hero-tactical-police.jpg");
}

.hero-slide-riot {
  background-image: url("../images/hero-riot-police.jpg");
}

.hero-shield {
  position: absolute;
  left: -85px;
  top: 190px;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.05);
  font-size: 145px;
}

.hero-inner {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-start;
  padding-top: 136px;
}

.hero-copy {
  width: min(610px, 100%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 66px;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy h2 {
  margin-top: 26px;
  color: var(--gold);
  font-size: 26px;
  line-height: 1.28;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy p:last-of-type {
  width: min(500px, 100%);
  margin: 22px 0 34px;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.gold-rule {
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 24px;
  background: var(--gold);
}

.gold-rule.centered {
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 640px;
}

.section-heading.compact {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.15;
  text-transform: uppercase;
}

.features-section {
  padding: 38px 0 54px;
  background: var(--white);
  box-shadow: 0 0 35px rgba(3, 18, 34, 0.12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.feature-item {
  min-height: 184px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 30px;
  box-shadow: 0 8px 18px rgba(5, 25, 48, 0.18);
}

.feature-item h3,
.download-card h3,
.method-cards h3 {
  margin-bottom: 10px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-item p,
.method-cards p,
.download-card p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.police-info-section {
  padding: 72px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.police-info-section .section-heading h2 {
  color: var(--white);
}

.police-info-section .section-intro {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.police-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.info-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 22px;
}

.info-panel h3 {
  margin-bottom: 18px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.info-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.info-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.stats-section {
  padding: 34px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 11, 22, 0.98), rgba(4, 31, 58, 0.94)),
    url("../images/stock-siren.jpg") center / cover no-repeat;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid i {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 30px;
}

.stats-grid strong {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.stats-grid span {
  margin-top: 8px;
  max-width: 190px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.academy-section {
  padding: 72px 0;
  background: var(--surface);
}

.academy-copy {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.academy-copy::after {
  display: none;
}

.academy-copy > * {
  position: relative;
  z-index: 1;
}

.academy-copy p,
.method-copy p,
.contact-copy p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  font-weight: 900;
}

.academy-copy .check-list {
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.method-section {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 11, 22, 0.98), rgba(5, 31, 58, 0.86)),
    url("../images/stock-police-method.jpg") center / cover no-repeat;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.method-section .section-heading h2,
.method-copy p {
  color: var(--white);
}

.method-copy p {
  opacity: 0.86;
}

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

.method-cards article {
  min-height: 236px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.method-cards i {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 34px;
}

.method-cards h3,
.method-cards p {
  color: var(--white);
}

.method-cards p {
  opacity: 0.82;
}

.testimonials-section {
  padding: 50px 0;
  background: var(--surface);
}

.testimonials-section .section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.testimonial-carousel {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 26, 49, 0.10);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.testimonial-current-author {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.testimonial-current-author img {
  width: 36px;
  height: 36px;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(7, 26, 49, 0.12);
}

.testimonial-current-author h3 {
  margin: 0 0 2px;
  overflow: hidden;
  color: var(--ink);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.08;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.testimonial-current-author span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-buttons {
  display: flex;
  gap: 8px;
}

.testimonial-arrow {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(7, 26, 49, 0.16);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  min-height: 230px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 26px);
  background:
    linear-gradient(135deg, rgba(1, 11, 22, 0.03), rgba(231, 170, 45, 0.06)),
    var(--white);
}

.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 14px;
}

.testimonial-quote {
  max-height: 112px;
  margin: 0;
  padding-right: 10px;
  overflow-y: auto;
  color: var(--ink);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.62;
  font-weight: 600;
}

.testimonial-quote::-webkit-scrollbar {
  width: 8px;
}

.testimonial-quote::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(7, 26, 49, 0.18);
}

.testimonial-author {
  display: none;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(7, 26, 49, 0.12);
}

.testimonial-author h3 {
  margin-bottom: 3px;
  color: var(--ink);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 14px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 26, 49, 0.24);
  cursor: pointer;
}

.testimonial-dots button.is-active {
  width: 24px;
  background: var(--gold);
}

.downloads-section {
  padding: 66px 0 74px;
  background: var(--white);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.download-card {
  min-height: 268px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 26, 49, 0.07);
}

.download-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.download-card i {
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 24px;
}

.download-card span {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-card.no-download {
  pointer-events: none;
}

.local-links-section {
  padding: 66px 0 74px;
  color: var(--white);
  background: var(--navy-deep);
}

.local-links-section .section-heading h2 {
  color: var(--white);
}

.local-links-section .section-intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.local-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.local-link-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.local-link-card:hover {
  border-color: rgba(231, 170, 45, 0.7);
  transform: translateY(-3px);
}

.local-link-card i {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 22px;
}

.local-link-card span {
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.local-link-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  scroll-margin-top: 0;
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 11, 22, 0.98), rgba(5, 31, 58, 0.92)),
    url("../images/stock-contact.jpg") center / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 56px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 680px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-copy a {
  color: var(--gold);
  font-weight: 700;
}

.contact-address {
  width: max-content;
  max-width: 100%;
  margin: 24px 0 0;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(231, 170, 45, 0.32);
  border-radius: 8px;
  color: var(--white);
  background: rgba(231, 170, 45, 0.12);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.contact-address i {
  color: var(--gold);
  font-size: 20px;
}

.contact-highlights {
  width: min(620px, 100%);
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.contact-highlights article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.contact-highlights i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 22px;
}

.contact-highlights h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-highlights p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.contact-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.contact-panel h3 {
  margin-bottom: 24px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}

.contact-panel label {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
}

.contact-panel input {
  height: 52px;
  padding: 0 15px;
}

.contact-panel textarea {
  min-height: 118px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(231, 170, 45, 0.18);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.legal-hero-section {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 11, 22, 0.98) 0%, rgba(4, 20, 37, 0.88) 46%, rgba(5, 31, 58, 0.48) 100%),
    linear-gradient(180deg, rgba(1, 11, 22, 0.08), rgba(1, 11, 22, 0.58)),
    url("../images/policias.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.legal-hero-inner {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
}

.legal-hero-inner h1 {
  width: min(760px, 100%);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 58px;
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-hero-inner p:last-child {
  width: min(640px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.legal-content-section {
  padding: 72px 0 84px;
  background: var(--white);
}

.legal-content {
  width: 100%;
}

.legal-content .elementor {
  display: none;
}

.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.15;
  text-transform: uppercase;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li,
.legal-content td {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
  text-align: justify;
}

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

.legal-content ul,
.legal-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content table {
  width: 100%;
  margin: 24px 0;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}

.legal-content td {
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}

.seo-aside {
  position: sticky;
  top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.seo-aside h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.15;
  text-transform: uppercase;
}

.seo-aside p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.seo-aside .primary-button {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
}

.related-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.related-links span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-links a {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
}

.related-links a:hover {
  color: var(--ink);
}

.site-footer {
  color: var(--white);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto auto;
  gap: 36px;
  align-items: start;
  padding: 34px 0;
}

.footer-grid img {
  width: 160px;
  display: block;
}

.footer-grid p {
  max-width: 420px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.7;
}

.footer-grid nav {
  display: grid;
  gap: 9px;
  max-width: 250px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.footer-grid nav span {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  color: var(--navy-deep);
  background: var(--gold);
}

.copyright {
  margin: 0;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

.cookies {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: min(420px, calc(100% - 48px));
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(1, 11, 22, 0.94);
  box-shadow: 0 18px 40px rgba(1, 11, 22, 0.25);
}

.cookies p {
  color: var(--white);
  font-size: 13px;
  line-height: 1.6;
}

.cookies a {
  color: var(--gold);
  font-weight: 700;
}

.cookies button {
  width: max-content;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--navy-deep);
  background: var(--gold);
  font-weight: 800;
  cursor: pointer;
}

#overlay.currently-loading {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(1, 11, 22, 0.88) url("../images/enviando3.gif") center / 220px auto no-repeat;
}

.error,
.exito,
.load {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.error p {
  color: #c92121;
}

.exito p {
  color: #237d39;
}

.fade-in {
  opacity: 1;
  animation: fadeInOpacity 0.35s ease-in 1;
}

@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 22px;
  }

  .header-cta {
    padding: 0 20px;
  }

  .header-actions {
    gap: 10px;
  }

  .feature-grid,
  .download-grid,
  .local-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }

  .feature-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .method-grid,
  .contact-grid,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .seo-aside {
    position: static;
  }

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

  .testimonial-slide {
    min-height: 260px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 18px 0;
  }

  .nav-shell {
    align-items: flex-start;
  }

  .brand img {
    width: 166px;
  }

  .nav-toggle {
    width: 46px;
    height: 42px;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--white);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-check:checked ~ .main-nav {
    position: absolute;
    top: 74px;
    right: 24px;
    width: min(280px, calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(1, 11, 22, 0.96);
  }

  .nav-check:checked ~ .main-nav a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
  }

  .nav-check:checked ~ .main-nav .mobile-campus-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--navy-deep);
    background: var(--white);
  }

  .nav-check:checked ~ .main-nav .mobile-campus-link-primary {
    color: var(--navy-deep);
    background: var(--gold);
  }
}

@media (max-width: 860px) {
  .hero-section,
  .hero-inner {
    min-height: 690px;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(1, 11, 22, 0.98), rgba(4, 20, 37, 0.78));
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .legal-hero-inner h1 {
    font-size: 46px;
  }

  .hero-copy h2 {
    font-size: 22px;
  }

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

  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .stats-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .testimonial-quote {
    font-size: 15px;
  }

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

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 32px, 1160px);
  }

  .hero-section,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    padding-top: 116px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .legal-hero-section,
  .legal-hero-inner {
    min-height: 360px;
  }

  .legal-hero-inner {
    padding-top: 84px;
  }

  .legal-hero-inner h1 {
    font-size: 36px;
  }

  .legal-hero-inner p:last-child {
    font-size: 15px;
  }

  .legal-content-section {
    padding: 46px 0 56px;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4,
  .legal-content h5 {
    font-size: 24px;
  }

  .legal-content p,
  .legal-content li,
  .legal-content td {
    font-size: 15px;
  }

  .hero-copy h2,
  .contact-copy h2 {
    font-size: 22px;
  }

  .hero-copy p:last-of-type,
  .academy-copy p,
  .method-copy p,
  .contact-copy p {
    font-size: 15px;
  }

  .primary-button,
  .form-button {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .feature-grid,
  .download-grid,
  .police-info-grid,
  .local-link-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child,
  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .stats-grid article,
  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .stats-grid article:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .academy-copy .check-list {
    grid-template-columns: 1fr;
  }

  .downloads-section,
  .academy-section,
  .police-info-section,
  .method-section,
  .testimonials-section,
  .local-links-section,
  .contact-section {
    padding: 50px 0;
  }

  .testimonial-controls {
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .testimonial-current-author {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    max-width: calc(100% - 78px);
  }

  .testimonial-current-author img {
    width: 32px;
    height: 32px;
  }

  .testimonial-current-author h3 {
    font-size: 14px;
  }

  .testimonial-current-author span {
    font-size: 10px;
  }

  .testimonial-buttons {
    flex: 0 0 auto;
    gap: 6px;
  }

  .testimonial-arrow {
    width: 30px;
    height: 30px;
  }

  .testimonial-slide {
    min-height: 280px;
    padding: 18px 14px;
  }

  .testimonial-quote {
    max-height: 125px;
    padding-right: 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  .testimonial-author h3 {
    font-size: 16px;
  }

  .testimonial-dots {
    padding: 0 12px 12px;
  }

  .testimonials-section {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .testimonials-section .section-heading.compact {
    margin-bottom: 30px;
  }

  .downloads-section {
    padding-top: 38px;
  }

  .contact-panel {
    padding: 24px;
  }

  .cookies {
    left: 16px;
    right: 16px;
    bottom: 12px;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .cookies p {
    font-size: 12px;
    line-height: 1.35;
  }

  .cookies button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}
