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

:root {
  --white: #ffffff;
  --ink: #111827;
  --text: #4b5563;
  --navy: #111a32;
  --gold: #b88943;
  --soft: #f7f3ed;
  --line: #e5e7eb;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

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

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(184, 137, 67, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.logo span {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.logo strong {
  font-size: 1rem;
}

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #283044;
}

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

.menu-btn {
  display: none;
  border: none;
  background: var(--navy);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.2rem;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  padding: 44px 0 76px;
}

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

.tag.light {
  color: #efd6ac;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--navy);
  margin-bottom: 24px;
}

.subtitle {
  max-width: 640px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: var(--text);
  margin-bottom: 30px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.actions.center {
  justify-content: center;
}

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

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

.btn.primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 16px 34px rgba(17, 26, 50, 0.24);
}

.btn.secondary {
  background: white;
  color: var(--navy);
  border-color: rgba(17, 26, 50, 0.18);
}

.btn.gold {
  background: var(--gold);
  color: white;
}

.phone-card {
  display: inline-block;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.phone-card small {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.phone-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
}

.hero-card {
  min-height: 475px;
  border-radius: 42px;
  padding: 38px;
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 137, 67, 0.24), transparent 34%),
    white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.justice-symbol {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 45px;
  background: var(--navy);
  color: white;
  font-size: 5rem;
  box-shadow: 0 20px 42px rgba(17, 26, 50, 0.22);
  margin-bottom: 30px;
}

.hero-card h2 {
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1.1;
}

.hero-card p {
  color: var(--gold);
  font-weight: 900;
  margin-top: 8px;
}

.mini-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.mini-locations span {
  background: var(--soft);
  color: var(--navy);
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
  text-align: center;
}

.section h2,
.coverage h2,
.cta-box h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section-text {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--text);
  font-size: 1.06rem;
}

.features,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.features article,
.area-card,
.contact-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.features span {
  color: var(--gold);
  font-weight: 900;
}

.features h3,
.area-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 12px 0 8px;
}

.features p,
.area-card p,
.contact-grid small {
  color: var(--text);
}

.icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.coverage {
  background: var(--navy);
  color: white;
  padding: 90px 16px;
}

.coverage-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.coverage p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}

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

.location-grid article {
  background: white;
  color: var(--ink);
  border-radius: 26px;
  padding: 30px;
}

.location-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--soft);
  color: var(--gold);
  font-weight: 900;
}

.location-grid h3 {
  margin-top: 16px;
  color: var(--navy);
  font-size: 1.4rem;
}

.cta-box {
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  padding: clamp(34px, 6vw, 70px);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 137, 67, 0.16), transparent 33%),
    white;
}

.cta-box p {
  color: var(--text);
  max-width: 650px;
  margin: 0 auto 26px;
}

.contact-grid {
  margin-top: 36px;
}

.contact-grid article {
  text-align: center;
}

.contact-grid small {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-grid strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: #198754;
  color: white;
  font-weight: 900;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(25, 135, 84, 0.32);
}

footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 34px 20px;
}

footer p {
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

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

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

  .nav-links.active {
    display: flex;
  }

  .hero-content,
  .coverage-wrap {
    grid-template-columns: 1fr;
  }

  .features,
  .area-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .logo strong {
    max-width: 190px;
    line-height: 1.1;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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