:root {
  --mw-site-primary: #082f49;
  --mw-site-secondary: #f47721;
  --mw-site-background: #fff;
  --mw-site-section-background: #f6f3ed;
  --mw-site-soft-background: #e9f4f8;
  --mw-site-text: #13202a;
  --mw-site-muted: #5c6b75;
  --mw-site-border: #d9e1e5;
  --navy-950: color-mix(in srgb, var(--mw-site-primary) 72%, #000);
  --navy-900: var(--mw-site-primary);
  --navy-800: color-mix(in srgb, var(--mw-site-primary) 88%, #fff);
  --navy-700: color-mix(in srgb, var(--mw-site-primary) 75%, #fff);
  --sky-100: var(--mw-site-soft-background);
  --orange-600: color-mix(in srgb, var(--mw-site-secondary) 82%, #000);
  --orange-500: var(--mw-site-secondary);
  --orange-400: color-mix(in srgb, var(--mw-site-secondary) 78%, #fff);
  --sand-100: var(--mw-site-section-background);
  --surface: var(--mw-site-background);
  --white: #fff;
  --ink: var(--mw-site-text);
  --muted: var(--mw-site-muted);
  --line: var(--mw-site-border);
  --on-dark-muted: color-mix(in srgb, #fff 72%, var(--mw-site-primary));
  --on-dark-soft: color-mix(in srgb, #fff 86%, var(--mw-site-primary));
  --green: #25d366;
  --shadow: 0 22px 60px color-mix(in srgb, var(--mw-site-primary) 13%, transparent);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

.mw-site-preview-bar {
  position: relative;
  z-index: 1001;
  padding: 8px 16px;
  color: var(--white);
  background: #111827;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.topbar {
  color: var(--on-dark-soft);
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
}

.topbar p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .15);
}

.site-header {
  position: relative;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 97%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 88px;
  gap: 30px;
}

.brand img,
.footer__brand img {
  width: 245px;
  height: auto;
}

.brand__text,
.footer__brand-text {
  color: var(--navy-900);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.footer__brand-text {
  color: var(--white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__phone {
  display: grid;
  text-align: right;
  line-height: 1.25;
}

.header__phone span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.header__phone a {
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.gallery__item:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 4px;
}

.button--compact {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 12px 26px color-mix(in srgb, var(--orange-500) 28%, transparent);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  box-shadow: 0 16px 34px color-mix(in srgb, var(--orange-500) 38%, transparent);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .15);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -90px;
  right: -60px;
  width: 360px;
  height: 220px;
  border: 55px solid color-mix(in srgb, var(--orange-500) 18%, transparent);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--navy-950) 97%, transparent) 0%, color-mix(in srgb, var(--navy-950) 84%, transparent) 35%, color-mix(in srgb, var(--navy-950) 22%, transparent) 70%, color-mix(in srgb, var(--navy-950) 8%, transparent) 100%),
    linear-gradient(0deg, color-mix(in srgb, var(--navy-950) 65%, transparent), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-block: 82px 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 9px;
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: color-mix(in srgb, var(--orange-400) 48%, #fff);
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 50%;
  font-size: 12px;
}

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

h1,
h2,
h3 {
  line-height: 1.06;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.0vw, 68px);
  letter-spacing: -.055em;
}

h1 em {
  color: var(--orange-400);
  font-style: normal;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--on-dark-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: flex;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: grid;
  min-width: 160px;
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero__proof li:last-child {
  border-right: 0;
}

.hero__proof strong {
  font-size: 25px;
}

.hero__proof span {
  color: var(--on-dark-muted);
  font-size: 12px;
}

.trust-strip {
  color: var(--navy-900);
  background: var(--sky-100);
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip p {
  display: flex;
  align-items: center;
  min-height: 82px;
  margin: 0;
  gap: 13px;
  font-size: 14px;
  font-weight: 850;
}

.trust-strip p + p {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.trust-strip span {
  color: var(--orange-600);
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
}

.section {
  padding-block: 112px;
}

.about {
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.about__visual {
  position: relative;
}

.about__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -38px;
  left: -42px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(var(--orange-500) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: .45;
}

.about__visual img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  right: -34px;
  bottom: 34px;
  display: grid;
  width: 195px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-950));
  border: 7px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about__badge strong {
  color: var(--orange-400);
  font-size: 34px;
}

.about__badge span {
  font-size: 13px;
  line-height: 1.35;
}

h2 {
  margin-bottom: 26px;
  color: var(--navy-950);
  font-size: clamp(38px, 4.5vw, 60px);
  letter-spacing: -.045em;
}

h2 span {
  color: var(--orange-600);
}

.lead {
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-size: 20px;
  line-height: 1.55;
}

.about__content > p:not(.lead) {
  color: var(--muted);
}

.about__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: 30px;
  gap: 12px 22px;
}

.about__checks p {
  margin: 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.about__checks span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 7px;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 50%;
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  border-bottom: 2px solid var(--orange-500);
  font-weight: 900;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--sand-100);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 10px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  margin-bottom: 52px;
  gap: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 460px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(310px, auto);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px color-mix(in srgb, var(--navy-950) 5%, transparent);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card--featured {
  grid-row: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .12), transparent 25%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
}

.service-card--orange {
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-500), var(--orange-600));
}

.service-card__number {
  align-self: flex-end;
  color: var(--on-dark-muted);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .1em;
}

.service-card--featured .service-card__number,
.service-card--orange .service-card__number {
  color: rgba(255, 255, 255, .65);
}

.service-card__tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 10px;
  color: var(--navy-950);
  background: var(--orange-400);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 310px;
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: 27px;
  letter-spacing: -.03em;
}

.service-card--featured h3 {
  font-size: 38px;
}

.service-card--featured h3,
.service-card--orange h3 {
  color: var(--white);
}

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

.service-card--featured p,
.service-card--orange p {
  color: rgba(255, 255, 255, .78);
}

.service-card ul {
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  list-style: none;
}

.service-card--featured ul {
  border-top-color: rgba(255, 255, 255, .14);
}

.service-card--orange ul {
  border-top-color: rgba(255, 255, 255, .38);
}

.service-card li {
  margin-block: 8px;
  font-size: 14px;
}

.service-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--orange-400);
  font-weight: 900;
}

.service-card a {
  align-self: flex-start;
  padding-bottom: 4px;
  color: var(--navy-900);
  border-bottom: 2px solid var(--orange-500);
  font-weight: 900;
}

.service-card:not(.service-card--featured) a {
  margin-top: 28px;
}

.service-card--featured a,
.service-card--orange a {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

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

.process::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 80px solid color-mix(in srgb, var(--orange-500) 8%, transparent);
  border-radius: 50%;
}

.process__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .55fr 1.1fr .8fr;
  align-items: end;
  margin-bottom: 58px;
  gap: 40px;
}

