:root {
  --ink: #10242d;
  --muted: #5c6870;
  --line: #dfe7e9;
  --paper: #fffdf8;
  --soft: #f5f0e6;
  --teal: #174e54;
  --teal-2: #2f7b78;
  --gold: #d99b3d;
  --rose: #b95d4a;
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(16, 36, 45, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mods-point-page {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.mp-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.mp-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(223, 231, 233, 0.82);
  backdrop-filter: blur(16px);
}

.mp-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.mp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  color: var(--ink);
  text-decoration: none;
}

.mp-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;

}

.mp-brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0;
}

.mp-brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: -2px;
}

.mp-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-inline-start: auto;
}

.mp-links a,
.mp-lang {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.mp-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  color: #fff !important;
  background: var(--teal);
}

.mp-lang-group {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mp-lang {
  border: 0;
  border-radius: 6px;
  background: transparent;
  min-width: 42px;
  min-height: 34px;
  cursor: pointer;
}

.mp-lang.is-active {
  color: #fff;
  background: var(--ink);
}

.mp-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 44px;
  align-items: center;
  padding: 44px 0 72px;
}

.mp-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mp-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.mp-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.mp-lead {
  margin: 0;
  color: #34454d;
  font-size: clamp(18px, 2.1vw, 22px);
  max-width: 650px;
}

.mp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.mp-btn-primary {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.mp-hero-media {
  position: relative;
}

.mp-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mp-fact-strip {
  width: min(1020px, calc(100% - 32px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(16, 36, 45, 0.08);
  overflow: hidden;
}

.mp-fact {
  padding: 22px 24px;
  border-inline-end: 1px solid var(--line);
}

.mp-fact:last-child {
  border-inline-end: 0;
}

.mp-fact strong {
  display: block;
  font-size: 23px;
  line-height: 1.15;
}

.mp-fact span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 5px;
}

.mp-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.mp-section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.mp-section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.mp-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.mp-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mp-service {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mp-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal-2);
  margin-bottom: 18px;
}

.mp-service:nth-child(2) .mp-icon {
  background: var(--gold);
}

.mp-service:nth-child(3) .mp-icon {
  background: var(--rose);
}

.mp-service:nth-child(4) .mp-icon {
  background: var(--ink);
}

.mp-service h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.mp-service p {
  font-size: 15px;
}

.mp-band {
  background: var(--soft);
}

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

.mp-step {
  padding: 0 24px 0 0;
}

.mp-step strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.mp-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.mp-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.mp-contact-panel,
.mp-map-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mp-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.mp-contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.mp-contact-item svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #fff;
  border-radius: 8px;
  background: var(--teal);
}

.mp-contact-item a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.mp-map-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(145deg, var(--ink), var(--teal-2));
}

.mp-map-panel p,
.mp-map-panel .mp-address {
  color: rgba(255, 255, 255, 0.84);
}

.mp-address {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 850;
}

.mp-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.mp-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mp-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38);
  text-decoration: none;
}

.mp-whatsapp svg {
  width: 30px;
  height: 30px;
}

[dir="rtl"] .mp-brand,
[dir="rtl"] .mp-contact-item {
  direction: rtl;
}

[dir="rtl"] .mp-kicker::before {
  order: 2;
}

[dir="rtl"] .mp-step {
  padding: 0 0 0 24px;
}

@media (max-width: 980px) {
  .mp-nav {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .mp-brand {
    min-width: 0;
  }

  .mp-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .mp-hero,
  .mp-contact {
    grid-template-columns: 1fr;
  }

  .mp-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .mp-services,
  .mp-process,
  .mp-fact-strip {
    grid-template-columns: 1fr;
  }

  .mp-fact {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .mp-fact:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .mp-links a:not(.mp-link-pill) {
    display: none;
  }

  .mp-hero h1 {
    font-size: 42px;
  }

  .mp-actions {
    flex-direction: column;
  }

  .mp-btn {
    width: 100%;
  }

  .mp-section {
    padding: 64px 0;
  }
}
