:root {
  --ink: #0b1220;
  --navy-950: #08111f;
  --navy-900: #0d1728;
  --navy-800: #14233a;
  --navy-700: #17346a;
  --slate-700: #344256;
  --slate-500: #65758b;
  --slate-300: #c9d5e4;
  --line: #dbe4ef;
  --soft: #f6f8fb;
  --surface: #ffffff;
  --gold: #d6b04a;
  --gold-soft: #f3d987;
  --whatsapp: #1fb764;
  --shadow-soft: 0 18px 54px rgba(8, 17, 31, 0.12);
  --shadow-strong: 0 32px 90px rgba(8, 17, 31, 0.28);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
}

body::selection {
  color: #fff;
  background: var(--navy-700);
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.container {
  width: min(1188px, calc(100% - 48px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff0b6, var(--gold));
  box-shadow: 0 0 24px rgba(214, 176, 74, 0.44);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 70;
  pointer-events: none;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 56px rgba(8, 17, 31, 0.12);
  backdrop-filter: blur(22px);
  pointer-events: auto;
  transition:
    min-height 420ms var(--ease),
    box-shadow 420ms var(--ease),
    background 420ms var(--ease),
    border-color 420ms var(--ease);
}

.site-header--scrolled .header-inner {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(219, 228, 239, 0.9);
  box-shadow: 0 14px 42px rgba(8, 17, 31, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
}

.brand__seal {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(214, 176, 74, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #091527, #142744);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(8, 17, 31, 0.2);
}

.brand__seal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(214, 176, 74, 0.45);
  border-radius: inherit;
}

.brand__monogram {
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
  transition:
    color 240ms ease,
    background 240ms ease;
}

.nav a:hover {
  color: var(--navy-700);
  background: rgba(20, 35, 58, 0.06);
}

.header-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--navy-900);
  border: 1px solid rgba(214, 176, 74, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.9));
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 17, 31, 0.07);
}

.menu-button {
  position: relative;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-900);
  background: #fff;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 260ms var(--ease),
    opacity 260ms ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.menu-button--open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-button--open span:nth-child(2) {
  opacity: 0;
}

.menu-button--open span:nth-child(3) {
  transform: rotate(-45deg);
}

.contact-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 60;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.contact-rail a {
  width: 62px;
  min-height: 62px;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(13, 23, 40, 0.9);
  box-shadow: 0 18px 42px rgba(8, 17, 31, 0.24);
  backdrop-filter: blur(14px);
  transition:
    transform 240ms var(--ease),
    background 240ms ease,
    border-color 240ms ease;
}

.contact-rail a:first-child {
  background: var(--whatsapp);
}

.contact-rail a:hover {
  transform: translateX(-5px);
  border-color: rgba(214, 176, 74, 0.72);
}

.contact-rail span {
  font-size: 10px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 126px 0 56px;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(8, 17, 31, 0.98), rgba(13, 23, 40, 0.96) 47%, rgba(23, 52, 106, 0.94)),
    var(--navy-900);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 176, 74, 0.75), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 232px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.brand-line,
.section-mark {
  width: 84px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 176, 74, 0));
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.7vw, 92px);
  line-height: 0.93;
  text-wrap: balance;
}

.hero-lead {
  max-width: 615px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.86;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease;
}

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

.btn--whatsapp {
  color: #fff;
  background: linear-gradient(180deg, #24c973, var(--whatsapp));
  box-shadow: 0 20px 44px rgba(31, 183, 100, 0.32);
}

.btn--call {
  color: #fff;
  border-color: rgba(214, 176, 74, 0.46);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.hero-visual {
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 80ms linear;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 74, 0.48);
  border-radius: 8px 8px 72px 8px;
  box-shadow: var(--shadow-strong);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgba(8, 17, 31, 0.28)),
    linear-gradient(90deg, rgba(8, 17, 31, 0.25), transparent 28%);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 300px;
  padding: 17px 18px;
  color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 50px rgba(8, 17, 31, 0.18);
  backdrop-filter: blur(18px);
}

.hero-card--location {
  right: 28px;
  bottom: -24px;
}

.hero-card--care {
  left: -28px;
  top: 12%;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 15px;
  font-weight: 900;
}

.hero-card span {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
}

[data-float] {
  animation: float-soft 5.4s var(--ease) infinite alternate;
}

.hero-card--care {
  animation-delay: 700ms;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(214, 176, 74, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: #f7dda0;
  background: rgba(8, 17, 31, 0.24);
  font-size: 14px;
  font-weight: 900;
}

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

.section--services {
  background:
    linear-gradient(180deg, #fff, var(--soft));
}

.section--creamless,
.reasons {
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.82fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-copy h2,
.contact-panel h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p,
.split-copy p,
.contact-panel p {
  margin: 0;
  color: var(--slate-500);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.07);
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(214, 176, 74, 0.14), transparent 52%);
  transition: opacity 260ms ease;
}

.service-card:hover,
.service-card--active {
  border-color: rgba(214, 176, 74, 0.62);
  box-shadow: 0 28px 70px rgba(8, 17, 31, 0.14);
  transform:
    translateY(-8px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

.service-card:hover::before,
.service-card--active::before {
  opacity: 1;
}

.service-card button {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--navy-900);
  text-align: left;
  background: transparent;
}

.icon-disc {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
  box-shadow: 0 16px 30px rgba(8, 17, 31, 0.18);
}

.service-card button > span:last-child {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--slate-500);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.72;
}

.split-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 84px);
}

