:root {
  --court-black: #07133f;
  --navy-2: #0b1d57;
  --navy-3: #1d327d;
  --court-brown: #1f316d;
  --gold: #d1a93d;
  --gold-2: #f3d26a;
  --gold-3: #fff1b0;
  --maroon: #243b95;
  --ivory: #f8f9ff;
  --cream: #eef2ff;
  --white: #ffffff;
  --text: #0b1d57;
  --muted: #5f6685;
  --border: rgba(7, 19, 63, 0.12);
  --shadow: 0 28px 90px rgba(7, 19, 63, 0.16);
  --shadow-dark: 0 38px 120px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --transition: all .42s var(--ease);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 9% 0%, rgba(184, 138, 45, .14), transparent 28%),
    radial-gradient(circle at 91% 8%, rgba(111, 29, 27, .08), transparent 30%),
    linear-gradient(180deg, #f8f9ff, #eef2ff);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1200px, calc(100% - 34px));
  margin: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(184, 138, 45, .12);
  border: 1px solid rgba(184, 138, 45, .28);
  color: #203587;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--court-black);
  margin-bottom: 16px;
}

.section-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  white-space: nowrap;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transition: .7s var(--ease);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(120%) skewX(-16deg);
}

.btn-primary {
  color: #100b05;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, .8), transparent 22%),
    linear-gradient(135deg, #cba13c, var(--gold-2) 55%, #b98b22);
  box-shadow: 0 18px 50px rgba(184, 138, 45, .38);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 72px rgba(184, 138, 45, .48);
}

.btn-dark {
  background: var(--court-black);
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
}

.btn-dark:hover {
  background: var(--navy-3);
  transform: translateY(-4px);
}

.btn-glass {
  background: rgba(255, 255, 255, .13);
  color: var(--white);
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(18px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-4px);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 0%;
  height: 4px;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--maroon));
  box-shadow: 0 0 20px rgba(215, 181, 109, .6);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(184, 138, 45, .11), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: .8;
  mix-blend-mode: multiply;
}

/* TOP BAR */
.topbar {
  position: relative;
  z-index: 80;
  background: linear-gradient(90deg, #061038, #0b1d57 52%, #132a75);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  border-bottom: 1px solid rgba(215, 181, 109, .18);
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar i {
  color: var(--gold-2);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  transition: var(--transition);
  background: rgba(248, 249, 255, .88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(74, 47, 24, .12);
}

.site-header.scrolled {
  background: rgba(248, 249, 255, .97);
  box-shadow: 0 18px 58px rgba(11, 16, 32, .13);
}

.header-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  position: relative;
  z-index: 102;
}


.brand-logo-img {
  width: 200px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(7, 19, 63, .18));
}

.brand.has-logo {
  gap: 10px;
}

.brand.has-logo .brand-mark,
.brand.has-logo .brand-text {
  display: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  color: #100b05;
  font-family: "Marcellus", serif;
  font-size: 30px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .85), transparent 24%),
    linear-gradient(135deg, #cba13c, #d7b56d 55%, #b98b22);
  box-shadow: 0 18px 40px rgba(184, 138, 45, .3);
  position: relative;
  isolation: isolate;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px solid rgba(184, 138, 45, .45);
  animation: brandPulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes brandPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .35;
  }

  50% {
    transform: scale(1.14);
    opacity: .05;
  }
}

.brand-text strong {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--court-black);
}

.brand-text span {
  display: block;
  margin-top: 4px;
  color: #203587;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mobile-menu-overlay {
  display: none;
}

.navbar-shell {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(74, 47, 24, .12);
  background: rgba(255, 255, 255, .58);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(11, 16, 32, .06);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
}

.navbar a,
.nav-drop-btn {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  color: #111a45;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active,
.nav-drop:hover .nav-drop-btn {
  background: rgba(184, 138, 45, .14);
  color: var(--court-black);
}

.nav-drop {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: min(860px, calc(100vw - 36px));
  transform: translate(-50%, 16px) scale(.98);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: 30px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(215, 181, 109, .16), transparent 32%),
    rgba(255, 250, 240, .96);
  border: 1px solid rgba(184, 138, 45, .22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.nav-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  min-width: 190px;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: 22px;
  padding: 8px;
  background: rgba(255, 250, 240, .97);
  border: 1px solid rgba(184, 138, 45, .22);
  box-shadow: 0 22px 56px rgba(11, 16, 32, .14);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 6px;
  z-index: 4;
}

.nav-submenu a {
  width: 100%;
  border-radius: 15px;
}

.nav-drop:hover .mega-menu,
.nav-drop:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.mega-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(74, 47, 24, .09);
  background:
    radial-gradient(circle at top right, rgba(184, 138, 45, .14), transparent 30%),
    #f8f9ff;
  transition: var(--transition);
}

.mega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(11, 16, 32, .1);
}

