:root {
  --red: #c2191b;
  --red-2: #e00824;
  --black: #15181e;
  --ink: #0b0e14;
  --slate: #59616e;
  --muted: #8b93a0;
  --cloud: #f5f6f8;
  --paper: #ffffff;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(21,24,30,.12);
  --shadow: 0 30px 90px rgba(0,0,0,.25);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--paper);
  text-rendering: geometricPrecision;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(194,25,27,.2); }
.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 88px;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(21,24,30,.10);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 86px;
  padding: 10px 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(21,24,30,.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled .brand {
  background: rgba(255,255,255,.98);
  border-color: rgba(21,24,30,.10);
  box-shadow: 0 10px 24px rgba(21,24,30,.10);
}
.brand-logo-full {
  display: block;
  width: 84px;
  max-width: 84px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.brand-copy,
.brand-mark { display: none; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.site-header.is-scrolled .nav-menu {
  color: var(--black);
  text-shadow: none;
}
.nav-menu > a:not(.btn):not(.nav-phone) {
  position: relative;
  padding: 12px 0;
  opacity: .92;
}
.nav-menu > a:not(.btn):not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-menu > a:not(.btn):not(.nav-phone):hover::after,
.nav-menu > a:not(.btn):not(.nav-phone).active::after { transform: scaleX(1); }
.nav-phone {
  display: grid;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  line-height: 1.05;
  white-space: nowrap;
}
.nav-phone span {
  font-size: 9px;
  font-family: "Geist Mono", ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
}
.nav-phone strong { font-size: 13px; font-weight: 900; color: #fff; }
.site-header.is-scrolled .nav-phone {
  border-color: rgba(21,24,30,.10);
  background: rgba(21,24,30,.04);
}
.site-header.is-scrolled .nav-phone span { color: var(--slate); }
.site-header.is-scrolled .nav-phone strong { color: var(--black); }
.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,.92);
  width: 52px;
  height: 52px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--red-2), #a70f18);
  box-shadow: 0 18px 44px rgba(194,25,27,.36);
}
.btn-red:hover { box-shadow: 0 24px 54px rgba(194,25,27,.45); }
.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.btn-dark { color: #fff; background: var(--black); }
.btn-small { padding: 12px 18px; font-size: 13px; }

.section-dark {
  color: #fff;
  background: var(--ink);
  position: relative;
  overflow: clip;
}
.hero-slider {
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .95s ease, transform 5.5s ease;
}
.hero-bg.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 44%, rgba(194,25,27,.12), transparent 28%),
    linear-gradient(90deg, rgba(8,10,15,.97) 0%, rgba(8,10,15,.84) 31%, rgba(8,10,15,.40) 58%, rgba(8,10,15,.14) 100%),
    linear-gradient(180deg, rgba(5,7,12,.35), rgba(5,7,12,.74));
}
.orbital {
  pointer-events: none;
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: inherit;
  border: 1px solid rgba(194,25,27,.2);
}
.orbital::after { inset: 22%; border-color: rgba(255,255,255,.08); }
.orbital-hero { width: 720px; height: 720px; right: -220px; top: -120px; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 156px 0 76px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 625px) minmax(170px, 1fr);
  align-items: end;
  gap: 40px;
}
.hero-copy { align-self: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.88);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.eyebrow span,
.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(194,25,27,.14), 0 0 30px rgba(194,25,27,.45);
  flex: 0 0 auto;
}
.eyebrow-light { color: var(--slate); }
.hero-slide-copy { display: none; }
.hero-slide-copy.active { display: block; animation: slideCopy .55s ease both; }
@keyframes slideCopy {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  font-size: 60px;
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 26px rgba(0,0,0,.65);
}
.hero-subtitle {
  max-width: 600px;
  color: rgba(255,255,255,.86);
  font-size: 21px;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  max-width: 590px;
}
.trust-row div {
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.trust-row strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.trust-row span { display: block; margin-top: 8px; color: rgba(255,255,255,.82); font-size: 14px; }
.slider-ui {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(12,15,22,.54);
  backdrop-filter: blur(16px);
}
.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.slider-dots { display: flex; gap: 9px; }
.slider-dots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 18px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.slider-dots span {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
  overflow: hidden;
  position: relative;
}
.slider-dots button.active span { background: var(--red); box-shadow: 0 0 20px rgba(194,25,27,.65); }

.section { padding: 118px 0; }
.section-intro {
  background: var(--cloud);
  border-bottom: 1px solid var(--line-dark);
}
.intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.section-kicker {
  color: var(--red);
  font-weight: 900;
  font-family: "Geist Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}
.section h2,
.service-experience h2,
.contact-section h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.06em;
  margin-bottom: 24px;
  font-weight: 900;
}
.section p,
.service-experience p,
.contact-section p {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.65;
}
.section-dark p,
.contact-section p { color: rgba(255,255,255,.72); }
.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}
.section-heading.center { margin-inline: auto; text-align: center; }