.process__intro .eyebrow {
  align-self: start;
}

.process__intro h2 {
  margin-bottom: 0;
  color: var(--white);
}

.process__intro p {
  margin-bottom: 8px;
  color: var(--on-dark-muted);
}

.process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  list-style: none;
}

.process__steps li {
  padding: 36px 28px 0 0;
}

.process__steps li + li {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.process__steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--orange-500) 10%, transparent);
}

.process__steps h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 10px;
  font-size: 21px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.process__steps p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--on-dark-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 275px;
  gap: 18px;
}

#galeria {
  scroll-margin-top: 20px;
}

.gallery__grid--count-1 {
  grid-template-columns: 1fr;
}

.gallery__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery__grid--count-1 .gallery__item--wide,
.gallery__grid--count-2 .gallery__item--wide {
  grid-row: auto;
}

.gallery__item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}

.gallery__item--wide {
  grid-row: span 2;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--navy-950) 82%, transparent), transparent 55%);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.gallery__item:hover img {
  transform: scale(1.045);
}

.gallery__item span {
  position: absolute;
  z-index: 1;
  left: 25px;
  bottom: 20px;
  font-size: 17px;
  font-weight: 900;
}

.gallery-carousel {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.gallery-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-carousel__header p {
  margin: 0;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 900;
}

.gallery-carousel__controls {
  display: flex;
  gap: 8px;
}

.gallery-carousel__controls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

.gallery-carousel__controls button:hover:not(:disabled),
.gallery-carousel__controls button:focus-visible {
  color: var(--white);
  border-color: var(--orange-500);
  background: var(--orange-500);
}

.gallery-carousel__controls button:disabled {
  opacity: .35;
  cursor: default;
}

.gallery-carousel__controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.gallery-carousel--count-1 .gallery-carousel__track {
  grid-auto-columns: min(100%, 360px);
}

.gallery-carousel--count-2 .gallery-carousel__track {
  grid-auto-columns: calc((100% - 16px) / 2);
}

.gallery-carousel--count-3 .gallery-carousel__track {
  grid-auto-columns: calc((100% - 32px) / 3);
}

.gallery-carousel__track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel__item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  color: var(--white);
  border: 0;
  border-radius: 18px;
  background: var(--navy-900);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--navy-950) 12%, transparent);
  cursor: zoom-in;
}