.mega-card i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--court-black);
  color: var(--gold-2);
  margin-bottom: 12px;
}

.mega-card strong {
  display: block;
  color: var(--court-black);
  margin-bottom: 5px;
}

.mega-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 102;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(74, 47, 24, .15);
  background: var(--white);
  color: var(--court-black);
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(11, 16, 32, .08);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 11, 20, .98), rgba(31, 41, 55, .9)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80") center/cover;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(184, 138, 45, .34), transparent 28%),
    radial-gradient(circle at 14% 76%, rgba(111, 29, 27, .28), transparent 30%),
    linear-gradient(90deg, rgba(7, 11, 20, .98), rgba(7, 11, 20, .74), rgba(17, 24, 39, .92));
  z-index: -4;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 82%, transparent);
  animation: gridFlow 20s linear infinite;
  opacity: .72;
  z-index: -3;
}

@keyframes gridFlow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 72px 72px;
  }
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .14;
  z-index: -2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .2) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, .16) 0 1px, transparent 1px);
  background-size: 26px 26px, 42px 42px;
  animation: noiseMove 10s steps(5) infinite;
}

@keyframes noiseMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-2%, 1%);
  }

  50% {
    transform: translate(1%, -2%);
  }

  75% {
    transform: translate(2%, 1%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hero-wrap {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
  padding: 68px 0 78px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--gold-2);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp .9s var(--ease) both;
}

.hero h1 {
  max-width: 790px;
  font-family: "Marcellus", serif;
  font-size: clamp(22px, 3vw, 38px);
  line-height: .94;
  letter-spacing: -.07em;
  margin-bottom: 24px;
  animation: fadeUp .9s var(--ease) .08s both;
}

.hero h1 .gold-word {
  display: inline-block;
  position: relative;
  color: var(--gold-2);
  text-shadow: 0 0 28px rgba(215, 181, 109, .25);
}

.hero h1 .gold-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 45, .55), transparent);
  z-index: -1;
  animation: underlineShine 2.6s ease-in-out infinite;
}

@keyframes underlineShine {

  0%,
  100% {
    transform: scaleX(.75);
    opacity: .35;
  }

  50% {
    transform: scaleX(1);
    opacity: .85;
  }
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: .8em;
  background: var(--gold-2);
  border-radius: 999px;
  margin-left: 4px;
  animation: blink .75s step-end infinite;
  transform: translateY(7px);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.82;
  margin-bottom: 30px;
  animation: fadeUp .9s var(--ease) .16s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 34px;
  animation: fadeUp .9s var(--ease) .24s both;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 15px;
  animation: fadeUp .9s var(--ease) .32s both;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 900;
}

.trust-pill i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO LEGAL ANIMATION */
.legal-stage {
  position: relative;
  min-height: 570px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(215, 181, 109, .28), transparent 23%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .14), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(24px);
  transform-style: preserve-3d;
  transition: transform .14s ease-out;
  animation: stageIn 1.1s var(--ease) .28s both;
  isolation: isolate;
}

@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(35px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.legal-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(215, 181, 109, .16);
  pointer-events: none;
}

.legal-stage::after {
  content: "";
  position: absolute;
  width: 170%;
  height: 170%;
  left: -35%;
  top: -35%;
  background:
    conic-gradient(from 90deg, transparent, rgba(215, 181, 109, .18), transparent, rgba(255, 255, 255, .08), transparent);
  animation: cosmicRotate 17s linear infinite;
  z-index: -2;
}

@keyframes cosmicRotate {
  to {
    transform: rotate(360deg);
  }
}

.constellation {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .9;
}

.constellation span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 18px rgba(215, 181, 109, .8);
  animation: starPulse 3s ease-in-out infinite;
}

.constellation span:nth-child(1) {
  left: 14%;
  top: 20%;
  animation-delay: .2s;
}

.constellation span:nth-child(2) {
  left: 28%;
  top: 68%;
  animation-delay: .9s;
}

.constellation span:nth-child(3) {
  left: 72%;
  top: 23%;
  animation-delay: .5s;
}

.constellation span:nth-child(4) {
  left: 84%;
  top: 64%;
  animation-delay: 1.2s;
}

.constellation span:nth-child(5) {
  left: 50%;
  top: 13%;
  animation-delay: 1.8s;
}

.constellation span:nth-child(6) {
  left: 62%;
  top: 82%;
  animation-delay: .3s;
}

@keyframes starPulse {

  0%,
  100% {
    transform: scale(.8);
    opacity: .35;
  }

  50% {
    transform: scale(1.65);
    opacity: 1;
  }
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(215, 181, 109, .22);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit.one {
  width: 370px;
  height: 370px;
  box-shadow: inset 0 0 60px rgba(184, 138, 45, .08), 0 0 80px rgba(184, 138, 45, .08);
  animation: orbitOne 9s ease-in-out infinite;
}

.orbit.two {
  width: 480px;
  height: 480px;
  border-style: dashed;
  opacity: .58;
  animation: orbitTwo 13s linear infinite;
}

.orbit.three {
  width: 250px;
  height: 250px;
  opacity: .45;
  animation: orbitThree 7s ease-in-out infinite;
}

@keyframes orbitOne {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(10deg) scale(1.04);
  }
}

