* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --ink: #151922;
  --muted: #667085;
  --navy: #10213f;
  --navy-dark: #08152c;
  --gold: #c6a24a;
  --gold-soft: #f5edd7;
  --soft: #f7f8fb;
  --line: #e7eaf0;
  --shadow: 0 22px 60px rgba(16, 33, 63, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 28px));
  margin: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
}

.nav-menu a:hover {
  background: var(--gold-soft);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 55%, #ffffff 100%);
}

.decor {
  position: absolute;
  border-radius: 40px;
  border: 1px solid rgba(16, 33, 63, 0.08);
  transform: rotate(-14deg);
}

.decor-1 {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 110px;
  background: rgba(198, 162, 74, 0.12);
}

.decor-2 {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: 60px;
  background: rgba(16, 33, 63, 0.04);
}

.hero-content {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  padding: 78px 0;
}

.label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.subtitle {
  margin-top: 22px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid transparent;
}

.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(16, 33, 63, 0.22);
}

.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.info-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 14px;
  max-width: 620px;
}

.info-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.85);
}

.info-box span,
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.info-box strong,
.contact-list strong {
  display: block;
  color: var(--navy);
  margin-top: 4px;
}

.hero-panel {
  min-height: 430px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-panel:after {
  content: "⚖";
  position: absolute;
  right: -12px;
  bottom: -72px;
  font-size: 13rem;
  color: rgba(255,255,255,0.06);
}

.panel-line {
  width: 78px;
  height: 5px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-panel p {
  color: var(--gold-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.hero-panel ul {
  list-style: none;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-panel li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.text-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

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

.center p:not(.label) {
  color: var(--muted);
  margin-top: 14px;
}

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

.card {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(16, 33, 63, 0.06);
  position: relative;
  overflow: hidden;
}

.card:after {
  content: "";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold-soft);
  position: absolute;
  right: -40px;
  bottom: -40px;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.detail-card {
  min-height: 350px;
  padding: 42px;
  border-radius: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.detail-card.dark {
  background: var(--navy);
  border-color: var(--navy);
}

.detail-card.dark h2 {
  color: var(--white);
}

.tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags span {
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.dark .tags span {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.14);
}

.strip {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
}

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

.strip-grid div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.strip-grid span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
}

.contact {
  padding: 84px 0;
  background: radial-gradient(circle at 12% 18%, rgba(198, 162, 74, 0.15), transparent 22%), #ffffff;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.contact-box p:not(.label) {
  margin-top: 16px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a:not(.btn) {
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.82);
}

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

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1f9f55;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(31,159,85,0.3);
}

@media (max-width: 980px) {
  .hero-content,
  .two-columns,
  .detail-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
  }

  .hero-content {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .info-row,
  .cards,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .detail-card,
  .contact-box,
  .text-card {
    padding: 26px;
    border-radius: 24px;
  }

  .section,
  .contact {
    padding: 60px 0;
  }

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

  .whatsapp-float {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