.service-experience {
  padding: 126px 0;
  min-height: 100vh;
}
.service-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(194,25,27,.12), transparent 34%),
    linear-gradient(180deg, #0a0d13, #12161e 48%, #0a0d13);
  pointer-events: none;
}
.service-experience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(320px, 520px) minmax(270px, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.service-sticky,
.service-visual-wrap {
  position: sticky;
  top: 118px;
}
.service-sticky h2 {
  font-size: clamp(34px, 4.2vw, 56px);
}
.service-progress {
  margin-top: 34px;
  height: 4px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
}
.service-progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 28px rgba(194,25,27,.65);
  transition: width .35s ease;
}
.service-visual-wrap {
  height: min(70vh, 620px);
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  background: #11151c;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
}
.service-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045) translateY(16px);
  transition: opacity .45s ease, transform .7s ease;
}
.service-visual.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.25));
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-steps { display: grid; gap: 22px; padding-bottom: 20vh; }
.service-step {
  min-height: 47vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.026));
  opacity: .45;
  transform: translateX(12px) scale(.985);
  transition: opacity .35s ease, transform .35s ease, border-color .35s ease, background .35s ease;
}
.service-step.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  border-color: rgba(194,25,27,.42);
  background: linear-gradient(135deg, rgba(194,25,27,.14), rgba(255,255,255,.06));
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}
.service-step span,
.benefit-card span,
.process-step span {
  color: var(--red);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-step h3 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .98;
  letter-spacing: -.045em;
}
.service-step p { font-size: 17px; }
.service-step a {
  margin-top: 10px;
  display: inline-flex;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.section-cards { background: var(--paper); }
.benefit-cards,
.process-timeline,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.benefit-card,
.process-step,
.testimonial,
.lead-form,
.contact-methods a,
.accordion details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(21,24,30,.06);
}
.benefit-card { padding: 32px; min-height: 280px; }
.benefit-card h3,
.process-step h3 { margin: 18px 0 12px; font-size: 28px; letter-spacing: -.04em; }
.process-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-step { padding: 30px; position: relative; overflow: hidden; }
.process-step::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% auto;
  width: 150px;
  height: 150px;
  background: rgba(194,25,27,.08);
  border-radius: 50%;
}

.section-gallery {
  background: var(--cloud);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.gallery-copy {
  position: sticky;
  top: 122px;
  align-self: start;
  padding-top: 8px;
}
.gallery-copy h2 {
  font-size: clamp(46px, 4.7vw, 62px);
  line-height: .96;
  margin-bottom: 18px;
}
.gallery-copy > p {
  font-size: 17px;
  line-height: 1.65;
}
.gallery-actions {
  display: grid;
  gap: 14px;
  max-width: 340px;
}
.gallery-map-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 38px rgba(21,24,30,.06);
}
.gallery-map-card strong {
  color: var(--black);
  font-size: 15px;
}
.gallery-map-card span {
  color: var(--slate);
  font-size: 14px;
}
.gallery-map-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(21,24,30,.10);
}
.gallery-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}
.gallery-points li {
  position: relative;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(21,24,30,.05);
}
.gallery-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(194,25,27,.10);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 18px;
}
.gallery-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #11151c;
  box-shadow: 0 24px 64px rgba(21,24,30,.15);
}
.gallery-mosaic figure.wide { grid-column: span 2; }
.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.gallery-mosaic figure:hover img { transform: scale(1.05); filter: contrast(1.04); }
.gallery-mosaic figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8,10,15,.72);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.section-testimonials { background: #fff; }
.testimonial { padding: 32px; }
.testimonial p { color: var(--black); font-size: 19px; }
.testimonial cite { color: var(--red); font-style: normal; font-weight: 900; }
.proof-card strong {
  display: block;
  color: var(--red);
  font-size: 52px;
  line-height: .95;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}
.proof-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.04em;
}
.proof-card p { font-size: 16px; }
.microcopy { margin-top: 20px; color: var(--muted); font-size: 13px !important; }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(36px, 6vw, 86px);
}
.accordion { display: grid; gap: 14px; }
.accordion details { overflow: hidden; }
.accordion summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 900;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--red); font-size: 24px; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 26px 24px; margin: 0; font-size: 16px; }