.gallery-carousel__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--navy-950) 28%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.gallery-carousel__item > span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--navy-950) 82%, transparent);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}

.gallery-carousel__item > span svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.gallery-carousel__item:hover img,
.gallery-carousel__item:focus-visible img {
  transform: scale(1.045);
}

.gallery-carousel__item:hover::after,
.gallery-carousel__item:focus-visible::after,
.gallery-carousel__item:hover > span,
.gallery-carousel__item:focus-visible > span {
  opacity: 1;
}

.gallery-carousel__item:hover > span,
.gallery-carousel__item:focus-visible > span {
  transform: translateY(0);
}

.why-us {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--navy-700) 90%, transparent), color-mix(in srgb, var(--navy-950) 98%, transparent)),
    var(--navy-950);
}

.why-us::before {
  content: attr(data-brand-mark);
  position: absolute;
  right: -30px;
  bottom: -80px;
  color: rgba(255, 255, 255, .025);
  font-size: 360px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.1em;
}

.why-us__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

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

.why-us__intro > p {
  max-width: 490px;
  margin-bottom: 32px;
  color: var(--on-dark-soft);
  font-size: 18px;
}

.why-us__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  min-height: 215px;
  padding: 25px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.why-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
  color: var(--navy-950);
  background: var(--orange-400);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 950;
}

.why-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 9px;
  font-size: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.why-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.contact {
  background:
    radial-gradient(circle at 6% 12%, color-mix(in srgb, var(--orange-500) 10%, transparent), transparent 18%),
    var(--sand-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: clamp(60px, 8vw, 80px);
}

.contact__content {
  position: sticky;
  top: 30px;
}

.contact__content > p {
  color: var(--muted);
  font-size: 17px;
}

.contact__channels {
  display: grid;
  margin-top: 36px;
  gap: 14px;
}

.contact__channels a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.contact__channels > a > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.contact__channels > a > span svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__channels > a > span img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact__channels .contact__channel--whatsapp > span {
  background: #168a4b;
}

.contact__channels div {
  display: grid;
}

.contact__channels small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact__channels strong {
  color: var(--navy-900);
  font-size: 17px;
}

.contact__note {
  margin-top: 22px;
  padding: 12px 14px;
  color: #8b5c36 !important;
  background: #fff0e4;
  border-left: 3px solid var(--orange-500);
  border-radius: 0 8px 8px 0;
  font-size: 12px !important;
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  margin-bottom: 18px;
  gap: 7px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 82%, var(--sky-100));
  border: 1px solid var(--line);
  border-radius: 11px;
  font-weight: 400;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--surface);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange-500) 18%, transparent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  font-weight: 400;
  opacity: 1;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  opacity: .65;
  cursor: wait;
}

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

.form-privacy a {
  color: var(--navy-700);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--orange-500) 58%, white);
  outline-offset: 3px;
}

.form-status {
  margin-bottom: 20px;
  padding: 13px 15px;
  color: var(--navy-900);
  background: var(--green);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-error {
  color: #8b2b20;
  background: #ffe9e5;
}

.location-map {
  background: var(--surface);
}

.location-map__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 24px;
}

.location-map__head h2 {
  margin: 8px 0 6px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 48px);
}

.location-map__head p {
  margin: 0;
  color: var(--muted);
}

.location-map__head > a {
  flex: 0 0 auto;
  padding: 11px 16px;
  color: var(--navy-900);
  background: var(--sand-100);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.location-map__head > a:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.location-map__frame {
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 60%, var(--sky-100));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(3, 29, 44, .12);
}

.location-map__frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 46vw, 520px);
  border: 0;
}

.site-footer {
  color: var(--on-dark-muted);
  background: var(--navy-950);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  padding-block: 62px;
  gap: 50px;
}

.footer__top--without-location {
  grid-template-columns: 1.6fr repeat(2, 1fr);
}

.footer__brand img {
  margin-bottom: 20px;
  padding: 6px;
  background: var(--white);
  border-radius: 8px;
}

