:root {
  --navy: #0f2537;
  --ink: #17212b;
  --muted: #64717d;
  --gold: #c49a45;
  --gold-dark: #9a762f;
  --line: #d9e0e6;
  --paper: #f7f8f6;
  --white: #ffffff;
  --green: #178a4a;
  --shadow: 0 18px 45px rgba(15, 37, 55, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 37, 55, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
}

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

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314150;
  font-size: 14px;
}

.desktop-nav a,
.header-cta,
.text-link {
  text-decoration: none;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--gold-dark);
}

.header-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 25, 38, 0.95) 0%, rgba(11, 25, 38, 0.82) 42%, rgba(11, 25, 38, 0.24) 100%),
    linear-gradient(0deg, rgba(11, 25, 38, 0.58), rgba(11, 25, 38, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding: 64px 0 84px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  max-width: 680px;
  margin: 28px 0;
}

.hero-checks span,
.check-list li {
  position: relative;
  padding-left: 25px;
}

.hero-checks span::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "\2713";
  font-weight: 800;
}

.hero-actions,
.final-actions,
.center-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(23, 138, 74, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button.dark {
  color: var(--navy);
  border-color: rgba(15, 37, 55, 0.28);
}

.button:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.legal-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.practice-copy p,
.about p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.problem-grid,
.feature-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.problem-panel,
.feature-grid article,
.location-grid article,
.responsible {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.problem-panel {
  padding: clamp(24px, 3vw, 38px);
}

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

.center-action {
  justify-content: center;
  margin-top: 30px;
}

.practice {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 620px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--white);
}

.practice.reverse {
  direction: rtl;
  background: #eef2f0;
}

.practice.reverse > * {
  direction: ltr;
}

.practice-copy {
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-dark);
  font-weight: 800;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  background: #f9faf8;
  border-left: 4px solid var(--gold);
  color: #283744;
  font-weight: 700;
}

.differentials {
  background: var(--navy);
  color: var(--white);
}

.differentials .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid article {
  min-height: 180px;
  padding: 28px;
  color: var(--ink);
}

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

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.responsible {
  padding: 28px;
}

.responsible span,
.responsible small {
  display: block;
  color: var(--muted);
}

.responsible strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  font-size: 25px;
}

.locations {
  background: #ffffff;
}

.location-grid article {
  padding: 30px;
}

.location-grid p {
  margin-bottom: 6px;
  color: var(--muted);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 11px 16px;
  color: var(--navy);
  border: 1px solid rgba(15, 37, 55, 0.22);
  font-weight: 800;
  text-decoration: none;
}

.map-link:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 800;
}

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

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-actions {
  justify-content: flex-end;
  max-width: 520px;
}

.final-actions span {
  width: 100%;
  color: var(--muted);
  text-align: right;
}

.ethics-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(23, 138, 74, 0.34);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 72px 0 76px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 25, 38, 0.96), rgba(11, 25, 38, 0.68));
  }

  .problem-grid,
  .feature-grid,
  .location-grid,
  .practice,
  .about,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .practice {
    padding-left: 18px;
    padding-right: 18px;
  }

  .final-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .final-actions span {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-checks,
  .service-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .map-link {
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