@keyframes orbitTwo {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitThree {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(.94);
  }
}

.law-book {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 280px;
  height: 210px;
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  animation: bookFloat 5.2s ease-in-out infinite;
  z-index: 4;
}

@keyframes bookFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-18deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-14deg) translateY(-18px);
  }
}

.book-cover {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 20%),
    linear-gradient(145deg, #08164a, #122a78 48%, #061038);
  box-shadow: 24px 34px 70px rgba(0, 0, 0, .45), inset 0 0 0 2px rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  transform: translateZ(18px);
  overflow: hidden;
}

.book-cover::before {
  content: "LAW";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: var(--gold-2);
  font-family: "Marcellus", serif;
  font-size: 54px;
  letter-spacing: .12em;
  text-shadow: 0 0 30px rgba(215, 181, 109, .35);
}

.book-cover::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 34px;
  bottom: 34px;
  border: 2px solid rgba(215, 181, 109, .55);
  border-radius: 10px;
}

.book-pages {
  position: absolute;
  left: 10px;
  right: -14px;
  bottom: -22px;
  height: 42px;
  transform: translateZ(-3px) skewX(-18deg);
  border-radius: 0 0 16px 16px;
  background: repeating-linear-gradient(180deg, #fff7dc 0 4px, #ead8aa 4px 6px);
  box-shadow: 16px 22px 45px rgba(0, 0, 0, .28);
}

.book-side {
  position: absolute;
  top: 12px;
  right: -30px;
  width: 34px;
  height: 205px;
  border-radius: 0 14px 14px 0;
  background: linear-gradient(180deg, #051038, #0d2262);
  transform: translateZ(4px) skewY(40deg);
  opacity: .9;
}

.scale-mini {
  position: absolute;
  left: 51%;
  top: 25%;
  width: 160px;
  height: 170px;
  transform: translateX(-50%);
  z-index: 6;
  animation: scaleFloat 4s ease-in-out infinite;
}

@keyframes scaleFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scale-mini .pillar {
  position: absolute;
  left: 50%;
  top: 38px;
  width: 8px;
  height: 104px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(#f1dfaa, #cba13c);
  box-shadow: 0 0 24px rgba(215, 181, 109, .35);
}

.scale-mini .beam {
  position: absolute;
  left: 50%;
  top: 54px;
  width: 150px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b98b22, #f1dfaa, #b98b22);
  transform: translateX(-50%) rotate(-4deg);
  animation: miniBeam 3s ease-in-out infinite;
}

@keyframes miniBeam {

  0%,
  100% {
    transform: translateX(-50%) rotate(-4deg);
  }

  50% {
    transform: translateX(-50%) rotate(4deg);
  }
}

.scale-mini .top {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 32px;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #f1dfaa, #cba13c);
}

.scale-mini .base {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 108px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(135deg, #b98b22, #f1dfaa, #b98b22);
}

.scale-pan-mini {
  position: absolute;
  top: 73px;
  width: 54px;
  height: 48px;
  border-bottom: 15px solid #c39a4a;
  border-radius: 0 0 50px 50px;
  animation: miniPan 3s ease-in-out infinite;
}

.scale-pan-mini.left {
  left: 7px;
}

.scale-pan-mini.right {
  right: 7px;
  animation-delay: -1.5s;
}

.scale-pan-mini::before,
.scale-pan-mini::after {
  content: "";
  position: absolute;
  top: -23px;
  width: 2px;
  height: 43px;
  background: rgba(241, 223, 170, .9);
}

.scale-pan-mini::before {
  left: 12px;
  transform: rotate(18deg);
}

.scale-pan-mini::after {
  right: 12px;
  transform: rotate(-18deg);
}

@keyframes miniPan {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.gavel {
  position: absolute;
  right: 82px;
  bottom: 115px;
  width: 170px;
  height: 100px;
  z-index: 7;
  transform: rotate(-16deg);
  animation: gavelTap 4.8s ease-in-out infinite;
  transform-origin: 78% 65%;
}

@keyframes gavelTap {

  0%,
  72%,
  100% {
    transform: rotate(-16deg) translateY(0);
  }

  82% {
    transform: rotate(-27deg) translateY(8px);
  }

  90% {
    transform: rotate(-12deg) translateY(-5px);
  }
}

.gavel-head {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 84px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #152a67, #d7b56d, #12245e);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
}

.gavel-handle {
  position: absolute;
  left: 18px;
  top: 52px;
  width: 126px;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #12245e, #c69b51, #08143f);
  transform: rotate(-32deg);
  transform-origin: right;
}

.legal-chip {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .2);
}

.legal-chip i {
  color: var(--gold-2);
  font-size: 20px;
}

.chip-one {
  left: 34px;
  top: 78px;
  animation: chipOne 5s ease-in-out infinite;
}

.chip-two {
  right: 32px;
  top: 128px;
  animation: chipTwo 6s ease-in-out infinite;
}

.chip-three {
  left: 56px;
  bottom: 86px;
  animation: chipThree 5.6s ease-in-out infinite;
}

@keyframes chipOne {

  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }

  50% {
    transform: translate(14px, -18px) rotate(3deg);
  }
}

@keyframes chipTwo {

  0%,
  100% {
    transform: translate(0, 0) rotate(4deg);
  }

  50% {
    transform: translate(-18px, 14px) rotate(-3deg);
  }
}

@keyframes chipThree {

  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }

  50% {
    transform: translate(18px, 12px) rotate(-4deg);
  }
}

.floating-symbol {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 28px rgba(215, 181, 109, .9);
  z-index: 3;
  animation: symbolFloat 8s ease-in-out infinite;
}

.floating-symbol.s1 {
  left: 18%;
  top: 43%;
}

.floating-symbol.s2 {
  right: 19%;
  bottom: 31%;
  width: 9px;
  height: 9px;
  animation-delay: -2s;
  background: rgba(255, 255, 255, .8);
}

.floating-symbol.s3 {
  right: 33%;
  top: 16%;
  width: 7px;
  height: 7px;
  animation-delay: -4s;
}

@keyframes symbolFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: .55;
  }

  50% {
    transform: translateY(-46px) scale(1.5);
    opacity: 1;
  }
}

