:root {
  --navy-950: #001326;
  --navy-900: #061b31;
  --navy-800: #0a2947;
  --navy-card: rgba(4, 26, 48, 0.82);
  --gold: #d9a342;
  --gold-light: #efbe61;
  --paper: #f5f4f1;
  --muted: #d9dce1;
  --line: rgba(226, 171, 73, 0.3);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--navy-950);
  font-family: "Lato", Arial, sans-serif;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 15px;
  color: #171208;
  border-radius: 5px;
  background: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 25px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

.brand__picture {
  display: block;
}

.brand__image {
  width: clamp(235px, 19vw, 292px);
  height: auto;
  filter: drop-shadow(0 0 8px rgba(220, 166, 70, 0.14));
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-link,
.header-contact {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.header-link {
  gap: 9px;
  color: rgba(245, 244, 241, 0.86);
}

.header-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.header-link:hover {
  color: var(--gold-light);
}

.header-link:hover svg {
  transform: translateX(-3px);
}

.header-contact {
  padding: 0 22px;
  color: #171208;
  border: 1px solid rgba(255, 225, 161, 0.68);
  border-radius: 5px;
  background: linear-gradient(105deg, #e4ad4b 0%, #f1c86d 59%, #dfa544 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 217, 0.56),
    0 8px 24px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}

.header-contact:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.license-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.license-hero__photo,
.license-hero__shade,
.license-hero__geometry {
  position: absolute;
  inset: 0;
}

.license-hero__photo {
  z-index: -4;
  background: url("assets/license-hero-background.webp") center / cover no-repeat;
  transform: scale(1.002);
}

.license-hero__shade {
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(0, 12, 25, 0.995) 0%,
      rgba(0, 15, 31, 0.985) 35%,
      rgba(0, 16, 32, 0.91) 58%,
      rgba(0, 14, 28, 0.5) 82%,
      rgba(0, 12, 25, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(0, 9, 19, 0.08) 30%, rgba(0, 12, 25, 0.45) 72%, rgba(0, 12, 25, 0.92) 100%);
}

.license-hero__geometry {
  z-index: -2;
  width: 100%;
  height: 100%;
  color: rgba(215, 160, 62, 0.13);
  pointer-events: none;
}

.license-hero__geometry g {
  stroke-width: 0.85;
}

.license-hero__inner {
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
}

.license-hero__copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.license-hero h1 {
  margin: 17px 0 0;
  color: rgba(247, 246, 243, 0.98);
  font: 500 clamp(64px, 6.35vw, 94px) / 0.87 "EB Garamond", Georgia, serif;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.license-hero h1 span {
  display: block;
  color: var(--gold-light);
}

.title-rule {
  position: relative;
  width: min(265px, 58%);
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold-light), rgba(239, 190, 97, 0.12));
}

.title-rule span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translate(50%, -50%);
}

.license-hero__lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(249, 248, 245, 0.96);
  font: 500 clamp(21px, 1.7vw, 25px) / 1.34 "EB Garamond", Georgia, serif;
}

.license-hero__text {
  max-width: 610px;
  margin: 15px 0 0;
  color: rgba(222, 227, 232, 0.84);
  font-size: 16px;
  line-height: 1.62;
}

.license-hero__actions,
.request__actions {
  margin-top: 29px;
  display: flex;
  align-items: stretch;
  gap: 15px;
}