.footer__brand p {
  max-width: 300px;
}

.footer__top span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-400);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer__top p {
  margin: 0;
  font-size: 14px;
}

.footer__top a:hover,
.footer__bottom a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--orange-400);
  font-weight: 800;
}

.footer__bottom .footer__miweb-wordmark {
  display: inline-block;
  color: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.075em;
  white-space: nowrap;
}

.footer__bottom .footer__miweb-wordmark:hover {
  color: var(--orange-400);
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  padding: 8px 15px 8px 8px;
  gap: 9px;
  color: #073b1c;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
  font-size: 13px;
  font-weight: 900;
  transition: bottom .25s ease, transform .2s ease;
}

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

.whatsapp-float.is-near-footer {
  bottom: 62px;
}

.whatsapp-float__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #073b1c;
  border-radius: 50%;
}

.whatsapp-float__icon img {
  width: 22px;
  height: 22px;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(2, 18, 28, .9);
  backdrop-filter: blur(7px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -20px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header__phone {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, color-mix(in srgb, var(--navy-950) 97%, transparent), color-mix(in srgb, var(--navy-950) 76%, transparent) 58%, color-mix(in srgb, var(--navy-950) 35%, transparent));
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip p:nth-child(3) {
    border-left: 0;
  }

  .trust-strip p:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .about__grid,
  .why-us__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    gap: 70px;
  }

  .about__visual {
    max-width: 720px;
  }

  .about__visual img {
    min-height: 500px;
  }

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

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

  .service-card--featured {
    grid-row: auto;
  }

  .process__intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .process__steps li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .process__steps li:nth-child(n+3) {
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .15);
  }

  .gallery-carousel__track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .contact__content {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__top--without-location {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .topbar__inner p:last-child {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 160px;
  }

  .header__actions .button {
    width: 44px;
    min-height: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .header__actions .button::before {
    content: "→";
    position: absolute;
    color: var(--white);
    font-size: 20px;
  }

  .hero {
    min-height: 700px;
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--navy-950) 94%, transparent), color-mix(in srgb, var(--navy-950) 65%, transparent)),
      linear-gradient(0deg, color-mix(in srgb, var(--navy-950) 85%, transparent), transparent 70%);
  }

  .hero__content {
    padding-block: 64px 42px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 65px);
  }

  .hero__actions {
    display: grid;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    gap: 18px;
  }

  .hero__proof li {
    min-width: 0;
    padding-right: 14px;
    margin-right: 0;
  }

  .hero__proof li:nth-child(2) {
    border-right: 0;
  }

  .hero__proof li:last-child {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-strip p {
    min-height: 50px;
  }

  .trust-strip p + p {
    padding-left: 0;
    border-left: 0;
  }

  .trust-strip p:nth-child(n+2) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 78px;
  }

  .about__visual img {
    min-height: 390px;
  }

  .about__badge {
    right: 14px;
    bottom: -30px;
    width: 175px;
  }

  .about__checks,
  .services__grid,
  .why-us__list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-card,
  .service-card--featured {
    min-height: 310px;
  }

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

  .process__steps li,
  .process__steps li + li,
  .process__steps li:nth-child(3) {
    padding: 28px 0 8px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 0;
  }

  .process__steps span {
    margin-bottom: 24px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 380px;
    grid-auto-rows: 250px;
  }

  .gallery__item--wide {
    grid-row: auto;
  }

  .gallery-carousel {
    margin-top: 24px;
  }

  .gallery-carousel__track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .gallery-carousel--count-1 .gallery-carousel__track {
    grid-auto-columns: 100%;
  }

  .gallery-carousel--count-2 .gallery-carousel__track,
  .gallery-carousel--count-3 .gallery-carousel__track,
  .gallery-carousel--count-4 .gallery-carousel__track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .gallery-carousel__item {
    border-radius: 14px;
  }

  .gallery-carousel__item > span {
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    opacity: 1;
    transform: none;
  }

  .why-us__grid {
    gap: 55px;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .location-map__head {
    display: grid;
    align-items: start;
  }

  .location-map__head > a {
    justify-self: start;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    display: grid;
    gap: 8px;
  }

  .footer a,
  .contact__channels a,
  .location-map__head > a {
    min-height: 44px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }

  .whatsapp-float {
    padding: 7px;
  }

  .whatsapp-float.is-near-footer {
    bottom: 54px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
