:root {
  --blue-900: #234e80;
  --blue-800: #2f6da6;
  --blue-700: #3b87c8;
  --blue-500: #58b8ee;
  --blue-100: #eaf7ff;
  --cream: #fffaf1;
  --paper: #ffffff;
  --ink: #142033;
  --muted: #6b7c91;
  --line: rgba(47, 109, 166, 0.18);
  --peach: #ffb997;
  --mint: #bdebd3;
  --shadow: 0 24px 70px rgba(31, 88, 134, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(88, 184, 238, 0.12), transparent 26rem),
    radial-gradient(circle at 100% 4%, rgba(255, 185, 151, 0.16), transparent 23rem),
    linear-gradient(180deg, #fdfefe 0%, #f7fbff 42%, #fffaf1 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--peach));
  transform: scaleX(0);
  transform-origin: left center;
}

.top-bar {
  background: var(--blue-900);
  color: #fff;
  font-size: 0.78rem;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0.96;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35, 78, 128, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(26, 70, 110, 0.10);
}

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

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

.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-800));
  color: #fff;
  box-shadow: 0 12px 28px rgba(59, 135, 200, 0.28);
}

.brand__mark svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.brand strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue-800);
}

.brand small {
  display: block;
  margin-top: -3px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #33445c;
}

.nav-links a {
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  color: #fff;
  background: var(--blue-800);
  box-shadow: 0 12px 30px rgba(47, 109, 166, 0.23);
  font-size: 0.88rem;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 18px 42px rgba(47, 109, 166, 0.24);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 109, 166, 0.25);
  color: var(--blue-900);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 109, 166, 0.18);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-900);
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle.is-open span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { top: 22px; transform: rotate(-45deg); }

.section-shell {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px 999px 999px 4px;
  background: rgba(88, 184, 238, 0.22);
  border: 1px solid rgba(88, 184, 238, 0.5);
}

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

h1,
h2,
h3 {
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.6vw, 6.35rem);
  line-height: 0.9;
}

h2 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.6vw, 4.65rem);
  line-height: 0.94;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.06;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero {
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  padding-top: clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -6vw;
  top: 18%;
  width: 24vw;
  min-width: 210px;
  aspect-ratio: 1;
  border-radius: 40% 60% 54% 46%;
  background: rgba(88, 184, 238, 0.10);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(42px, 7vw, 98px);
  align-items: center;
}

.hero__copy p {
  max-width: 620px;
  font-size: 1.07rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__note span {
  padding: 8px 12px;
  border: 1px dashed rgba(47, 109, 166, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero__blob {
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 0.92;
  border-radius: 38% 62% 49% 51% / 45% 40% 60% 55%;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.48), transparent 8rem),
    linear-gradient(135deg, #bcecff, #3a7ab8 70%);
  box-shadow: var(--shadow);
}

.hero__visual img {
  position: relative;
  z-index: 2;
  width: min(92%, 440px);
  height: 560px;
  object-fit: cover;
  border-radius: 48% 52% 44% 56% / 38% 42% 58% 62%;
  border: 14px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 70px rgba(25, 87, 137, 0.22);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 170px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(31, 88, 134, 0.18);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: var(--blue-900);
}

.floating-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.floating-card--top {
  top: 92px;
  right: 0;
}

.floating-card--bottom {
  bottom: 74px;
  left: 0;
}

.hero__decor {
  position: absolute;
  color: rgba(47, 109, 166, 0.14);
  font-size: clamp(2.5rem, 6vw, 6rem);
  pointer-events: none;
  user-select: none;
  animation: floaty 6s ease-in-out infinite;
}

.hero__decor--one { top: 19%; right: 8%; }
.hero__decor--two { bottom: 18%; left: 2%; animation-delay: 1.6s; }
.hero__decor--three { top: 33%; left: 47%; color: rgba(255, 185, 151, 0.7); animation-delay: 0.8s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.quick-services {
  padding: 24px 0 54px;
}

.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-chip {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(43, 97, 145, 0.08);
  text-decoration: none;
  color: var(--blue-900);
  font-weight: 900;
}

.quick-chip span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8rem;
}

.about {
  background: linear-gradient(180deg, rgba(234, 247, 255, 0.76), rgba(255, 255, 255, 0.2));
}

.about__grid,
.process__grid,
.packages__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.about__images {
  position: relative;
  min-height: 520px;
}

.about__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 12px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  background: #fff;
}

.about__photo--large {
  left: 0;
  bottom: 0;
  width: 70%;
  border-radius: 38px;
}

.about__photo--small {
  right: 0;
  top: 30px;
  width: 42%;
  border-radius: 30px;
}

.about__photo img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.about__photo--small img {
  height: 270px;
}

.shape-dot {
  position: absolute;
  left: -24px;
  top: 86px;
  width: 96px;
  height: 76px;
  border-radius: 42% 58% 45% 55%;
  background: var(--blue-700);
  z-index: -1;
}

.care-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.care-list div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.care-list strong {
  color: var(--blue-900);
}

.care-list span {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.service-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 109, 166, 0.18);
  box-shadow: 0 18px 48px rgba(43, 97, 145, 0.09);
  overflow: hidden;
}

.service-card::after {
  content: "🐾";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 3.8rem;
  color: rgba(88, 184, 238, 0.12);
  transform: rotate(12deg);
}