/* QUICK */
.quick-section {
  position: relative;
  z-index: 8;
  margin-top: -48px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 32px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(74, 47, 24, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.quick-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 23px;
  background:
    radial-gradient(circle at top right, rgba(184, 138, 45, .13), transparent 35%),
    linear-gradient(180deg, #f8f9ff, #eef2ff);
  border: 1px solid rgba(74, 47, 24, .08);
  overflow: hidden;
  transition: var(--transition);
}

.quick-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -42px;
  bottom: -42px;
  background: rgba(184, 138, 45, .16);
  transition: var(--transition);
}

.quick-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 54px rgba(11, 16, 32, .12);
}

.quick-card:hover::after {
  transform: scale(1.45);
}

.quick-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--court-black);
  color: var(--gold-2);
  font-size: 23px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.quick-card div:last-child {
  position: relative;
  z-index: 1;
}

.quick-card strong {
  display: block;
  color: var(--court-black);
  font-size: 15px;
  margin-bottom: 3px;
}

.quick-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

/* PRACTICE AREAS */
.practice {
  background:
    radial-gradient(circle at 8% 10%, rgba(184, 138, 45, .08), transparent 32%),
    #f8f9ff;
}

.head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 42px;
}

.head-row .section-head {
  margin-bottom: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.practice-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(74, 47, 24, .09);
  overflow: hidden;
  transition: var(--transition);
  isolation: isolate;
}

.practice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 80%) var(--my, 15%), rgba(215, 181, 109, .36), transparent 28%),
    linear-gradient(135deg, transparent, rgba(184, 138, 45, .04));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.practice-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -75px;
  bottom: -75px;
  border-radius: 50%;
  background: rgba(184, 138, 45, .12);
  transition: var(--transition);
  z-index: -1;
}

.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 138, 45, .36);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-card:hover::after {
  transform: scale(1.42);
}

.practice-icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold-2);
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, .2), transparent 24%), var(--court-black);
  font-size: 26px;
  box-shadow: 0 18px 40px rgba(11, 16, 32, .16);
}

.practice-card h3 {
  font-family: "Marcellus", serif;
  color: var(--court-black);
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -.025em;
}

.practice-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #203587;
  background: rgba(184, 138, 45, .13);
  font-size: 12px;
  font-weight: 900;
}

/* SERVICE PAGES */
.hero-services {
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 9% 0%, rgba(184, 138, 45, .14), transparent 28%),
    radial-gradient(circle at 91% 8%, rgba(111, 29, 27, .08), transparent 30%),
    linear-gradient(180deg, #f8f9ff, #eef2ff);
  position: relative;
  overflow: hidden;
}

.hero-services h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: 800px;
}

.service-detail {
  background: var(--white);
}

