:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
:root {
  --navy-950: #041c3b;
  --navy-900: #062756;
  --navy-800: #08346d;
  --blue-700: #0a4388;
  --green-600: #3a9e24;
  --green-500: #56b935;
  --orange-500: #ffad18;
  --ink: #10243c;
  --muted: #5b6878;
  --line: #dce4ec;
  --surface: #f4f8fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 35, 72, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(6, 39, 86, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 300px;
  max-width: 53vw;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-contact):hover {
  color: var(--green-600);
}

.nav-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 88% 17%, rgba(255, 173, 24, .2) 0 90px, transparent 91px),
    linear-gradient(135deg, #f7fbfe 0%, #eef6f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(58, 158, 36, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

.hero .eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 185, 53, .14);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.4rem, 5.6vw, 4.85rem);
}

h1 em {
  color: var(--navy-800);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.hero-text {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(8, 52, 109, .2);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(8, 52, 109, .25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--green-600);
}

.promise-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 17px;
}

.promise-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-kicker {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #82d862;
  font-weight: 900;
}

.promise-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #cde7c3;
  font-size: .92rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(58, 158, 36, .45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab6c2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.scope-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  color: var(--muted);
  background: var(--surface);
  border-left: 4px solid var(--green-500);
  border-radius: 4px 14px 14px 4px;
}

.scope-note strong {
  color: var(--navy-900);
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 20, 43, .22));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about .eyebrow {
  color: #8cdb70;
}

.about h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.process div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process span {
  color: var(--orange-500);
  font-weight: 900;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .91rem;
  line-height: 1.45;
}

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

.contact {
  background: #f4f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow, .service-area) {
  max-width: 490px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--navy-800);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--green-500);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  color: #fff;
  background: #168c45;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 140, 69, .2);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #11763a;
  transform: translateY(-1px);
}

.whatsapp-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-area {
  color: var(--green-600);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  outline: none;
}

.contact-form input {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(10, 67, 136, .1);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.form-note.is-success {
  color: #237516;
  font-weight: 800;
}

.form-note.is-error {
  color: #a12626;
  font-weight: 800;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.form-privacy a {
  padding: 0;
  color: var(--navy-800);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #03162f;
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-main div {
  display: grid;
}

.footer-main strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-main a {
  color: var(--white);
  font-weight: 700;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
}

.footer-legal div {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

dialog.dialog-wide {
  width: min(780px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(2, 18, 39, .72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
}

.dialog-inner h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.dialog-inner h3 {
  margin: 30px 0 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.dialog-inner p {
  margin: 0 0 14px;
}

.dialog-inner a {
  color: var(--blue-700);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 10px;
  font-size: .85rem;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 64px 0 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document a {
  color: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

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

  .hero {
    padding: 76px 0 86px;
  }

  .promise-card {
    max-width: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    max-width: 600px;
  }

  .about-photo {
    width: min(430px, 85vw);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 215px;
  }

  .nav-contact {
    padding: 9px 14px;
    font-size: .85rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .promise-card {
    padding: 26px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