.service-card--featured {
  grid-row: span 2;
  min-height: 540px;
  background:
    linear-gradient(180deg, rgba(35, 78, 128, 0.06), rgba(88, 184, 238, 0.18)),
    #fff;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 900;
  font-size: 1.35rem;
}

.service-card > span {
  color: var(--blue-700);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.service-card p {
  margin-bottom: 28px;
}

.service-card a {
  margin-top: auto;
  color: var(--blue-800);
  text-decoration: none;
  font-weight: 900;
}

.process {
  background: var(--blue-900);
  color: #fff;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(88, 184, 238, 0.24), transparent 22rem),
    radial-gradient(circle at 92% 82%, rgba(255, 185, 151, 0.18), transparent 24rem);
  opacity: 0.95;
}

.process .container {
  position: relative;
}

.process h2,
.process h3,
.process .eyebrow {
  color: #fff;
}

.process p {
  color: rgba(255,255,255,0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.step span {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  color: var(--blue-900);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
}

.step h3,
.step p {
  margin-bottom: 0;
}

.stats {
  padding-block: clamp(56px, 7vw, 94px);
  background: var(--blue-100);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px 18px;
  border-radius: 28px;
  text-align: center;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(47, 109, 166, 0.12);
  box-shadow: 0 16px 40px rgba(43, 97, 145, 0.08);
}

.stat-card::before {
  content: "❤";
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-500);
}

.stat-number {
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  color: var(--blue-800);
}

.stat-card p {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.stat-card small {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.72rem;
}

.packages {
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(255,250,241,0.82));
}

.package-list {
  display: grid;
  gap: 16px;
}

.package {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(43, 97, 145, 0.08);
}

.package--active {
  background: var(--blue-900);
  color: #fff;
  transform: translateX(-26px);
}

.package span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package--active span {
  background: rgba(255,255,255,0.13);
  color: #fff;
}

.package p {
  margin-bottom: 10px;
}

.package--active p,
.package--active small {
  color: rgba(255,255,255,0.74);
}

.package small {
  color: var(--muted);
  font-weight: 800;
}

.gallery {
  background: #fff;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--blue-100);
  box-shadow: 0 18px 46px rgba(43, 97, 145, 0.10);
}

.gallery figure:nth-child(2) {
  transform: translateY(46px);
}

.gallery figure:nth-child(3) {
  min-height: 460px;
}

.gallery figure:nth-child(4) {
  grid-column: 1 / 3;
  min-height: 280px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 900;
}

.faq {
  background: var(--blue-100);
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  padding: 0;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(47, 109, 166, 0.12);
  box-shadow: 0 16px 38px rgba(43, 97, 145, 0.07);
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-family: "Nunito", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  margin: 0;
  padding: 0 24px 24px;
}

.final-cta {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
}

.final-cta__box {
  position: relative;
  max-width: 940px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 185, 151, 0.18), transparent 12rem),
    rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  color: rgba(255,255,255,0.74);
  max-width: 620px;
}

.site-footer {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid rgba(47, 109, 166, 0.08);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer p {
  margin: 0;
}

.mobile-whatsapp {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 250;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(22, 163, 74, 0.30);
}

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

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

.quick-chip:nth-child(2),
.service-card:nth-child(2),
.step:nth-child(2),
.stat-card:nth-child(2),
.package:nth-child(2),
.gallery figure:nth-child(2) { transition-delay: 0.08s; }

.quick-chip:nth-child(3),
.service-card:nth-child(3),
.step:nth-child(3),
.stat-card:nth-child(3),
.package:nth-child(3),
.gallery figure:nth-child(3) { transition-delay: 0.16s; }

.quick-chip:nth-child(4),
.service-card:nth-child(4),
.stat-card:nth-child(4),
.gallery figure:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1024px) {
  .nav-links {
    gap: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero__grid,
  .about__grid,
  .process__grid,
  .packages__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

  .service-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--featured {
    grid-row: auto;
    min-height: 300px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery figure,
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4) {
    transform: none;
    min-height: 320px;
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .top-bar__inner span:nth-child(2),
  .top-bar__inner span:nth-child(3) {
    display: none;
  }

  .nav {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: var(--blue-100);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    gap: 36px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.9rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.7rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__visual img {
    width: min(88%, 340px);
    height: 430px;
    border-width: 10px;
  }

  .floating-card {
    width: 150px;
    padding: 13px;
  }

  .floating-card--top {
    right: 4px;
    top: 28px;
  }

  .floating-card--bottom {
    left: 2px;
    bottom: 28px;
  }

  .quick-services__grid,
  .service-board,
  .stats__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .about__images {
    min-height: 430px;
  }

  .about__photo--large {
    width: 78%;
  }

  .about__photo--small {
    width: 46%;
  }

  .about__photo img {
    height: 300px;
  }

  .about__photo--small img {
    height: 220px;
  }

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

  .step span {
    grid-row: auto;
  }

  .package--active {
    transform: none;
  }

  .site-footer__inner {
    display: grid;
  }

  .mobile-whatsapp {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

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

  .brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .section-shell {
    padding-block: 64px;
  }

  .hero__note span {
    width: 100%;
    border-radius: 16px;
  }

  .floating-card {
    display: none;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__visual img {
    height: 380px;
  }

  .final-cta__box {
    border-radius: 28px;
  }
}
