:root {
  --bg: #ffffff;
  --ink: #10131a;
  --muted: #626b7a;
  --navy: #111c35;
  --gold: #c49a45;
  --soft: #f6f7fb;
  --line: #e7e9ef;
  --shadow: 0 24px 70px rgba(17, 28, 53, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #24365f);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(17, 28, 53, .2);
}
.brand strong { display: block; font-size: 15px; line-height: 1.15; }
.brand small { color: var(--muted); font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; color: #343b49; }
.nav-links a:hover { color: var(--gold); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at top left, rgba(196,154,69,.16), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f9fafc 100%);
}
.hero-bg-shape { position: absolute; border-radius: 999px; border: 1px solid rgba(196,154,69,.24); }
.hero-bg-shape.one { width: 360px; height: 360px; right: -120px; top: 80px; }
.hero-bg-shape.two { width: 220px; height: 220px; left: -70px; bottom: 20px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.eyebrow::before, .section-label::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 78px); line-height: .96; margin-bottom: 16px; color: var(--navy); letter-spacing: -0.05em; }
.hero-subtitle { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--gold); margin-bottom: 18px; }
.hero-text { font-size: 19px; color: #424957; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--navy); color: #fff; box-shadow: 0 16px 30px rgba(17, 28, 53, .22); }
.btn.secondary { border-color: var(--line); color: var(--navy); background: #fff; }
.hero-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.justice-icon { width: 82px; height: 82px; border-radius: 24px; display: grid; place-items: center; background: #f3efe5; color: var(--gold); font-size: 42px; margin-bottom: 22px; }
.hero-card h2 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.info-line { display: flex; justify-content: space-between; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.info-line span { color: var(--muted); }
.info-line strong { text-align: right; color: var(--navy); }

.section { padding: 82px 0; }
.soft { background: var(--soft); }
.split-section { display: grid; grid-template-columns: 1fr .8fr; gap: 42px; align-items: center; }
.section h2, .location-card h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.07; color: var(--navy); margin: 12px 0 18px; letter-spacing: -0.035em; }
.section p { color: #4d5565; font-size: 17px; }
.quote-box { border-radius: var(--radius); padding: 34px; background: linear-gradient(135deg, var(--navy), #21345f); color: #fff; box-shadow: var(--shadow); }
.quote-box p { color: #fff; font-size: 24px; font-weight: 800; margin: 0; }
.section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-heading .section-label::before { display: none; }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 44px rgba(17, 28, 53, .08);
}
.service-card.featured { border-color: rgba(196,154,69,.55); }
.card-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: #f5f0e8; color: var(--gold); font-size: 30px; font-weight: 900; margin-bottom: 18px; }
.service-card h3 { font-size: 25px; color: var(--navy); margin-bottom: 12px; }
ul { margin: 20px 0 0; padding: 0; list-style: none; }
li { padding: 10px 0 10px 28px; position: relative; border-top: 1px solid var(--line); color: #3d4554; }
li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; }
.step span { color: var(--gold); font-weight: 900; font-size: 32px; }
.step h3 { color: var(--navy); margin: 10px 0; }
.step p { margin-bottom: 0; }

.location-section { padding: 72px 0; background: linear-gradient(135deg, #111c35, #25375f); }
.location-card { display: flex; justify-content: space-between; align-items: center; gap: 28px; background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.location-card p { color: var(--muted); margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 34px; align-items: center; }
.contact-panel { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-panel h3 { color: var(--navy); font-size: 26px; margin-bottom: 8px; }
.phone-link { display: inline-flex; margin-top: 14px; color: #fff; background: var(--gold); padding: 12px 20px; border-radius: 999px; font-weight: 900; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #1f8f4d;
  color: #fff;
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(31,143,77,.32);
}
.footer { padding: 30px 0; background: #0f172a; color: #fff; }
.footer-content { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer p { margin: 0; color: rgba(255,255,255,.82); }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split-section, .cards-grid, .steps, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .location-card { flex-direction: column; align-items: flex-start; }
  .info-line { flex-direction: column; }
  .info-line strong { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .hero-card, .quote-box, .service-card, .step, .location-card, .contact-panel { padding: 24px; border-radius: 22px; }
  .footer-content { display: block; }
}