.button {
  min-height: 60px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(223, 168, 74, 0.72);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    filter 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.button svg {
  width: 25px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  color: #171208;
  border-color: rgba(255, 225, 161, 0.68);
  background: linear-gradient(105deg, #e4ad4b 0%, #f1c86d 59%, #dfa544 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 217, 0.56),
    0 10px 28px rgba(0, 0, 0, 0.2);
}

.button--secondary {
  color: rgba(249, 249, 247, 0.95);
  background: rgba(0, 19, 38, 0.54);
}

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

.button--primary:hover {
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 217, 0.64),
    0 14px 32px rgba(0, 0, 0, 0.26);
}

.button--secondary:hover {
  color: #171208;
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button:focus-visible,
.header-link:focus-visible,
.header-contact:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(255, 226, 162, 0.86);
  outline-offset: 4px;
}

.license-hero__facts {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.license-hero__facts li {
  min-width: 128px;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(231, 177, 80, 0.33);
}

.license-hero__facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.license-hero__facts strong {
  color: var(--gold-light);
  font: 500 22px / 1 "EB Garamond", Georgia, serif;
}

.license-hero__facts span {
  margin-top: 6px;
  color: rgba(222, 226, 230, 0.75);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.license-document {
  position: relative;
  width: min(100%, 468px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(230, 176, 77, 0.55);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(10, 43, 73, 0.97), rgba(2, 20, 39, 0.99)),
    var(--navy-900);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
  isolation: isolate;
}

.license-document::before,
.license-document::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.license-document::before {
  inset: 11px;
  z-index: -1;
  border: 1px solid rgba(227, 173, 75, 0.13);
  border-radius: 8px;
}

.license-document::after {
  right: -110px;
  bottom: -125px;
  z-index: -2;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(234, 181, 83, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(234, 181, 83, 0.03),
    0 0 0 75px rgba(234, 181, 83, 0.022);
}

.license-document__ornament {
  position: absolute;
  top: -55px;
  right: -38px;
  z-index: -1;
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid rgba(236, 183, 84, 0.14);
  border-radius: 50%;
}

.license-document__ornament::before,
.license-document__ornament::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(236, 183, 84, 0.1);
  border-radius: 50%;
}

.license-document__ornament::before {
  inset: 23px;
}

.license-document__ornament::after {
  inset: 53px;
}

.license-document__header {
  min-height: 105px;
  padding: 26px 30px 21px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid rgba(226, 171, 73, 0.24);
}

.license-document__header p {
  margin: 0;
  color: var(--gold-light);
  font: 600 21px / 1.1 "Cinzel", Georgia, serif;
  letter-spacing: 0.03em;
}

.license-document__header span {
  margin-top: 6px;
  display: block;
  color: rgba(225, 229, 232, 0.65);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.license-document__mark {
  width: 44px;
  height: 50px;
  flex: 0 0 auto;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.license-document__body {
  padding: 27px 30px 24px;
}

.license-document__type {
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.license-document h2 {
  margin: 11px 0 0;
  color: rgba(248, 247, 244, 0.98);
  font: 500 clamp(28px, 2.3vw, 35px) / 1.04 "EB Garamond", Georgia, serif;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.license-document__rule {
  width: 75px;
  height: 2px;
  margin-top: 19px;
  display: block;
  background: linear-gradient(90deg, var(--gold-light), rgba(239, 190, 97, 0.15));
}

.license-document__name {
  margin: 24px 0 0;
  color: var(--gold-light);
  font: 500 22px / 1.1 "EB Garamond", Georgia, serif;
  letter-spacing: 0.005em;
}

.license-document__details {
  margin: 22px 0 0;
}

.license-document__details > div {
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(100px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  border-top: 1px solid rgba(221, 169, 78, 0.18);
}

.license-document__details dt {
  color: rgba(221, 225, 229, 0.58);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.license-document__details dd {
  margin: 0;
  color: rgba(246, 245, 242, 0.92);
  font-size: 12px;
  line-height: 1.45;
}

.license-document__footer {
  min-height: 92px;
  padding: 18px 30px 23px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  border-top: 1px solid rgba(226, 171, 73, 0.24);
  background: rgba(0, 15, 31, 0.32);
}

.license-document__seal {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(239, 190, 97, 0.55);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(239, 190, 97, 0.05);
}

.license-document__seal span {
  font: 600 14px / 1 "Cinzel", Georgia, serif;
  letter-spacing: 0.06em;
}

.license-document__footer p {
  margin: 0;
  color: rgba(217, 222, 226, 0.7);
  font-size: 10px;
  line-height: 1.55;
}

.license-document__footer a {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.license-document__footer a svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.license-document__footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.record {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.record__photo,
.record__shade {
  position: absolute;
  inset: 0;
}

.record__photo {
  z-index: -3;
  background: url("assets/license-documents-background.webp") center / cover no-repeat;
  transform: scale(1.002);
}

.record__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 14, 29, 0.985), rgba(0, 17, 35, 0.94) 55%, rgba(0, 14, 29, 0.76)),
    linear-gradient(180deg, rgba(0, 13, 27, 0.82), rgba(0, 13, 27, 0.93));
}

.record__inner,
.credentials__inner {
  padding-top: 105px;
  padding-bottom: 110px;
}

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

.section-heading h2,
.request__content h2 {
  margin: 14px 0 0;
  color: var(--gold-light);
  font: 500 clamp(50px, 4.5vw, 68px) / 0.98 "EB Garamond", Georgia, serif;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 710px;
  margin: 18px 0 0;
  color: rgba(229, 232, 235, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.document-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.document-card {
  overflow: hidden;
  border: 1px solid rgba(225, 171, 76, 0.42);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(8, 38, 67, 0.94), rgba(2, 20, 39, 0.97));
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.document-card__preview {
  position: relative;
  height: 430px;
  padding: 23px;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(228, 177, 84, 0.12), transparent 56%),
    rgba(0, 14, 29, 0.72);
  text-decoration: none;
}

.document-card__preview::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(226, 172, 75, 0.13);
  border-radius: 7px;
  pointer-events: none;
}

.document-card__preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 25px rgba(0, 0, 0, 0.34));
  transition:
    filter 220ms ease,
    transform 320ms var(--ease);
}

.document-card__preview > span {
  position: absolute;
  right: 36px;
  bottom: 35px;
  z-index: 3;
  min-height: 43px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #171208;
  border: 1px solid rgba(255, 226, 161, 0.72);
  border-radius: 5px;
  background: linear-gradient(105deg, #e4ad4b, #f1c86d 59%, #dfa544);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 247, 217, 0.55);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease);
}

.document-card__preview > span svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-card__preview:hover img {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
  transform: scale(1.015);
}

.document-card__preview:hover > span,
.document-card__preview:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.document-card__preview:focus-visible {
  outline: 3px solid rgba(255, 226, 162, 0.86);
  outline-offset: -5px;
}

.document-card__content {
  padding: 29px 30px 31px;
  border-top: 1px solid rgba(224, 170, 75, 0.24);
}

.document-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.document-card__topline > span:last-child {
  flex: 0 0 auto;
  color: rgba(225, 229, 232, 0.7);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-card__badge {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(231, 178, 80, 0.39);
  border-radius: 999px;
  background: rgba(0, 15, 31, 0.35);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-card h3 {
  max-width: 13ch;
  min-height: 2.1em;
  margin: 17px 0 0;
  color: rgba(248, 247, 244, 0.98);
  font: 500 clamp(32px, 3vw, 41px) / 1.02 "EB Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.document-card__subtitle {
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.document-card__details {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(224, 170, 75, 0.21);
  border-left: 1px solid rgba(224, 170, 75, 0.21);
}

.document-card__details > div {
  min-height: 78px;
  padding: 12px 13px;
  border-right: 1px solid rgba(224, 170, 75, 0.21);
  border-bottom: 1px solid rgba(224, 170, 75, 0.21);
}

.document-card__details dt {
  color: rgba(225, 229, 232, 0.72);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-card__details dd {
  margin: 6px 0 0;
  color: rgba(247, 246, 243, 0.9);
  font-size: 12px;
  line-height: 1.4;
}

.document-card__actions {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 11px;
}

.document-action {
  min-height: 48px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(247, 246, 243, 0.92);
  border: 1px solid rgba(228, 174, 77, 0.5);
  border-radius: 5px;
  background: rgba(0, 15, 31, 0.36);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.document-action svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-action--primary {
  color: #171208;
  border-color: rgba(255, 226, 161, 0.68);
  background: linear-gradient(105deg, #e4ad4b, #f1c86d 59%, #dfa544);
}

.document-action:hover {
  color: #171208;
  border-color: var(--gold-light);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.document-action:focus-visible {
  outline: 3px solid rgba(255, 226, 162, 0.86);
  outline-offset: 3px;
}

.document-card__verify {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(239, 190, 97, 0.83);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.document-card__verify svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-card__verify:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-card__verify:focus-visible {
  outline: 3px solid rgba(255, 226, 162, 0.86);
  outline-offset: 3px;
  border-radius: 3px;
}

.record-card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(225, 171, 76, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 38, 67, 0.93), rgba(2, 20, 39, 0.96));
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.record-card__portrait {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 39%, rgba(213, 162, 69, 0.16), transparent 38%),
    linear-gradient(145deg, #082947, #031a31);
}

.record-card__portrait::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 32%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 18, 35, 0.88));
  pointer-events: none;
}

.record-card__halo {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(235, 183, 85, 0.25);
  border-radius: 50%;
  transform: translateX(-50%);
}

.record-card__halo::before,
.record-card__halo::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(235, 183, 85, 0.11);
  border-radius: 50%;
}

.record-card__halo::before {
  inset: 12%;
}

.record-card__halo::after {
  inset: 28%;
}

.record-card__monogram {
  position: absolute;
  top: 40px;
  left: 26px;
  z-index: 0;
  color: rgba(239, 190, 97, 0.07);
  font: 500 270px / 1 "Cinzel", Georgia, serif;
}

.record-card__portrait img {
  position: absolute;
  right: 50%;
  bottom: -5px;
  z-index: 2;
  width: min(95%, 440px);
  max-width: none;
  height: auto;
  filter:
    saturate(0.88)
    contrast(1.03)
    drop-shadow(0 22px 32px rgba(0, 0, 0, 0.38));
  transform: translateX(50%);
}

.record-card__content {
  padding: clamp(48px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.record-card__role {
  margin: 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.record-card h3 {
  max-width: 13ch;
  margin: 12px 0 0;
  color: rgba(248, 247, 244, 0.98);
  font: 500 clamp(42px, 4vw, 58px) / 0.98 "EB Garamond", Georgia, serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.record-card__membership {
  max-width: 42ch;
  margin: 15px 0 0;
  color: rgba(225, 230, 234, 0.84);
  font-size: 16px;
  line-height: 1.5;
}

.record-card__facts {
  margin-top: 26px;
  border-top: 1px solid rgba(224, 170, 75, 0.23);
}

.record-card__facts > div {
  min-height: 61px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(224, 170, 75, 0.18);
}

.record-card__facts span {
  color: rgba(217, 222, 226, 0.55);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-card__facts strong {
  color: rgba(247, 246, 243, 0.92);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.verification {
  margin-top: 27px;
  padding: 19px 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 17px;
  border: 1px solid rgba(230, 176, 78, 0.34);
  border-radius: 8px;
  background: rgba(0, 15, 31, 0.38);
}

.verification__icon {
  width: 45px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.verification__icon svg {
  width: 38px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification strong {
  color: rgba(249, 248, 245, 0.96);
  font: 500 19px / 1.2 "EB Garamond", Georgia, serif;
}

.verification p {
  margin: 7px 0 0;
  color: rgba(218, 223, 227, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.verification a {
  margin-top: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.verification a svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.credentials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 19, 38, 0.975), rgba(0, 19, 38, 0.985)),
    url("assets/license-credentials-background.webp") center / cover no-repeat;
}

.credentials::before {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 760px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(231, 178, 79, 0.055);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 90px rgba(231, 178, 79, 0.018),
    0 0 0 180px rgba(231, 178, 79, 0.012);
  pointer-events: none;
}

.credential-grid {
  margin-top: 53px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.credential-card {
  position: relative;
  min-height: 370px;
  padding: 36px 31px 32px;
  overflow: hidden;
  border: 1px solid rgba(220, 166, 72, 0.35);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(7, 36, 64, 0.8), rgba(2, 21, 41, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.credential-card:hover {
  border-color: rgba(239, 190, 97, 0.62);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.credential-card::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 230px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(234, 181, 83, 0.1);
  border-radius: 50%;
}

.credential-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(239, 190, 97, 0.25);
  font: 500 36px / 1 "EB Garamond", Georgia, serif;
}

.credential-card__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(230, 176, 77, 0.42);
  border-radius: 8px;
  background: rgba(0, 16, 33, 0.35);
}

.credential-card__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-card h3 {
  margin: 25px 0 0;
  color: var(--gold-light);
  font: 500 31px / 1.05 "EB Garamond", Georgia, serif;
}

.credential-card p {
  margin: 15px 0 0;
  color: rgba(222, 227, 231, 0.74);
  font-size: 14px;
  line-height: 1.62;
}

.credential-card__dash {
  width: 45px;
  height: 2px;
  margin-top: 24px;
  display: block;
  background: var(--gold-light);
}

.request {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.request__photo,
.request__shade,
.request__geometry {
  position: absolute;
  inset: 0;
}

.request__photo {
  z-index: -4;
  background: url("assets/license-contact-background.webp") center / cover no-repeat;
  transform: scale(1.002);
}

.request__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 13, 27, 0.985) 0%, rgba(0, 15, 31, 0.95) 46%, rgba(0, 14, 29, 0.79) 72%, rgba(0, 12, 25, 0.58)),
    linear-gradient(180deg, rgba(0, 11, 24, 0.2), rgba(0, 13, 27, 0.8));
}

.request__geometry {
  z-index: -2;
  width: 100%;
  height: 100%;
  color: rgba(196, 143, 59, 0.2);
  opacity: 0.5;
  pointer-events: none;
}

.request__geometry g {
  stroke-width: 0.9;
}

.request__inner {
  padding-top: 108px;
  padding-bottom: 105px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
}

.request__content h2 {
  max-width: 650px;
}

.request__lead {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(236, 238, 240, 0.87);
  font-size: 17px;
  line-height: 1.62;
}

.request__steps {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.request__steps li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.request__steps li > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(231, 178, 80, 0.55);
  border-radius: 50%;
  background: rgba(3, 24, 46, 0.6);
  font: 500 18px / 1 "EB Garamond", Georgia, serif;
}

.request__steps li:not(:last-child) > span::after {
  width: 1px;
  height: 32px;
  margin-top: 7px;
  content: "";
  background: linear-gradient(var(--gold-light), rgba(239, 190, 97, 0.08));
}

.request__steps strong {
  color: rgba(248, 247, 244, 0.96);
  font: 500 21px / 1.2 "EB Garamond", Georgia, serif;
}

.request__steps p {
  margin: 5px 0 0;
  color: rgba(219, 224, 228, 0.69);
  font-size: 13px;
  line-height: 1.48;
}

.request__actions .button__whatsapp {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.request__privacy {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(224, 228, 231, 0.75);
  font-size: 13px;
}

.request__privacy svg {
  width: 25px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.request__contact {
  padding: 42px 37px 36px;
  border: 1px solid rgba(228, 174, 77, 0.48);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(8, 39, 68, 0.94), rgba(2, 20, 39, 0.97)),
    var(--navy-900);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.request__contact-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.request__contact h3 {
  margin: 10px 0 0;
  color: var(--gold-light);
  font: 600 34px / 1.05 "Cinzel", Georgia, serif;
  letter-spacing: 0.01em;
}

.request__contact > p:nth-of-type(2) {
  margin: 7px 0 0;
  color: rgba(224, 228, 231, 0.65);
  font-size: 13px;
}

.request__contact address {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.request__contact address a {
  min-height: 76px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(224, 170, 75, 0.2);
  text-decoration: none;
}

.request__contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(224, 170, 75, 0.45);
  border-radius: 7px;
  background: rgba(0, 15, 31, 0.3);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.request__contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.request__contact address a:first-child .request__contact-icon svg {
  fill: currentColor;
  stroke: none;
}

.request__contact address a:last-child .request__contact-icon svg {
  width: 23px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

.request__contact address a:last-child .request__contact-icon circle {
  fill: var(--navy-900);
}

.request__contact address small,
.request__contact address strong {
  display: block;
}

.request__contact address small {
  color: rgba(225, 229, 232, 0.72);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request__contact address strong {
  margin-top: 4px;
  color: rgba(248, 247, 244, 0.94);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 180ms ease;
}

.request__contact address a:hover .request__contact-icon {
  color: #171208;
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.request__contact address a:hover strong {
  color: var(--gold-light);
}

.request__back {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.request__back svg {
  width: 22px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.request__back:hover svg {
  transform: translateX(-4px);
}

.site-footer {
  border-top: 1px solid rgba(223, 168, 74, 0.18);
  background: #000f1f;
}

.site-footer__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.site-footer__brand {
  color: var(--gold-light);
  font: 600 19px / 1 "Cinzel", Georgia, serif;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: rgba(225, 229, 232, 0.7);
  font-size: 11px;
  text-align: center;
}

.site-footer__inner > a:last-child {
  justify-self: end;
  color: rgba(239, 190, 97, 0.76);
  font-size: 11px;
  text-decoration: none;
}

.site-footer__inner > a:last-child:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 14px));
  z-index: 60;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #171208;
  border: 1px solid rgba(255, 225, 161, 0.68);
  border-radius: 50%;
  background: linear-gradient(145deg, #e4ad4b, #f1c86d 59%, #dfa544);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    0 0 0 4px rgba(0, 19, 38, 0.54),
    inset 0 1px 0 rgba(255, 247, 217, 0.56);
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 220ms var(--ease),
    filter 220ms ease;
}

.whatsapp-float > svg {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 2px solid rgba(241, 200, 109, 0.72);
  border-radius: inherit;
  opacity: 0;
  animation: whatsapp-pulse 2.2s ease-out 3;
}

.whatsapp-float:hover {
  filter: brightness(1.06);
  transform: translateY(-3px) scale(1.035);
}

.whatsapp-float:focus-visible,
.verification a:focus-visible,
.request__contact a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(255, 226, 162, 0.86);
  outline-offset: 4px;
  border-radius: 4px;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  18% {
    opacity: 0.56;
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.52);
  }
}

html.motion-ready [data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 360ms ease-out var(--reveal-delay),
    translate 480ms var(--ease) var(--reveal-delay),
    scale 480ms var(--ease) var(--reveal-delay);
}

html.motion-ready [data-reveal="left"] {
  translate: -26px 0;
}

html.motion-ready [data-reveal="scale"] {
  translate: 0 12px;
  scale: 0.975;
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 48px, 1020px);
  }

  .license-hero__inner {
    grid-template-columns: minmax(0, 700px);
  }

  .license-hero h1 {
    font-size: clamp(60px, 7.2vw, 82px);
  }

  .license-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .license-hero__actions .button {
    width: min(100%, 390px);
  }

  .license-hero__facts li {
    min-width: 0;
  }

  .record-card__content {
    padding: 48px 42px;
  }

  .request__inner {
    gap: 48px;
  }

  .request__actions {
    flex-direction: column;
  }

  .request__actions .button {
    width: min(100%, 390px);
  }
}

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

  .site-header__nav {
    gap: 18px;
  }

  .header-contact {
    display: none;
  }

  .license-hero {
    min-height: auto;
  }

  .license-hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 12, 25, 0.95), rgba(0, 15, 31, 0.94) 52%, rgba(0, 12, 25, 0.985)),
      linear-gradient(90deg, rgba(0, 14, 29, 0.92), rgba(0, 14, 29, 0.6));
  }

  .license-hero__inner {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 78px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .license-hero__copy {
    max-width: 690px;
  }

  .license-hero__actions {
    flex-direction: row;
  }

  .license-hero__actions .button {
    width: auto;
  }

  .license-document {
    width: min(100%, 560px);
    justify-self: start;
  }

  .record__inner,
  .credentials__inner {
    padding-top: 84px;
    padding-bottom: 88px;
  }

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

  .document-card {
    display: grid;
    grid-template-columns: minmax(265px, 0.82fr) minmax(0, 1.18fr);
  }

  .document-card__preview {
    height: auto;
    min-height: 560px;
  }

  .document-card__content {
    border-top: 0;
    border-left: 1px solid rgba(224, 170, 75, 0.24);
  }

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

  .record-card__portrait {
    min-height: 540px;
  }

  .record-card__portrait img {
    width: min(72%, 430px);
  }

  .record-card__content {
    padding: 46px;
  }

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

  .credential-card {
    min-height: 0;
  }

  .request__inner {
    padding-top: 86px;
    padding-bottom: 88px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .request__actions {
    flex-direction: row;
  }

  .request__actions .button {
    width: auto;
  }

  .request__contact {
    width: min(100%, 590px);
  }

  .site-footer__inner {
    padding: 25px 0;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 34px);
  }

  .site-header {
    padding: 15px 0;
  }

  .brand__image {
    width: 205px;
  }

  .header-link {
    min-width: 42px;
    min-height: 42px;
    border: 1px solid rgba(231, 178, 80, 0.35);
    border-radius: 50%;
  }

  .header-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .header-link svg {
    width: 22px;
    height: 22px;
  }

  .license-hero__inner {
    padding-top: 118px;
    padding-bottom: 62px;
    gap: 46px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .eyebrow > span {
    width: 24px;
  }

  .license-hero h1 {
    margin-top: 13px;
    font-size: clamp(53px, 17vw, 69px);
    line-height: 0.9;
  }

  .title-rule {
    margin-top: 20px;
  }

  .license-hero__lead {
    margin-top: 20px;
    font-size: 20px;
  }

  .license-hero__text {
    font-size: 14px;
    line-height: 1.58;
  }

  .license-hero__actions,
  .request__actions {
    flex-direction: column;
  }

  .license-hero__actions .button,
  .request__actions .button {
    width: 100%;
  }

  .button {
    min-height: 58px;
    padding: 0 18px;
    font-size: 14px;
  }

  .license-hero__facts {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .license-hero__facts li {
    padding: 0 10px;
  }

  .license-hero__facts strong {
    font-size: 18px;
  }

  .license-hero__facts span {
    font-size: 9px;
  }

  .license-document__header {
    padding: 23px 22px 18px;
  }

  .license-document__header p {
    font-size: 18px;
  }

  .license-document__body {
    padding: 24px 22px 19px;
  }

  .license-document h2 {
    font-size: 28px;
  }

  .license-document__details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .license-document__footer {
    padding: 17px 22px 21px;
  }

  .record__inner,
  .credentials__inner {
    padding-top: 67px;
    padding-bottom: 70px;
  }

  .section-heading h2,
  .request__content h2 {
    margin-top: 11px;
    font-size: clamp(42px, 13vw, 55px);
  }

  .section-heading > p:last-child,
  .request__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.57;
  }

  .record-card {
    margin-top: 34px;
    border-radius: 9px;
  }

  .document-grid {
    margin-top: 34px;
  }

  .document-card {
    display: block;
    border-radius: 9px;
  }

  .document-card__preview {
    height: 395px;
    min-height: 0;
    padding: 18px;
  }

  .document-card__preview > span {
    right: 27px;
    bottom: 28px;
    opacity: 1;
    transform: none;
  }

  .document-card__content {
    padding: 25px 21px 24px;
    border-top: 1px solid rgba(224, 170, 75, 0.24);
    border-left: 0;
  }

  .document-card h3 {
    min-height: 0;
    font-size: clamp(31px, 9.8vw, 39px);
  }

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

  .document-card__details > div {
    min-height: 0;
  }

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

  .record-card__portrait {
    min-height: 430px;
  }

  .record-card__portrait img {
    width: min(88%, 370px);
  }

  .record-card__monogram {
    font-size: 205px;
  }

  .record-card__content {
    padding: 32px 23px 27px;
  }

  .record-card h3 {
    font-size: clamp(36px, 11.5vw, 47px);
  }

  .record-card__membership {
    font-size: 14px;
  }

  .record-card__facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .verification {
    padding: 17px 16px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .verification__icon {
    width: 36px;
  }

  .verification strong {
    font-size: 17px;
  }

  .credential-grid {
    margin-top: 34px;
  }

  .credential-card {
    padding: 28px 23px 26px;
  }

  .credential-card__icon {
    width: 66px;
    height: 66px;
  }

  .credential-card__icon svg {
    width: 42px;
    height: 42px;
  }

  .credential-card h3 {
    font-size: 29px;
  }

  .request__inner {
    padding-top: 70px;
    padding-bottom: 72px;
    gap: 44px;
  }

  .request__steps {
    margin-top: 25px;
  }

  .request__steps li {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 13px;
  }

  .request__steps li > span {
    width: 39px;
    height: 39px;
  }

  .request__steps strong {
    font-size: 19px;
  }

  .request__contact {
    padding: 31px 21px 27px;
  }

  .request__contact h3 {
    font-size: 29px;
  }

  .request__contact address a {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .request__contact-icon {
    width: 45px;
    height: 45px;
  }

  .request__contact address strong {
    font-size: 13px;
  }

  .site-footer__inner {
    min-height: 104px;
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__inner > a:last-child {
    justify-self: start;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float > svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 390px) {
  .brand__image {
    width: 184px;
  }

  .license-hero__facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .license-hero__facts li,
  .license-hero__facts li:first-child {
    padding: 0 0 0 12px;
    border-left: 1px solid rgba(231, 177, 80, 0.33);
  }

  .license-hero__facts span {
    margin-top: 3px;
  }

  .license-document__mark {
    width: 38px;
  }
}

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

  html.motion-ready [data-reveal] {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
  }
}