.service-detail.bg-alt {
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.service-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.service-visual {
  position: relative;
  min-height: 450px;
  animation: fadeUp .9s var(--ease) .1s both;
}

.service-image {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.service-content {
  animation: fadeUp .9s var(--ease) .15s both;
}

.service-content h2 {
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #243056;
  font-weight: 700;
  line-height: 1.7;
  font-size: 15px;
}

.service-list i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {

  .service-grid,
  .service-grid.reverse {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 300px;
    order: 2;
  }

  .service-content {
    order: 1;
  }
}

/* ABOUT */
.about {
  background: var(--white);
  overflow: hidden;
}

.about-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 590px;
}

.about-photo {
  position: absolute;
  inset: 0 40px 0 0;
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 11, 20, .05), rgba(7, 11, 20, .38)),
    url("https://images.unsplash.com/photo-1593115057322-e94b77572f20?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent, rgba(184, 138, 45, .18)),
    radial-gradient(circle at 80% 20%, rgba(215, 181, 109, .26), transparent 30%);
}

.about-panel {
  position: absolute;
  left: -16px;
  bottom: 42px;
  width: min(355px, 90%);
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 240, .92);
  border: 1px solid rgba(74, 47, 24, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.about-panel strong {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 36px;
  line-height: 1;
  color: var(--court-black);
  margin-bottom: 8px;
}

.about-panel span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
  font-weight: 800;
}

.about-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  list-style: none;
  color: #243056;
  font-weight: 700;
  line-height: 1.72;
}

.about-list i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat-card {
  padding: 20px;
  border-radius: 23px;
  background: var(--ivory);
  border: 1px solid rgba(74, 47, 24, .08);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(11, 16, 32, .08);
}

.stat-card strong {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 26px;
  color: var(--court-black);
  margin-bottom: 3px;
}

.stat-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

/* CONSULTATION */
.consult {
  background:
    radial-gradient(circle at 90% 20%, rgba(184, 138, 45, .13), transparent 30%),
    linear-gradient(180deg, #f8f9ff, #fff);
}

.consult-wrap {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.consult-info {
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(215, 181, 109, .22), transparent 34%),
    linear-gradient(135deg, var(--court-black), #1d327d);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.consult-info::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(215, 181, 109, .22);
  animation: orbitTwo 14s linear infinite;
}

.consult-info h2 {
  color: var(--white);
}

.consult-info p {
  color: rgba(255, 255, 255, .72);
}

.consult-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.consult-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  line-height: 1.6;
}

.consult-point i {
  color: var(--gold-2);
  margin-top: 4px;
}

.consult-form {
  padding: 28px;
  border-radius: 36px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(74, 47, 24, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #243056;
  font-size: 12px;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(74, 47, 24, .13);
  background: #f8f9ff;
  border-radius: 17px;
  padding: 14px 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 108px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184, 138, 45, .75);
  box-shadow: 0 0 0 5px rgba(184, 138, 45, .12);
  background: var(--white);
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  margin: 3px 0;
}

.consult-form .btn {
  width: 100%;
  border: 0;
}

/* WHY */
.why {
  background:
    linear-gradient(135deg, rgba(7, 11, 20, .96), rgba(31, 41, 55, .94)),
    url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(184, 138, 45, .32), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(111, 29, 27, .22), transparent 30%);
}

.why .container {
  position: relative;
  z-index: 2;
}

.why .section-title {
  color: var(--white);
}

.why .section-text {
  color: rgba(255, 255, 255, .72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  min-height: 252px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .085);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .13);
}

.why-card i {
  width: 56px;
  height: 56px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: rgba(215, 181, 109, .15);
  color: var(--gold-2);
  font-size: 25px;
  margin-bottom: 22px;
}

.why-card h3 {
  font-family: "Marcellus", serif;
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, .69);
  line-height: 1.75;
  font-size: 14px;
}

/* TEAM */
.team {
  background: #f8f9ff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  padding: 12px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(74, 47, 24, .09);
  box-shadow: 0 18px 55px rgba(11, 16, 32, .06);
  transition: var(--transition);
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.team-photo {
  height: 255px;
  border-radius: 25px;
  overflow: hidden;
  background: #eee;
  position: relative;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 11, 20, .34));
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-photo img {
  transform: scale(1.08);
}

.team-info {
  padding: 20px 12px 14px;
}

.team-info h3 {
  font-family: "Marcellus", serif;
  color: var(--court-black);
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: -.025em;
}

.team-info p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 13px;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(209, 169, 61, 0.10), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(7, 19, 63, 0.06), transparent 30%),
    var(--white);
}

.testimonial-slider {
  position: relative;
  margin-top: 42px;
  padding: 0 64px 58px;
}

.testimonial-track-wrap {
  overflow: hidden;
  border-radius: 36px;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 310px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(184, 138, 45, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8f9ff);
  border: 1px solid rgba(74, 47, 24, 0.08);
  box-shadow: 0 18px 55px rgba(11, 16, 32, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.review-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(209, 169, 61, 0.12);
  z-index: -1;
  transition: var(--transition);
}

.review-card::after {
  content: "“";
  position: absolute;
  right: 24px;
  top: 8px;
  font-family: "Marcellus", serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(209, 169, 61, 0.13);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(209, 169, 61, 0.32);
}

.review-card:hover::before {
  transform: scale(1.45);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 900;
}

.review-card p {
  position: relative;
  z-index: 2;
  color: #4f5879;
  line-height: 1.82;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--court-black), var(--gold));
  box-shadow: 0 12px 28px rgba(7, 19, 63, 0.18);
}