.reasons-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
}

.split-copy {
  max-width: 630px;
}

.split-copy p {
  margin-top: 24px;
}

.image-frame {
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 80ms linear;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 24px -20px -20px 24px;
  border: 1px solid rgba(214, 176, 74, 0.5);
  border-radius: var(--radius);
}

.image-frame::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -10px;
  width: 36%;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.image-frame--banner img {
  aspect-ratio: 1.42;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  color: var(--slate-700);
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.48;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--gold);
  margin-top: 2px;
}

.section--navy {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 1), rgba(13, 23, 40, 0.98) 48%, rgba(23, 52, 106, 0.96)),
    var(--navy-900);
}

.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(214, 176, 74, 0.08) 1px, transparent 1px);
  background-size: 25% 100%;
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

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

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 176, 74, 0.1), rgba(214, 176, 74, 0.8), rgba(214, 176, 74, 0.1));
}

.process-card {
  position: relative;
  min-height: 248px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 25px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--navy-950);
  box-shadow: 0 0 0 8px rgba(214, 176, 74, 0.09);
}

.step-number {
  display: block;
  margin-left: 34px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.process-card h3 {
  margin: 42px 0 12px;
  font-size: 21px;
  line-height: 1.18;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.68;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  perspective: 1000px;
}

.reason-item {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-bottom: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.06);
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.reason-item:hover {
  transform:
    translateY(-6px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 26px 62px rgba(8, 17, 31, 0.12);
}

.reason-item span {
  display: block;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 900;
}

.reason-item p {
  margin: 10px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-section {
  padding: clamp(84px, 9vw, 126px) 0;
  background:
    linear-gradient(180deg, var(--soft), #fff);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(32px, 5vw, 58px);
  color: #fff;
  border: 1px solid rgba(214, 176, 74, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.98), rgba(13, 23, 40, 0.96) 58%, rgba(23, 52, 106, 0.95)),
    var(--navy-900);
  box-shadow: var(--shadow-strong);
}

.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-panel p {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-meta span {
  display: flex;
  gap: 11px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.contact-meta svg {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 17, 31, 0.52);
  outline: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 176, 74, 0.84);
  background: rgba(8, 17, 31, 0.72);
  box-shadow: 0 0 0 4px rgba(214, 176, 74, 0.11);
}

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

.contact-form button.btn {
  border: 0;
}

.actions--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.form-notice,
.form-errors {
  margin-top: 18px;
  border-radius: var(--radius);
}

.form-notice {
  padding: 14px 16px;
  border-left: 4px solid var(--whatsapp);
  background: rgba(31, 183, 100, 0.14);
}

.form-errors {
  padding: 14px 20px;
  color: #ffe2e2;
  border-left: 4px solid #ff8a8a;
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 38px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  max-width: 560px;
  margin: 0;
  color: var(--slate-500);
  font-weight: 600;
  line-height: 1.6;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 65;
  display: none;
  gap: 10px;
}

.float-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 18px 38px rgba(8, 17, 31, 0.26);
}

.float-button--whatsapp {
  background: var(--whatsapp);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 820ms var(--ease) var(--delay, 0ms),
    transform 820ms var(--ease) var(--delay, 0ms);
}

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

@keyframes float-soft {
  from {
    transform: translate3d(0, -4px, 0);
  }
  to {
    transform: translate3d(0, 8px, 0);
  }
}

@media (max-width: 1080px) {
  .contact-rail {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .reasons-grid,
  .section-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-card--care {
    left: 20px;
    top: 20px;
  }

  .service-grid,
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline::before {
    display: none;
  }

  .floating-actions {
    display: grid;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(1188px, calc(100% - 64px));
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    min-height: 64px;
    border-radius: 999px;
    width: min(100%, 326px);
    margin: 0 auto;
    gap: 10px;
    padding: 8px 8px 8px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand__seal {
    width: 46px;
    height: 46px;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
  }

  .nav--open {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
  }

  .header-phone {
    display: none;
  }

  .menu-button {
    display: grid;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 46px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.7vw, 48px);
    line-height: 1.06;
    max-width: 11ch;
  }

  .hero-lead {
    max-width: 32ch;
    font-size: 16px;
    line-height: 1.72;
  }

  .actions {
    display: grid;
    width: min(100%, 320px);
    max-width: 100%;
  }

  .actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .hero-card--care {
    display: none;
  }

  .hero-media {
    border-radius: var(--radius);
  }

  .hero-media img {
    aspect-ratio: 0.96;
  }

  .trust-strip,
  .service-grid,
  .process-timeline,
  .reason-list {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    justify-content: flex-start;
    min-height: 58px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-panel h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section-heading p,
  .split-copy p,
  .contact-panel p {
    font-size: 15.5px;
  }

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

  .image-frame::before {
    inset: 14px -8px -10px 14px;
  }

  .contact-panel {
    padding: 24px;
  }

  .actions--compact {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
