:root {
  --blue-950: #061827;
  --blue-900: #081d30;
  --blue-850: #0b2943;
  --blue-800: #102e4a;
  --blue-700: #17466f;
  --blue-600: #245b8d;
  --gold-500: #d8b55b;
  --gold-400: #e5c977;
  --gold-300: #f0d681;
  --cream: #fbf9f3;
  --gray-50: #f5f7fa;
  --gray-100: #ebeff3;
  --gray-300: #c9d1d9;
  --gray-600: #53616d;
  --gray-800: #263641;
  --white: #fff;
  --shadow-sm: 0 10px 32px rgba(7, 30, 50, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 30, 50, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--gray-800);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.offcanvas-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0 0 1.25rem;
}

button,
a,
input,
select,
textarea {
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--gold-300);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--blue-900);
  background: var(--gold-300);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  max-width: 1240px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-light {
  background: var(--gray-50);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 3.5rem;
}

.section-heading p,
.section-lead {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  color: var(--blue-600);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold-500);
}

.eyebrow-light {
  color: var(--gold-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.78rem 1.35rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 58px;
  padding: 0.95rem 1.55rem;
  font-size: 0.96rem;
}

.btn-gold {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 1px solid var(--gold-400);
  box-shadow: 0 12px 30px rgba(216, 181, 91, 0.22);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--blue-950);
  background: linear-gradient(135deg, #f6e1a4, #d9b252);
  border-color: var(--gold-300);
  box-shadow: 0 18px 38px rgba(216, 181, 91, 0.3);
}

.btn-primary-dark {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
  box-shadow: 0 12px 28px rgba(8, 29, 48, 0.17);
}

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

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue-700);
  font-size: 0.93rem;
  font-weight: 700;
}