.contact-section { padding: 126px 0; }
.contact-shell { position: relative; z-index: 1; }
.contact-heading {
  margin-bottom: 34px;
  max-width: 900px;
}
.contact-heading h2 {
  font-size: clamp(44px, 4.8vw, 60px);
  line-height: .96;
  margin-bottom: 18px;
}
.contact-heading p { font-size: 17px; }
.orbital-contact { width: 640px; height: 640px; right: -220px; bottom: -260px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 370px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 28px);
  align-items: stretch;
}
.contact-panel {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #111318, #07090d);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 64px rgba(0,0,0,.20);
}
.contact-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-family: "Geist Mono", ui-monospace, monospace;
  text-transform: uppercase;
}
.contact-panel > p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.7;
}
.contact-wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15181e, #0e1116);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(37,211,102,.30);
}
.contact-info-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}
.contact-info-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.contact-info-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red-2);
  font-size: 14px;
}
.contact-info-card span {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.contact-map-embed {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.contact-map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
}
.contact-map-toolbar span { font-weight: 700; }
.contact-map-toolbar a { color: var(--red-2); font-weight: 800; }
.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 170px;
  border: 0;
  background: #e8edf2;
}
.contact-form-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(21,24,30,.10);
  box-shadow: 0 24px 64px rgba(0,0,0,.16);
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.lead-form-structured { padding: 6px 4px; }
.full { grid-column: 1 / -1; }
.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(21,24,30,.14);
  border-radius: 16px;
  padding: 15px 16px;
  background: #f7f8fa;
  color: var(--black);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(194,25,27,.55);
  box-shadow: 0 0 0 4px rgba(194,25,27,.10);
}
.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted) !important;
  font-size: 13px !important;
}
.form-note-center { text-align: center; }
.form-wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
  font-size: 14px;
  font-weight: 900;
}


.site-footer {
  background: #07090d;
  color: #fff;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}
.footer-grid img {
  width: 120px;
  height: auto;
  background: #fff;
  border-radius: 24px;
  padding: 8px 12px;
  margin-bottom: 18px;
}
.footer-grid p { color: rgba(255,255,255,.68); }
.footer-links,
.footer-social { display: grid; gap: 12px; font-weight: 800; }
.footer-links a:hover,
.footer-social a:hover,
.footer-bottom a:hover { color: var(--red-2); }
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #128c43);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(18,140,67,.34);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1160px) {

  .nav-phone { display: none; }
}

@media (max-width: 1080px) {
  .nav-menu { gap: 14px; font-size: 13px; }
  .hero-content { grid-template-columns: 1fr; align-items: center; }
  .slider-ui { justify-self: start; }
  .service-experience-grid { grid-template-columns: 1fr; }
  .service-sticky,
  .service-visual-wrap { position: relative; top: auto; }
  .service-visual-wrap { min-height: 440px; }
  .service-steps { grid-template-columns: repeat(2, minmax(0,1fr)); padding-bottom: 0; }
  .service-step { min-height: auto; }
  .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: 88px 18px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    color: var(--black) !important;
    text-shadow: none;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(21,24,30,.10);
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(0,0,0,.18);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a { padding: 12px 14px !important; }
  .nav-phone { display: grid; border-radius: 18px; white-space: normal; }
  .nav-phone span { color: var(--slate) !important; }
  .nav-phone strong { color: var(--black) !important; }
  h1 { font-size: clamp(44px, 12vw, 60px); }
  .hero-content { padding-top: 130px; }
  .trust-row,
  .benefit-cards,
  .testimonial-grid,
  .gallery-grid,
  .faq-grid,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .gallery-copy { position: static; padding-top: 0; }
  .gallery-actions { max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header, .nav { height: 78px; }
  .brand { min-height: 74px; padding: 8px 14px; }
  .brand-logo-full { width: 84px; max-width: 84px; }
  .nav-menu { top: 78px; }
  .hero-content { padding-top: 116px; padding-bottom: 52px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; padding: 16px 20px; }
  .trust-row { grid-template-columns: 1fr; margin-top: 28px; }
  .slider-ui { transform: scale(.92); transform-origin: left; }
  .section { padding: 82px 0; }
  .service-experience { padding: 86px 0; }
  .service-visual-wrap { min-height: 310px; border-radius: 24px; }
  .service-steps { grid-template-columns: 1fr; }
  .service-step { padding: 26px; }
  .gallery-mosaic { grid-auto-rows: 190px; }
  .gallery-mosaic figure.wide { grid-column: span 1; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; min-width: auto; }
}

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

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel, .contact-form-card { padding: 22px; }
  .contact-map-toolbar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .contact-panel h3 { font-size: 28px; }
  .contact-map-embed iframe { height: 220px; }
}

.contact-wa-cta,
.contact-wa-cta:hover {
  box-shadow: none;
}
.contact-form-card .btn-red,
.contact-form-card .btn-red:hover {
  box-shadow: none;
}
.contact-form-card .btn-red {
  background: linear-gradient(135deg, var(--red-2), #b10f18);
}
