:root {
  --navy: #091421;
  --navy-2: #0f2237;
  --gold: #c9a45c;
  --gold-dark: #a9853e;
  --paper: #f5f1e8;
  --white: #ffffff;
  --text: #182231;
  --muted: #677181;
  --border: rgba(201, 164, 92, 0.28);
  --shadow: 0 24px 80px rgba(9, 20, 33, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 20, 33, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header__content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(201, 164, 92, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

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

.btn--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.94rem;
  flex-shrink: 0;
}

.btn--full {
  width: 100%;
}

.btn-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 164, 92, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -220px -10%;
  height: 310px;
  background: var(--paper);
  transform: rotate(-3deg);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.14);
  border: 1px solid rgba(201, 164, 92, 0.36);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  line-height: 1.18;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 32px 0 26px;
  flex-wrap: wrap;
}

.trust-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-list span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.hero__card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(201, 164, 92, 0.36);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.26);
  filter: blur(15px);
}

.hero__card h2,
.hero__card p,
.hero__card ul,
.hero__card a,
.contact-mini {
  position: relative;
  z-index: 1;
}

.hero__card p {
  color: rgba(255, 255, 255, 0.74);
}

.tag {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.contact-mini {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-mini strong {
  color: var(--gold);
}

.contact-mini span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 78px 0;
}

.section--white {
  background: var(--white);
}

.section__intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.section__intro p {
  color: var(--muted);
}

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

.lawyers {
  grid-template-columns: 1.25fr 0.75fr;
}

.feature,
.step,
.lawyer-card,
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(9, 20, 33, 0.06);
}

.feature,
.step,
.lawyer-card {
  padding: 26px;
}

.feature__icon,
.step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.feature p,
.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.problem {
  background:
    linear-gradient(rgba(9, 20, 33, 0.88), rgba(9, 20, 33, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(201, 164, 92, 0.26), transparent 30%);
  color: var(--white);
}

.problem__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.problem__text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.about {
  background: var(--paper);
}

.lawyer-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.lawyer-role {
  color: var(--muted);
  font-weight: 800;
  margin-top: -4px;
}

.lawyer-card strong {
  display: block;
  margin: 18px 0 10px;
}

.lawyer-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.lawyer-card li + li {
  margin-top: 6px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.contact-strip div {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.contact-strip strong,
.contact-strip a {
  display: block;
}

.contact-strip strong {
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-strip a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.faq {
  max-width: 880px;
}

.faq details {
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  background: var(--paper);
}

.final-cta__box {
  padding: 46px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 164, 92, 0.3), transparent 35%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta__box p:not(.eyebrow) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.74);
}

.final-contacts {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #082011;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 34px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 22px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--white);
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.footer__notice {
  padding-top: 20px;
  font-size: 0.88rem;
}

.footer__notice p + p {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .header__content {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .btn--small {
    width: 100%;
  }

  .hero {
    padding: 52px 0 76px;
  }

  .hero__grid,
  .problem__grid,
  .features,
  .steps,
  .lawyers,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .hero__card {
    padding: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .final-cta__box {
    padding: 32px 22px;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
  }
}