.review-user strong {
  display: block;
  color: var(--court-black);
}

.review-user span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

/* Slider arrows */
.testimonial-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(circle at top right, rgba(209, 169, 61, 0.22), transparent 38%),
    var(--court-black);
  color: var(--gold-2);
  font-size: 20px;
  box-shadow: 0 18px 45px rgba(7, 19, 63, 0.18);
  transition: var(--transition);
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #07133f;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* Dots */
.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(7, 19, 63, 0.18);
  transition: var(--transition);
}

.testimonial-dot.active {
  width: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 8px 20px rgba(209, 169, 61, 0.25);
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .testimonial-slider {
    padding: 0 0 58px;
  }

  .testimonial-track-wrap {
    border-radius: 28px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 300px;
    padding: 26px;
    border-radius: 28px;
  }

  .testimonial-nav {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .testimonial-nav:hover {
    transform: scale(1.06);
  }

  .testimonial-prev {
    left: calc(50% - 74px);
  }

  .testimonial-next {
    right: calc(50% - 74px);
  }

  .testimonial-dots {
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .review-card {
    padding: 22px;
    border-radius: 24px;
  }

  .review-card p {
    font-size: 13px;
  }

  .avatar {
    width: 44px;
    height: 44px;
  }
}
/* ARTICLES */
.articles {
  background:
    radial-gradient(circle at 85% 10%, rgba(184, 138, 45, .1), transparent 30%),
    #f8f9ff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(74, 47, 24, .08);
  box-shadow: 0 18px 55px rgba(11, 16, 32, .06);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.article-img {
  height: 220px;
  overflow: hidden;
  background: var(--court-black);
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .article-img img {
  transform: scale(1.08);
}

.article-content {
  padding: 25px;
}

.article-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(184, 138, 45, .13);
  color: #203587;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.article-content h3 {
  font-family: "Marcellus", serif;
  color: var(--court-black);
  font-size: 20px;
  line-height: 1.16;
  margin-bottom: 12px;
}

.article-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 18px;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--court-black);
  font-size: 14px;
  font-weight: 900;
}

/* CTA */
.cta {
  background: var(--white);
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 56px;
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 181, 109, .26), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(111, 29, 27, .26), transparent 32%),
    linear-gradient(135deg, var(--court-black), #1d327d);
  box-shadow: var(--shadow);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -220px;
  top: -220px;
  border: 1px solid rgba(215, 181, 109, .22);
  animation: orbitTwo 16s linear infinite;
}

.cta-content,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-family: "Marcellus", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 730px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.78;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* FOOTER */
.footer {
  background: #07133f;
  color: rgba(255, 255, 255, .72);
  padding: 74px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(184, 138, 45, .14), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(111, 29, 27, .16), transparent 26%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1.05fr;
  gap: 34px;
  margin-bottom: 38px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer h3 {
  font-family: "Marcellus", serif;
  font-size: 31px;
}

.footer p {
  line-height: 1.82;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--gold-2);
  margin-top: 4px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transition: var(--transition);
}

.socials a:hover {
  background: var(--gold);
  color: var(--court-black);
  transform: translateY(-4px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}

/* FLOATING */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 120;
  color: var(--white);
  font-size: 30px;
  background: linear-gradient(135deg, #25d366, #0faf56);
  box-shadow: 0 18px 48px rgba(37, 211, 102, .38);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .38), 0 18px 48px rgba(37, 211, 102, .38);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 18px 48px rgba(37, 211, 102, .38);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 18px 48px rgba(37, 211, 102, .38);
  }
}