.text-link i {
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  min-height: var(--header-height);
  background: linear-gradient(to bottom, rgba(5, 22, 37, 0.82), rgba(5, 22, 37, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(6, 24, 39, 0.97);
  box-shadow: 0 10px 32px rgba(3, 16, 28, 0.22);
  backdrop-filter: blur(14px);
}

.site-header .navbar {
  min-height: inherit;
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  width: 230px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.site-header .nav-link {
  position: relative;
  padding: 0.75rem 0.72rem !important;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-header .nav-link::after {
  position: absolute;
  right: 0.72rem;
  bottom: 7px;
  left: 0.72rem;
  height: 1px;
  content: "";
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 46px;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
}

.navbar-toggler {
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.offcanvas {
  color: var(--white);
  background: var(--blue-900);
}

.offcanvas-header {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header img {
  width: 205px;
  height: auto;
}

.offcanvas-body {
  padding: 1.8rem 1.25rem;
}

.offcanvas-kicker {
  margin-bottom: 1.3rem;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offcanvas .nav-link {
  padding: 0.8rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.offcanvas-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Hero */
.hero {
  position: relative;
  min-height: 920px;
  color: var(--white);
  background-color: var(--blue-950);
  background-image: url("/wp-content/themes/adv/assets/img/hero-criminal-desktop.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 150px;
  content: "";
  background: linear-gradient(to top, rgba(4, 19, 32, 0.78), transparent);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 130px;
  left: 4%;
  z-index: 1;
  width: 260px;
  height: 260px;
  opacity: 0.12;
  border: 1px solid var(--gold-400);
  transform: rotate(45deg);
}

.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  content: "";
  border: 1px solid var(--gold-400);
}

.hero-pattern::before {
  inset: 28px;
}

.hero-pattern::after {
  inset: 57px;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 920px;
  padding-top: 106px;
  padding-bottom: 95px;
}

.hero-content {
  width: min(680px, 58%);
}

.hero h1 {
  margin-bottom: 1.35rem;
  color: var(--white);
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta i {
  color: var(--gold-300);
}

.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.4rem;
  padding: 0.65rem 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(4, 20, 34, 0.46);
  border: 1px solid rgba(216, 181, 91, 0.35);
  border-radius: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero-signature strong {
  color: var(--gold-300);
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  margin-top: 0.25rem;
  color: var(--gold-300);
  font-size: 1.1rem;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 106px;
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--gray-100);
}

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

.trust-item i {
  flex: 0 0 auto;
  color: var(--gold-500);
  font-size: 1.6rem;
}

.trust-item span {
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

/* Consequence */
.consequence::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, transparent, rgba(216, 181, 91, 0.055));
  pointer-events: none;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: #fff9e9;
  border: 1px solid #ead9a7;
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
}

.warning-box i {
  margin-top: 0.18rem;
  color: #a47d1d;
  font-size: 1.3rem;
}

.warning-box p {
  margin: 0;
  color: #5f4f27;
  font-weight: 600;
}

.decision-card {
  position: relative;
  padding: 2.4rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  border: 1px solid rgba(216, 181, 91, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.decision-card::after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(216, 181, 91, 0.3);
  border-radius: 50%;
}

.decision-card-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.decision-card h3 {
  color: var(--white);
  font-size: 2.15rem;
}

.icon-list {
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.icon-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.icon-list i {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  color: var(--gold-300);
}

.decision-card .text-link {
  position: relative;
  z-index: 1;
  color: var(--gold-300);
}

/* Practice cards */
.practice {
  background: var(--white);
}

.practice-card {
  position: relative;
  padding: 2rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 34px rgba(13, 44, 70, 0.045);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.practice-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.practice-card:hover {
  border-color: rgba(216, 181, 91, 0.48);
  box-shadow: 0 18px 48px rgba(13, 44, 70, 0.1);
  transform: translateY(-6px);
}

.practice-card:hover::after {
  transform: scaleX(1);
}

.practice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.45rem;
  color: var(--gold-500);
  background: rgba(216, 181, 91, 0.12);
  border: 1px solid rgba(216, 181, 91, 0.25);
  border-radius: 12px;
  place-items: center;
  font-size: 1.25rem;
}

.card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(16, 46, 74, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.practice-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.65rem;
}

.practice-card p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Protective */
.protective {
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-950), var(--blue-800));
  overflow: hidden;
}

.protective h2 {
  color: var(--white);
}

.protective-glow {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 181, 91, 0.19), transparent 66%);
  pointer-events: none;
}

.protective-checklist {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.check-row > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--gold-300);
  background: rgba(216, 181, 91, 0.12);
  border-radius: 50%;
  place-items: center;
}

.check-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

/* Process */
.process {
  background: var(--cream);
}

.process .container {
  position: relative;
}

.process-grid {
  position: relative;
  z-index: 1;
}

.process-line {
  position: absolute;
  top: 56%;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 181, 91, 0.65), transparent);
}

.process-card {
  position: relative;
  padding: 2.15rem 1.6rem;
  background: var(--white);
  border: 1px solid #eee8d9;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 35px rgba(72, 58, 24, 0.05);
}

.process-number {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.3rem;
  color: var(--blue-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 50%;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-card p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.process-note {
  max-width: 900px;
  margin: 2.5rem auto 0;
  color: var(--gray-600);
  text-align: center;
  font-size: 0.86rem;
}

.process-note i {
  margin-right: 0.35rem;
  color: var(--blue-600);
}

/* Urgent */
.urgent-cta {
  padding: 0 0 110px;
  background: var(--cream);
}

.urgent-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), #164d79);
  border: 1px solid rgba(216, 181, 91, 0.28);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.urgent-icon {
  display: grid;
  width: 72px;
  height: 72px;
  color: var(--gold-300);
  background: rgba(216, 181, 91, 0.12);
  border: 1px solid rgba(216, 181, 91, 0.28);
  border-radius: 50%;
  place-items: center;
  font-size: 1.9rem;
}

.urgent-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.urgent-card p {
  max-width: 720px;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.urgent-card small {
  color: var(--gold-300);
  font-weight: 600;
}

.urgent-action {
  min-width: 235px;
}

/* About */
.about {
  background: var(--white);
}

.about-photo-wrap {
  position: relative;
  max-width: 475px;
  margin: 0 auto;
}

.about-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-frame {
  position: absolute;
  top: 24px;
  right: -24px;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-500);
  border-radius: 8px;
}

.about-badge {
  position: absolute;
  right: -18px;
  bottom: 32px;
  z-index: 3;
  padding: 1rem 1.35rem;
  color: var(--white);
  background: var(--blue-900);
  border-left: 3px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.about-badge span {
  display: block;
  color: var(--gold-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.about-points > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-points i {
  color: var(--gold-500);
  font-size: 1.2rem;
}

/* Form */
.form-section {
  background: var(--gray-50);
}

.form-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-intro {
  position: relative;
  padding: 3.5rem;
  color: var(--white);
  background: linear-gradient(150deg, var(--blue-950), var(--blue-700));
  overflow: hidden;
}

.form-intro::after {
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(216, 181, 91, 0.25);
  border-radius: 50%;
}

.form-intro h2 {
  color: var(--white);
}

.form-intro > p {
  color: rgba(255, 255, 255, 0.66);
}

.form-contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.form-contact-list > div,
.form-contact-list > a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-contact-list i {
  color: var(--gold-300);
  font-size: 1.25rem;
}

.form-contact-list small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-content {
  padding: 3.5rem;
}

.form-label {
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 52px;
  color: var(--gray-800);
  background-color: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 0.2rem rgba(216, 181, 91, 0.16);
}

.form-check-input:checked {
  background-color: var(--blue-700);
  border-color: var(--blue-700);
}

.form-check-label {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.form-text {
  text-align: right;
  font-size: 0.69rem;
}

.form-security {
  margin: 0.8rem 0 0;
  color: var(--gray-600);
  font-size: 0.71rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin-top: 0.5rem;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* FAQ */
.faq {
  background: var(--white);
}

.accordion-item {
  border-bottom: 1px solid var(--gray-100) !important;
}

.accordion-button {
  padding: 1.35rem 0;
  color: var(--blue-900);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--blue-700);
  background: transparent;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 0 2.5rem 1.35rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Contact */
.contact-location {
  color: var(--white);
  background: var(--blue-900);
}

.contact-panel {
  display: flex;
  align-items: center;
  min-height: 560px;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
}

.contact-panel-inner {
  width: 100%;
  max-width: 600px;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  margin-left: auto;
}

.contact-panel h2 {
  color: var(--white);
}

.contact-name {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-name span {
  display: block;
  color: var(--gold-300);
  font-size: 0.78rem;
}

.contact-panel address {
  margin: 1.8rem 0;
  font-style: normal;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.contact-row i {
  flex: 0 0 auto;
  margin-top: 0.18rem;
  color: var(--gold-300);
  font-size: 1.1rem;
}

.contact-row:hover {
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.map-wrap iframe {
  display: block;
  min-height: 100%;
  filter: saturate(0.7) contrast(0.95);
}

/* Footer */
.site-footer {
  padding: 75px 0 95px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--blue-950);
  border-top: 1px solid rgba(216, 181, 91, 0.16);
}

.footer-logo {
  width: 285px;
  height: auto;
  margin-bottom: 1.2rem;
}

.site-footer h2 {
  margin-bottom: 1.1rem;
  color: var(--gold-300);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a,
.site-footer span,
.site-footer p {
  font-size: 0.82rem;
}

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

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
  max-width: 700px;
  margin: 0;
  font-size: 0.72rem;
}

/* Floating buttons */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: #157f46;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(7, 30, 50, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #0e6d3a;
  transform: translateY(-3px);
}

.whatsapp-float i {
  font-size: 1.55rem;
}

.whatsapp-float span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
}

.whatsapp-float small {
  display: block;
  opacity: 0.68;
  font-size: 0.62rem;
  font-weight: 500;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1025;
  padding: 0.65rem;
  background: rgba(6, 24, 39, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 100px;
  z-index: 1015;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue-800);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .navbar-brand img {
    width: 205px;
  }

  .site-header .nav-link {
    padding-right: 0.48rem !important;
    padding-left: 0.48rem !important;
    font-size: 0.78rem;
  }

  .site-header .nav-link::after {
    right: 0.48rem;
    left: 0.48rem;
  }

  .header-cta {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

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

  .urgent-action {
    grid-column: 2;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 85px 0;
  }

  .navbar-brand img {
    width: 190px;
    max-height: 64px;
  }

  .hero,
  .hero-container {
    min-height: 800px;
  }

  .hero-content {
    width: 66%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6vw, 4.5rem);
  }

  .trust-item {
    border-bottom: 1px solid var(--gray-100);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .process-line {
    display: none;
  }

  .about-frame {
    right: -12px;
  }

  .form-intro,
  .form-content {
    padding: 2.5rem;
  }

  .contact-panel-inner {
    max-width: none;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 76px;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 2.7rem;
  }

  .section-heading p,
  .section-lead {
    font-size: 1rem;
  }

  .site-header {
    background: rgba(6, 24, 39, 0.88);
    backdrop-filter: blur(10px);
  }

  .navbar-brand img {
    width: 165px;
  }

  .hero {
    min-height: 875px;
    background-image: url("/wp-content/themes/adv/assets/img/hero-criminal-mobile.webp");
    background-position: center top;
  }

  .hero::after {
    height: 60%;
    background: linear-gradient(to top, rgba(4, 18, 31, 0.98), rgba(4, 18, 31, 0.05));
  }

  .hero-pattern {
    display: none;
  }

  .hero-container {
    align-items: flex-end;
    min-height: 875px;
    padding-top: 120px;
    padding-bottom: 62px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.45rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.35rem;
  }

  .hero-signature {
    margin-top: 1.25rem;
  }

  .hero-scroll {
    display: none;
  }

  .trust-item {
    min-height: 126px;
    padding: 1.1rem 0.8rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .trust-item i {
    font-size: 1.5rem;
  }

  .trust-item span {
    font-size: 0.75rem;
  }

  .decision-card {
    padding: 1.7rem;
  }

  .decision-card h3 {
    font-size: 1.9rem;
  }

  .protective-checklist {
    padding: 1.2rem;
  }

  .check-row {
    align-items: flex-start;
  }

  .urgent-cta {
    padding-bottom: 72px;
  }

  .urgent-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.8rem;
    text-align: left;
  }

  .urgent-action {
    grid-column: 1;
    min-width: 0;
  }

  .urgent-action .btn {
    width: 100%;
  }

  .about-frame {
    display: none;
  }

  .about-badge {
    right: 10px;
    bottom: 18px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .form-intro,
  .form-content {
    padding: 2rem 1.35rem;
  }

  .form-shell {
    border-radius: 14px;
  }

  .contact-actions {
    display: grid;
  }

  .map-wrap iframe {
    min-height: 380px;
    height: 380px;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .footer-logo {
    width: 250px;
  }

  .back-to-top {
    right: 14px;
    bottom: 88px;
  }
}

@media (max-width: 389.98px) {
  .hero,
  .hero-container {
    min-height: 930px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==================================================
   SEÇÃO — URGÊNCIAS CRIMINAIS
================================================== */

.urgent-defense {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #081d30 0%,
      #102e4a 55%,
      #245b8d 100%
    );
  color: #ffffff;
  padding: 100px 0;
  isolation: isolate;
}

/* Brilho decorativo */
.urgent-defense-glow {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(216, 181, 91, 0.16);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

/* Garante que o conteúdo fique acima do brilho */
.urgent-defense .container {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.urgent-defense .eyebrow,
.urgent-defense .eyebrow-light {
  display: inline-block;
  margin-bottom: 16px;
  color: #f0d681 !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Título */
.urgent-defense h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 22px;
}

/* Parágrafo principal */
.urgent-defense .section-lead,
.urgent-defense .text-white-50 {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 650px;
}

/* Checklist */
.urgent-defense-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

/* Cada linha */
.urgent-defense .check-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.urgent-defense .check-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.urgent-defense .check-row:first-child {
  padding-top: 0;
}

/* Ícone */
.urgent-defense .check-row > span {
  width: 46px;
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #102e4a;
  background: linear-gradient(135deg, #f0d681, #d8b55b);
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(216, 181, 91, 0.2);
}

/* Texto dos itens */
.urgent-defense .check-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1rem;
  line-height: 1.6;
}

/* Botão dourado */
.urgent-defense .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #102e4a !important;
  background: linear-gradient(135deg, #f0d681, #d8b55b);
  border: 1px solid #d8b55b;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(216, 181, 91, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.urgent-defense .btn-gold:hover {
  color: #081d30 !important;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
}

/* Responsivo */
@media (max-width: 991.98px) {
  .urgent-defense {
    padding: 80px 0;
  }

  .urgent-defense-checklist {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  h2{
    font-size: 38px;
  }

  .urgent-defense {
    padding: 65px 0;
  }

  .urgent-defense h2 {
    font-size: 2rem;
  }

  .urgent-defense .section-lead,
  .urgent-defense .text-white-50 {
    font-size: 1rem;
  }

  .urgent-defense-checklist {
    padding: 20px;
    border-radius: 16px;
  }

  .urgent-defense .check-row {
    gap: 12px;
  }

  .urgent-defense .check-row > span {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .urgent-defense .btn-gold {
    width: 100%;
  }
}

.centraliza{
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 991.98px) {


  .hero {
    min-height: auto;
    padding: 120px 0 0px;
    background: linear-gradient(135deg, var(--blue-900), #164d79);
    border: 1px solid rgba(216, 181, 91, 0.28) !important; 
    background-size: cover;
    background-position: center;
    padding-top: 50px !important;
  }

  .hero-container{
    padding-top: 0;
        padding-bottom: 0;
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-content .eyebrow {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: 2.15rem;
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-mobile-photo {
    margin-top: 28px;
    text-align: center;
  }

  .hero-mobile-photo img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(240, 214, 129, 0.22);
  }

  .hero-content h1{
    font-size: 32px;
  }
}

/* ==================================================
   CORREÇÃO DE BORDA BRANCA / OVERFLOW LATERAL
================================================== */

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

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  position: relative;
}

header,
main,
section,
footer,
.hero-banner,
.navbar,
.container-fluid {
  width: 100%;
  max-width: 100%;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Evita que elementos decorativos aumentem a largura da página */
.hero-banner,
.urgent-defense,
.hero-content,
.hero-mobile-photo {
  overflow: hidden;
}

/* ==================================================
   AÇÕES — SEÇÃO SOBRE
================================================== */

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.about-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-instagram {
  color: #102e4a;
  background: transparent;
  border: 1px solid rgba(16, 46, 74, 0.3);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn-instagram:hover,
.btn-instagram:focus-visible {
  color: #ffffff;
  background: #102e4a;
  border-color: #102e4a;
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions .btn {
    width: 100%;
  }
}

/*===========================================
  FAIXA DESENVOLVIDO POR
===========================================*/

.faixa-desenvolvido {
  padding: 18px 0;
  background: white;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;

}

.desenvolvido-por {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 14px;
  color: black;
  font-size: 13px;
  font-weight: 800;
}

.desenvolvido-por:hover {
  color: #ffd34e;
}

.desenvolvido-por img {
  display: block;
  width: auto;
  max-width: 155px;
  max-height: 32px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: #f0d681;
  border-radius: 20px;
  border: 3px solid white;
}

body {
  cursor: url(https://lp.clinicalotus.es/wp-content/themes/lotus/img/cursor.png), pointer;
}