:root {
  --blue-900: #020121;
  --blue-800: #091764;
  --blue-500: #315de7;
  --blue-300: #5f8af9;
  --ink: #101626;
  --muted: #5e6894;
  --line: #d9deea;
  --soft: #f4f5f7;
  --white: #ffffff;
  --teal: #0fa79b;
  --teal-dark: #08756e;
  --gold: #f2b544;
  --whatsapp: #1fbf63;
  --shadow: 0 16px 40px rgba(2, 1, 33, 0.12);
  --shadow-strong: 0 24px 70px rgba(2, 1, 33, 0.18);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: 2.35rem;
  color: var(--white);
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  color: var(--blue-900);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

p {
  margin-bottom: 1rem;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--blue-800);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 222, 234, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(2, 1, 33, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--blue-900);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--blue-800);
  border: 2px solid var(--blue-300);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(9, 23, 100, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(9, 23, 100, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 120;
  display: grid;
  gap: 0.4rem;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-120%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.site-nav a {
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-800);
  background: var(--soft);
  outline: none;
}

.nav-toggle {
  position: relative;
  z-index: 130;
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  color: var(--blue-800);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.header-cta {
  display: none;
}

.btn,
.header-cta,
.mobile-cta a {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.85rem 1.05rem;
  font-weight: 800;
  line-height: 1;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn {
  display: inline-flex;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.mobile-cta a:hover,
.mobile-cta a:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), #204bd2);
  box-shadow: 0 12px 28px rgba(49, 93, 231, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-800);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.btn-secondary.on-dark {
  color: var(--white);
}

.btn-light {
  color: var(--blue-900);
  background: var(--white);
}

.btn-outline {
  color: var(--blue-800);
  background: var(--white);
  border-color: var(--blue-300);
}

.btn-form {
  width: 100%;
  color: var(--white);
  background: var(--whatsapp);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(82vh - var(--header-height));
  overflow: hidden;
  background: var(--blue-900);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, rgba(2, 1, 33, 0.68), transparent);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0;
  transform: scale(1.03);
  transform-origin: center;
  transition: opacity 0.9s ease;
}

.hero-image.is-active {
  opacity: 1;
  animation: hero-photo-zoom 3.8s ease-out forwards;
}

.hero-image:nth-child(2) {
  transform-origin: 62% center;
}

.hero-image:nth-child(3) {
  transform-origin: 48% center;
}

.hero-image:nth-child(4) {
  transform-origin: 58% 42%;
}

@keyframes hero-photo-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.065);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 1, 33, 0.92) 0%, rgba(9, 23, 100, 0.74) 48%, rgba(2, 1, 33, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  max-width: 1120px;
  padding: 4.4rem 0 3.3rem;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-support {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-contact {
  display: grid;
  gap: 0.75rem;
  max-width: 560px;
  margin: 1.7rem 0 0;
}

.hero-contact div {
  padding-left: 0.9rem;
  border-left: 3px solid var(--gold);
}

.hero-contact dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-contact dd {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.phone-links {
  display: grid;
  gap: 0.25rem;
}

.phone-links a,
.phone-display a {
  color: inherit;
}

.phone-links a:hover,
.phone-links a:focus-visible,
.phone-display a:hover,
.phone-display a:focus-visible {
  color: var(--gold);
  outline: none;
}

.hero-proof {
  display: grid;
  gap: 1rem;
  max-width: 420px;
  padding: 1.15rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.proof-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.proof-header > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.proof-header strong,
.proof-header small {
  display: block;
}

.proof-header strong {
  font-size: 1.02rem;
}

.proof-header small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.hero-proof ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.hero-proof li .icon {
  margin-top: 0.1rem;
  color: var(--gold);
}

.proof-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 44px;
  padding-top: 0.85rem;
  color: var(--white);
  font-weight: 900;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-link:hover,
.proof-link:focus-visible {
  color: var(--gold);
  outline: none;
}

.quick-strip {
  background: var(--blue-800);
}

.quick-strip-grid {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 0;
}

.quick-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-strip .icon {
  color: var(--gold);
}

.conversion-strip {
  padding: 1.1rem 0;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-800));
}

.conversion-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  color: var(--white);
}

.conversion-kicker {
  display: inline-flex;
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.conversion-inner strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.conversion-inner p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.conversion-actions .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.trust-band {
  padding: 1.35rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  gap: 0.9rem;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(2, 1, 33, 0.05);
}

.trust-grid span {
  display: grid;
  width: 50px;
  height: 50px;
  grid-row: span 2;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  background: var(--blue-800);
  border-radius: var(--radius);
}

.trust-grid strong {
  color: var(--blue-900);
  font-size: 1rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.urgent-section {
  padding: 3.2rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 56%, #eef8f5 100%);
  border-bottom: 1px solid var(--line);
}

.urgent-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.urgent-copy {
  max-width: 640px;
}

.urgent-copy h2 {
  margin-bottom: 0.75rem;
}

.urgent-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.urgent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.urgent-panel {
  display: grid;
  gap: 0.75rem;
}

.urgent-panel article {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 68px;
  padding: 0.95rem 1rem;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(2, 1, 33, 0.06);
}

.urgent-panel .icon {
  color: var(--blue-500);
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--soft);
}

.section-blue {
  color: var(--white);
  background: var(--blue-800);
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.section-compact {
  padding: 3.5rem 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-heading.wide {
  max-width: 840px;
}

.section-heading p:not(.eyebrow),
.split-section > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-blue .split-section > div > p {
  color: rgba(255, 255, 255, 0.8);
}

.issue-grid,
.service-grid,
.benefit-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.issue-grid article,
.service-card,
.benefit-grid article,
.gallery-grid .work-card,
.check-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.issue-grid article {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 84px;
  padding: 1rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.issue-grid article:hover {
  transform: translateY(-2px);
  border-color: #c6d3ff;
  box-shadow: 0 14px 32px rgba(2, 1, 33, 0.08);
}

.issue-grid .icon,
.benefit-grid .icon,
.testimonial-grid .icon,
.gallery-grid .icon {
  color: var(--blue-500);
}

.section-action {
  margin-top: 1.7rem;
}

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

.service-card {
  padding: 1.2rem;
  box-shadow: 0 10px 28px rgba(2, 1, 33, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #c6d3ff;
  box-shadow: 0 18px 42px rgba(2, 1, 33, 0.11);
}

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

.service-card.featured {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  box-shadow: 0 22px 55px rgba(9, 23, 100, 0.18);
}

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

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--blue-800);
  background: #eaf0ff;
  border-radius: var(--radius);
}

.featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.callout {
  padding: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.light-callout {
  color: var(--ink);
  background: var(--soft);
}

.check-panel {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.check-panel.pale {
  background: var(--soft);
  border-color: var(--line);
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.check-list li::after,
.plain-list li::after {
  position: absolute;
  top: 0.36rem;
  left: 0.28rem;
  width: 0.38rem;
  height: 0.18rem;
  content: "";
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.section-blue .check-list li {
  color: var(--white);
}

.muted-note {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.secondary-service {
  box-shadow: none;
}

.benefit-grid article {
  padding: 1.1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.testimonial-grid article {
  padding: 1.2rem;
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(2, 1, 33, 0.05);
}

.testimonial-grid .icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
}

.testimonial-grid p {
  color: var(--muted);
}

.benefit-grid article:hover {
  transform: translateY(-2px);
  border-color: #c6d3ff;
  box-shadow: 0 14px 32px rgba(2, 1, 33, 0.08);
}

.benefit-grid .icon {
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 0.9rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(2, 1, 33, 0.04);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: var(--blue-800);
  border-radius: var(--radius);
}

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

.communes-carousel {
  --commune-gap: 0.65rem;
  position: relative;
  display: grid;
  width: 100%;
  height: 236px;
  align-content: center;
  gap: var(--commune-gap);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  border-radius: var(--radius);
}

.commune-row {
  display: flex;
  width: max-content;
  gap: var(--commune-gap);
  animation: commune-scroll 34s linear infinite;
  will-change: transform;
}

.commune-row:nth-child(2) {
  animation-duration: 38s;
}

.commune-row:nth-child(3) {
  animation-duration: 42s;
}

.commune-row:nth-child(4) {
  animation-duration: 36s;
}

.commune-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--commune-gap);
}

.commune-set span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 44px;
  padding: 0 0.85rem;
  color: var(--blue-800);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  background: #edf2ff;
  border: 1px solid #d7e1ff;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(9, 23, 100, 0.06);
}

@keyframes commune-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--commune-gap) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  .commune-row {
    animation-play-state: paused;
  }

  .hero-image.is-active,
  .floating-whatsapp {
    animation: none;
  }
}

.work-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 12px 30px rgba(2, 1, 33, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--line);
  transition: transform 0.28s ease;
}

.work-card figcaption {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem 1rem;
  background: var(--white);
}

.work-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(2, 1, 33, 0.14);
}

.work-card:hover img {
  transform: scale(1.035);
}

.fine-print {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(2, 1, 33, 0.04);
}

.faq-list summary {
  padding: 1rem 1.2rem;
  color: var(--blue-900);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.final-cta {
  padding: 4.5rem 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(95, 138, 249, 0.22), transparent 32rem),
    var(--blue-900);
}

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

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.phone-display {
  display: grid;
  gap: 0.25rem;
  color: var(--white) !important;
  font-size: 1.45rem;
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 0.2rem;
  color: var(--blue-900);
}

.form-note {
  margin-bottom: 0.35rem;
  color: var(--muted) !important;
  font-size: 0.94rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 4px rgba(95, 138, 249, 0.16);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 7rem;
  color: rgba(255, 255, 255, 0.72);
  background: #07091c;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand small,
.site-footer .fine-print {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-bottom {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--whatsapp);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(31, 191, 99, 0.34);
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}

.floating-whatsapp .icon {
  width: 1.65rem;
  height: 1.65rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(2, 1, 33, 0.12);
  backdrop-filter: blur(12px);
}

.mobile-cta a {
  display: inline-flex;
  color: var(--white);
  background: var(--blue-800);
}

.mobile-cta a:first-child {
  background: var(--whatsapp);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(31, 191, 99, 0.34);
  }

  50% {
    box-shadow: 0 16px 42px rgba(31, 191, 99, 0.56);
  }
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }

  .hero-contact,
  .quick-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-grid,
  .service-grid,
  .benefit-grid,
  .testimonial-grid,
  .gallery-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    margin-left: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.55rem 0.35rem;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    color: var(--white);
    background: var(--blue-800);
  }

  .hero {
    min-height: calc(78vh - var(--header-height));
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    padding: 5.6rem 0 4.4rem;
  }

  .hero-proof {
    justify-self: end;
    margin-bottom: 0.35rem;
  }

  .conversion-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .urgent-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

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

  .urgent-panel article:first-child {
    grid-column: 1 / -1;
  }

  .quick-strip-grid {
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
  }

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

  .service-card.featured {
    grid-row: span 2;
  }

  .split-section,
  .final-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reverse > :first-child {
    order: 1;
  }

  .reverse > :last-child {
    order: 0;
  }

  .benefit-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .mobile-cta {
    display: none;
  }

  .floating-whatsapp {
    bottom: 24px;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 1080px) {
  .site-nav a {
    padding: 0.55rem 0.55rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(2, 1, 33, 0.72) 0%, rgba(9, 23, 100, 0.82) 44%, rgba(2, 1, 33, 0.92) 100%);
  }

  .hero-content {
    padding: 4rem 0 2rem;
  }

  .hero-proof {
    max-width: none;
  }

  .hero-lead,
  .hero-support {
    max-width: 100%;
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .trust-grid article {
    grid-template-columns: 50px 1fr;
  }

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

  .section {
    padding: 3.4rem 0;
  }

  .quick-strip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 32px, 358px);
    margin-left: 16px;
    margin-right: auto;
  }

  h1 {
    font-size: 1.95rem;
  }

  .mobile-cta {
    right: auto;
    width: min(100%, 390px);
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 358px);
    margin-left: 12px;
  }

  h1 {
    font-size: 1.82rem;
  }

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

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

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

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