.mobile-bottom-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 88;
    display: block;
    background:
      radial-gradient(circle at 80% 20%, rgba(184, 138, 45, .18), transparent 34%),
      rgba(7, 11, 20, .58);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .navbar-shell {
    position: fixed;
    top: 92px;
    right: 14px;
    left: auto;
    width: min(390px, calc(100% - 28px));
    height: auto;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    display: block;
    padding: 14px;
    border-radius: 30px;
    background:
      radial-gradient(circle at top right, rgba(215, 181, 109, .18), transparent 32%),
      linear-gradient(180deg, rgba(255, 250, 240, .98), rgba(245, 239, 226, .98));
    border: 1px solid rgba(184, 138, 45, .22);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .7);
    backdrop-filter: blur(26px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(28px) scale(.96);
    transform-origin: top right;
    transition: .42s cubic-bezier(.2, .8, .2, 1);
    z-index: 100;
  }

  .navbar-shell.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
  }

  .navbar {
    display: grid;
    gap: 8px;
    align-items: stretch;
  }

  .navbar::before {
    content: "Menu";
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 14px;
    color: var(--court-black);
    font-family: "Marcellus", serif;
    font-size: 28px;
    letter-spacing: -.04em;
    border-bottom: 1px solid rgba(74, 47, 24, .12);
    margin-bottom: 6px;
  }

  .navbar a,
  .nav-drop-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 18px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111a45;
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(74, 47, 24, .08);
    box-shadow: 0 10px 24px rgba(11, 16, 32, .04);
  }

  .navbar a::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    color: var(--gold);
    font-size: 13px;
  }

  .navbar a:hover,
  .navbar a.active,
  .nav-drop-btn:hover {
    background: linear-gradient(135deg, rgba(184, 138, 45, .18), rgba(255, 255, 255, .72));
    color: var(--court-black);
    border-color: rgba(184, 138, 45, .28);
    transform: translateX(3px);
  }

  .nav-drop {
    width: 100%;
  }

  .nav-drop:hover .mega-menu,
  .nav-drop:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
  }

  .mega-menu,
  .nav-submenu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .48);
    border: 1px solid rgba(74, 47, 24, .08);
    box-shadow: none;
  }

  .nav-submenu {
    min-width: 0;
  }

  .nav-drop.open .mega-menu,
  .nav-drop.open .nav-submenu {
    display: grid;
    animation: mobileDrop .32s ease both;
  }

  @keyframes mobileDrop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mega-card {
    padding: 14px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
    background: rgba(255, 250, 240, .86);
  }

  .mega-card i {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .mega-card strong {
    margin-bottom: 2px;
  }

  .mega-card span {
    font-size: 11px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-dark {
    display: none;
  }

  .hero-wrap,
  .about-wrap,
  .consult-wrap {
    grid-template-columns: 1fr;
  }

  .legal-stage {
    order: -1;
    min-height: 500px;
  }

  .quick-grid,
  .why-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-grid,
  .review-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .about-photo {
    right: 0;
  }
}

@media (max-width: 760px) {
  .cursor-glow {
    display: none;
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-wrap {
    height: 74px;
  }


  .brand-logo-img {
    width: 164px;
    max-height: 52px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 25px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text span {
    font-size: 9px;
  }

  .navbar-shell {
    top: 84px;
    right: 11px;
    width: calc(100% - 22px);
    max-height: calc(100vh - 104px);
    border-radius: 28px;
  }

  .navbar::before {
    font-size: 26px;
  }

  .navbar a,
  .nav-drop-btn {
    min-height: 52px;
    border-radius: 17px;
  }

  .hero {
    min-height: auto;
  }

  .hero-wrap {
    padding: 38px 0 92px;
    gap: 32px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .legal-stage {
    min-height: 390px;
    border-radius: 32px;
  }

  .orbit.one {
    width: 275px;
    height: 275px;
  }

  .orbit.two {
    width: 350px;
    height: 350px;
  }

  .orbit.three {
    width: 205px;
    height: 205px;
  }

  .law-book {
    width: 210px;
    height: 158px;
  }

  .book-cover::before {
    font-size: 39px;
  }

  .book-pages {
    height: 32px;
    bottom: -17px;
  }

  .book-side {
    height: 154px;
    right: -23px;
  }

  .scale-mini {
    width: 130px;
    height: 145px;
    top: 24%;
  }

  .scale-mini .beam {
    width: 124px;
  }

  .scale-pan-mini {
    width: 45px;
  }

  .gavel {
    width: 126px;
    right: 42px;
    bottom: 78px;
  }

  .legal-chip {
    padding: 11px 12px;
    font-size: 11px;
    border-radius: 16px;
  }

  .legal-chip i {
    font-size: 17px;
  }

  .chip-one {
    left: 14px;
    top: 52px;
  }

  .chip-two {
    right: 14px;
    top: 100px;
  }

  .chip-three {
    left: 18px;
    bottom: 48px;
  }

  .quick-section {
    margin-top: -64px;
  }

  .quick-grid,
  .practice-grid,
  .why-grid,
  .team-grid,
  .review-grid,
  .article-grid,
  .footer-grid,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .head-row {
    display: block;
  }

  .head-row .btn {
    margin-top: 20px;
  }

  .section {
    padding: 74px 0;
  }

  .about-visual {
    min-height: 440px;
  }

  .about-panel {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .consult-info,
  .consult-form {
    padding: 24px;
    border-radius: 30px;
  }

  .cta-box {
    padding: 34px 22px;
    border-radius: 32px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 130;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 9px;
    border-radius: 24px;
    background: rgba(255, 250, 240, .94);
    border: 1px solid rgba(74, 47, 24, .1);
    box-shadow: 0 20px 56px rgba(11, 16, 32, .2);
    backdrop-filter: blur(24px);
  }

  .mobile-bottom-bar a {
    min-height: 54px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--court-black);
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-bottom-bar a.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
  }

  .mobile-bottom-bar i {
    font-size: 19px;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .brand-logo-img {
    width: 142px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .legal-stage {
    min-height: 340px;
  }

  .law-book {
    width: 178px;
    height: 134px;
  }

  .book-cover::before {
    font-size: 32px;
  }

  .scale-mini {
    scale: .82;
  }

  .legal-chip span {
    display: none;
  }

  .legal-chip {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .gavel {
    width: 106px;
    right: 32px;
    bottom: 66px;
  }

  .section-title {
    font-size: 24px;
  }
}

.site-header{position:sticky;top:0;z-index:9999;}

/* POLICY PAGES */
.policy-breadcrumb {
  position: relative;
  padding: 84px 0 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 20%, rgba(209, 169, 61, .16), transparent 30%),
    linear-gradient(135deg, #050914, #080d1d 55%, #0b1024);
  overflow: hidden;
}

.policy-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .55;
}

.policy-breadcrumb-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--gold-2);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.policy-breadcrumb h1 {
  font-family: "Marcellus", serif;
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.policy-breadcrumb p {
  max-width: 720px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
}

.policy-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 900;
}

.policy-crumb a {
  color: var(--gold-2);
}

.policy-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(209, 169, 61, .1), transparent 30%),
    #f8f9ff;
}

.policy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 9px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 63, .08);
  box-shadow: 0 16px 45px rgba(7, 19, 63, .06);
}

.policy-sidebar a {
  padding: 12px 13px;
  border-radius: 16px;
  background: #f8f9ff;
  color: var(--court-black);
  font-size: 13px;
  font-weight: 900;
  transition: var(--transition);
}

.policy-sidebar a:hover {
  background: rgba(209, 169, 61, .16);
  transform: translateX(4px);
}

.policy-card {
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 63, .08);
  box-shadow: 0 18px 55px rgba(7, 19, 63, .07);
}

.policy-card section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(7, 19, 63, .08);
}

.policy-card h2 {
  font-family: "Marcellus", serif;
  color: var(--court-black);
  font-size: 28px;
  margin-bottom: 10px;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 700;
}

.policy-card a {
  color: #203587;
  font-weight: 900;
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .policy-breadcrumb h1 {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .policy-breadcrumb {
    padding: 58px 0 54px;
  }

  .policy-breadcrumb h1 {
    font-size: 32px;
  }

  .policy-card {
    padding: 24px;
    border-radius: 24px;
  }
}

/* FRONTEND FORM FIELD ERRORS */
.has-field-error input,
.has-field-error select,
.has-field-error textarea,
.has-field-error .file-upload {
  border-color: rgba(220, 38, 38, .72) !important;
  box-shadow: 0 0 0 5px rgba(220, 38, 38, .09) !important;
}

.frontend-field-error {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 6px 0 0;
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.frontend-field-error i {
  margin-top: 2px;
  color: #dc2626;
  font-size: 13px;
}

/* FRONTEND SUCCESS POPUP */
.frontend-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(209, 169, 61, .18), transparent 34%),
    rgba(5, 9, 20, .76);
  backdrop-filter: blur(14px);
}

.frontend-success-modal.is-hidden {
  display: none;
}

.frontend-success-card {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(209, 169, 61, .14), transparent 34%),
    #ffffff;
  border: 1px solid rgba(7, 19, 63, .1);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .34);
  text-align: center;
  overflow: hidden;
}

.frontend-success-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -96px;
  top: -96px;
  border-radius: 50%;
  background: rgba(209, 169, 61, .12);
}

.frontend-success-card > * {
  position: relative;
  z-index: 2;
}

.frontend-success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f8f9ff;
  color: var(--court-black);
  cursor: pointer;
  transition: var(--transition);
}

.frontend-success-close:hover {
  transform: rotate(6deg) scale(1.04);
  background: rgba(209, 169, 61, .16);
}

.frontend-success-icon {
  width: 76px;
  height: 76px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #07133f;
  font-size: 38px;
  box-shadow: 0 18px 42px rgba(209, 169, 61, .25);
}

.frontend-success-kicker {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(209, 169, 61, .14);
  color: #203587;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.frontend-success-card h2 {
  font-family: "Marcellus", serif;
  color: var(--court-black);
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.frontend-success-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 800;
  margin-bottom: 18px;
}

.frontend-success-contact {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: #f8f9ff;
  border: 1px solid rgba(7, 19, 63, .08);
  margin-bottom: 22px;
}

.frontend-success-contact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.frontend-success-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--court-black);
  font-size: 14px;
  font-weight: 900;
  word-break: break-word;
}

.frontend-success-contact i {
  color: var(--gold);
}

@media (max-width: 520px) {
  .frontend-success-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .frontend-success-card h2 {
    font-size: 29px;
  }

  .frontend-success-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    font-size: 32px;
  }
}
