*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red-900: #5a0a0a;
  --red-800: #7a1010;
  --red-700: #9b1515;
  --red-600: #b81c1c;
  --red-500: #cc2222;
  --red-400: #e03333;
  --red-300: #e85555;
  --yellow-500: #e8c517;
  --yellow-400: #f0d030;
  --yellow-300: #f5dc50;
  --yellow-200: #fae88a;
  --yellow-100: #fdf5cc;
  --black: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-800: #222;
  --gray-700: #333;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #ccc;
  --gray-200: #e5e5e5;
  --gray-100: #f2f2f2;
  --gray-50: #f8f8f8;
  --white: #fff;
  --font-d: "Cormorant Garamond", Georgia, serif;
  --font-b: "Archivo", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-b);
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.ctn {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  --rotateX: 0deg;
  --rotateY: 0deg;
  --glowX: 50%;
  --glowY: 50%;
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--rotateX)) rotateY(var(--rotateY));
  transition: transform .25s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glowX) var(--glowY), rgba(255, 255, 255, .18), transparent 32%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.tilt-card.is-tilting::after { opacity: 1; }

@media (max-width: 768px) {
  .ctn { padding: 0 24px; }
}

.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar-i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: rgba(255, 255, 255, .65);
  margin-left: 20px;
  transition: .3s;
}

.topbar a:hover { color: var(--yellow-400); }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: .4s var(--ease);
}

header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, .06); }

.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo-link { display: inline-flex; align-items: center; }

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 10px 18px;
  border-radius: 6px;
  transition: .3s var(--ease);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--red-500);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

nav a:hover { color: var(--red-600); }
nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red-600) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  margin-left: 12px;
  font-weight: 700 !important;
  transition: .3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--red-500) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 28, 28, .25);
}

.mob-btn {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.mob-btn span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 4px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.mob-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mob-btn.is-open span:nth-child(2) { opacity: 0; }
.mob-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 94vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .8) 0%, rgba(90, 10, 10, .68) 48%, rgba(10, 10, 10, .82) 100%);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  --heroOffset: 0px;
  background: url("assets/fachada-real.png") center 62% / 100% auto no-repeat;
  filter: brightness(.66) contrast(1.08) saturate(1.04);
  transform: translate3d(0, var(--heroOffset), 0) scale(1.015);
  transform-origin: center center;
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--yellow-500), var(--red-500), var(--yellow-500));
}

.hero-grid {
  position: absolute;
  inset: 0;
  --gridOffset: 0px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: translate3d(0, var(--gridOffset), 0);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: .55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-orb-a {
  width: 380px;
  height: 380px;
  top: 8%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 208, 48, .4), transparent 68%);
  animation: orbFloatA 11s ease-in-out infinite;
}

.hero-orb-b {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 42%;
  background: radial-gradient(circle, rgba(224, 51, 51, .28), transparent 70%);
  animation: orbFloatB 14s ease-in-out infinite;
}

.hero-c {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}

.hero-left { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-400);
  margin-bottom: 32px;
  opacity: 0;
  animation: fu .9s var(--ease) .2s forwards;
}

.hero-badge::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--yellow-500);
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fu .9s var(--ease) .35s forwards;
}

.hero h1 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--yellow-400);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  animation: fu .9s var(--ease) .5s forwards;
}

.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--yellow-300);
  margin: -12px 0 30px;
  opacity: 0;
  animation: fu .9s var(--ease) .58s forwards;
}

.hero-slogan::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 208, 48, .2), var(--yellow-400));
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .9s var(--ease) .65s forwards;
}

.btn-p,
.btn-s,
.btn-t,
.cta-wa {
  display: inline-flex;
  align-items: center;
}

.btn-p {
  gap: 12px;
  background: var(--yellow-500);
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 10px;
  transition: .35s var(--ease);
  box-shadow: 0 4px 20px rgba(232, 197, 23, .25);
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232, 197, 23, .35);
  background: var(--yellow-400);
}

.btn-p svg { fill: var(--black); }

.btn-s {
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  font-size: 14px;
  padding: 18px 24px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  transition: .35s var(--ease);
}

.btn-s:hover {
  border-color: var(--yellow-500);
  color: var(--yellow-400);
  background: rgba(232, 197, 23, .04);
}

.btn-t {
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 18px 26px;
  border-radius: 10px;
  border: 1px solid rgba(224, 51, 51, .35);
  background:
    linear-gradient(135deg, rgba(155, 21, 21, .78), rgba(10, 10, 10, .28)),
    rgba(255, 255, 255, .02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transition: .35s var(--ease);
}

.btn-t:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 208, 48, .55);
  color: var(--yellow-200);
  box-shadow: 0 16px 34px rgba(90, 10, 10, .28);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fu 1.1s var(--ease) .6s forwards;
  perspective: 1800px;
}

.hero-showcase {
  position: relative;
  width: 580px;
  height: 560px;
}

.hero-main-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
  border: 1px solid rgba(232, 197, 23, .28);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(74, 8, 8, .92), rgba(10, 10, 10, .96));
  padding: 22px;
}

.hero-main-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .18), transparent 24%),
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .09) 48%, transparent 76%);
  opacity: .45;
  pointer-events: none;
}

.hero-main-img::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 20px;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, .42));
}

.hero-float {
  position: absolute;
  bottom: 18px;
  left: -26px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 197, 23, .24);
  border-radius: 20px;
  padding: 28px;
  min-width: 200px;
  animation: fc 5s ease-in-out infinite;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .3);
}

.hero-main-img,
.hero-loc-badge,
.hero-float,
.signature-copy,
.p-body {
  transform: translateZ(24px);
}

.hero-float h4 {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
}

.hero-float p {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.hero-loc-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--red-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(184, 28, 28, .4);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  opacity: 0;
  animation: fu .9s var(--ease) .8s forwards;
}

.hero-stat h4 {
  font-family: var(--font-d);
  font-size: 38px;
  font-weight: 700;
  color: var(--yellow-400);
}

.hero-stat p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

@keyframes fu {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fc {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes orbFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-28px, 18px, 0) scale(1.08); }
}

@keyframes orbFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(22px, -18px, 0) scale(.95); }
}

.trust {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-i {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-ic {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, rgba(184, 28, 28, .1), rgba(232, 197, 23, .12));
  border: 1px solid rgba(184, 28, 28, .14);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
  color: var(--red-700);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

.trust-i strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
}

.trust-i span {
  font-size: 12px;
  color: var(--gray-500);
}

.svc-s {
  padding: 120px 0;
  background: var(--white);
}

.sec-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 72px;
  align-items: end;
}

.cat-hdr { margin-bottom: 48px; }

.sec-over {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-over::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red-400);
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -1px;
}

.sec-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 480px;
  justify-self: end;
  align-self: end;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
}

.svc-card {
  background: var(--white);
  padding: 44px 32px;
  transition: transform .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
  cursor: pointer;
  position: relative;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--yellow-500));
  transform: scaleX(0);
  transition: transform .5s var(--ease);
}

.svc-card:hover {
  background: rgba(184, 28, 28, .02);
  transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
  box-shadow: 0 28px 60px rgba(10, 10, 10, .08);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  transition: .4s;
}

.svc-card:hover .svc-num { color: var(--red-300); }

.svc-card h3 {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.2;
}

.svc-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.svc-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .3s;
}

.svc-link:hover {
  gap: 14px;
  color: var(--red-700);
}

.mq-s {
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.mq-track {
  display: flex;
  animation: mq 45s linear infinite;
  width: max-content;
}

.mq-track:hover { animation-play-state: paused; }

.mq-item {
  flex-shrink: 0;
  padding: 44px 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.mq-mark {
  min-width: 98px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--yellow-400);
}

.mq-item h4 {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.mq-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  white-space: nowrap;
}

@keyframes mq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cat-s {
  padding: 120px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.cat-s::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(224, 51, 51, .06), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(232, 197, 23, .08), transparent 28%);
  pointer-events: none;
}

.cat-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.cat-filter button {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: .3s var(--ease);
}

.cat-filter button:hover {
  border-color: var(--red-400);
  color: var(--red-600);
}

.cat-filter button.active {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.signature-card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  background:
    radial-gradient(circle at top, rgba(232, 197, 23, .12), transparent 38%),
    linear-gradient(160deg, #200404, #080808 70%);
  box-shadow: 0 24px 60px rgba(10, 10, 10, .08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.signature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 28px 28px 112px;
  transform: scale(1.01);
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, .4));
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .04), rgba(10, 10, 10, .74));
  z-index: 1;
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: -40% 15% auto;
  height: 70%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .16) 46%, transparent 100%);
  transform: rotate(12deg) translateY(-110%);
  transition: transform .8s var(--ease);
  z-index: 2;
  pointer-events: none;
}

.signature-card:hover {
  box-shadow: 0 34px 82px rgba(10, 10, 10, .14);
  border-color: rgba(232, 197, 23, .22);
}

.signature-card:hover::after {
  transform: rotate(12deg) translateY(160%);
}

.signature-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 3;
  color: var(--white);
}

.signature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-300);
  margin-bottom: 12px;
}

.signature-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.signature-copy h3 {
  font-family: var(--font-d);
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.signature-copy p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: none;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 248, 246, 1));
}

.p-card.show { display: block; }

.p-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, .55);
  opacity: .6;
  pointer-events: none;
}

.p-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 70px rgba(10, 10, 10, .1);
  border-color: var(--red-300);
}

.p-vis {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-vis.v1 { background: linear-gradient(135deg, #1a0505, #5a0a0a); }
.p-vis.v2 { background: linear-gradient(135deg, #3a0808, #8a1515); }
.p-vis.v3 { background: linear-gradient(135deg, #0a0a0a, #2a0505); }
.p-vis.v4 { background: linear-gradient(135deg, #4a0808, #9b1515); }

.p-vis::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 197, 23, .08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 197, 23, .05), transparent 50%);
}

.p-vis.photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  padding: 16px 18px 22px;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, .32));
}

.p-vis.photo {
  background:
    radial-gradient(circle at top, rgba(232, 197, 23, .15), transparent 34%),
    linear-gradient(160deg, #230505, #090909 72%);
}

.p-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow-500);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}

.p-vis.brand {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  background-blend-mode: screen, normal;
}

.p-kicker,
.p-vis-title {
  position: relative;
  z-index: 2;
}

.p-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  margin-bottom: 10px;
}

.p-vis-title {
  display: block;
  font-family: var(--font-d);
  font-size: 34px;
  line-height: .95;
  color: var(--white);
  max-width: 180px;
}

.p-watermark {
  position: absolute;
  right: -28px;
  bottom: -22px;
  width: 180px;
  opacity: .12;
  z-index: 1;
  filter: saturate(.9);
}

.p-body {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.p-body h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.p-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.p-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--red-600);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .3s;
}

.p-cta:hover {
  gap: 12px;
  color: var(--red-800);
}

.p-price {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.abt-s {
  padding: 120px 0;
  background: var(--white);
}

.abt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.abt-media { position: relative; }

.abt-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at top, rgba(232, 197, 23, .08), transparent 30%),
    linear-gradient(180deg, #f6f1ea, #e7e0d6);
  position: relative;
  border: 1px solid rgba(10, 10, 10, .06);
}

.abt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  padding: 0;
  filter: none;
}

.abt-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--red-600);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(184, 28, 28, .35);
  border: 4px solid var(--white);
}

.abt-badge span:first-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.abt-badge span:last-child {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
}

.abt-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.abt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.abt-stat h4 {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 700;
  color: var(--red-600);
  line-height: 1;
}

.abt-stat p {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

.cta-s {
  background: linear-gradient(135deg, var(--red-800), var(--red-600));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-s::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 197, 23, .08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, .15), transparent 50%);
}

.cta-in {
  position: relative;
  z-index: 1;
}

.cta-in h2 {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}

.cta-in h2 em {
  color: var(--yellow-400);
  font-style: italic;
}

.cta-in p {
  color: rgba(255, 255, 255, .55);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-wa {
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 20px 44px;
  border-radius: 12px;
  transition: .35s var(--ease);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
}

.cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, .45);
}

.cta-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.loc-s {
  padding: 120px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.loc-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  border: 1px solid var(--gray-200);
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 197, 23, .18), transparent 28%),
    #111;
}

.loc-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 22%, transparent 78%, rgba(0, 0, 0, .12));
  z-index: 2;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.map-label {
  position: absolute;
  left: 50%;
  top: calc(50% - 66px);
  transform: translateX(-50%);
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 10, .82);
  color: var(--yellow-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  border: 1px solid rgba(232, 197, 23, .24);
  pointer-events: none;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, #f9df69, #d9a313);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, .22),
    0 0 0 4px rgba(255, 215, 90, .16);
  border: 2px solid rgba(255, 245, 204, .8);
  z-index: 3;
  pointer-events: none;
}

.map-pin::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, #9b1515, #5a0a0a);
  transform: rotate(45deg);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, .18);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 247, 214, .95);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 18px rgba(249, 223, 105, .45);
}

.loc-det h3 {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 32px;
}

.loc-row {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}

.loc-row:last-child { border-bottom: none; }

.loc-ic {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(184, 28, 28, .12), rgba(232, 197, 23, .14));
  border: 1px solid rgba(184, 28, 28, .12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--red-700);
  flex-shrink: 0;
}

.loc-row h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.loc-row p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.loc-row a {
  color: var(--red-500);
  font-weight: 600;
}

.loc-row a:hover {
  color: var(--red-700);
  text-decoration: underline;
}

footer {
  background: var(--black);
  color: rgba(255, 255, 255, .4);
}

.ft-main {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.ft-logo {
  height: 50px;
  width: auto;
}

.ft-brand-text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 320px;
}

.ft-slogan {
  margin-top: 14px;
  max-width: 340px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--yellow-400);
}

.ft-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 24px;
}

.ft-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  transition: .3s;
}

.ft-col a:hover {
  color: var(--yellow-400);
  padding-left: 4px;
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-credit {
  color: rgba(255, 255, 255, .58);
}

.ft-credit strong {
  color: var(--yellow-400);
  font-weight: 700;
}

.ft-soc {
  display: flex;
  gap: 10px;
}

.ft-soc-main { margin-top: 20px; }

.ft-soc a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: .3s var(--ease);
  color: rgba(255, 255, 255, .45);
  padding: 0;
}

.ft-soc a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ft-soc a:hover {
  border-color: var(--yellow-500);
  color: var(--yellow-400);
  background: rgba(232, 197, 23, .06);
  transform: translateY(-3px);
}

.fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  transition: .35s var(--ease);
}

.fab:hover {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, .55);
}

.fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .signature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-c { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: flex; justify-content: center; }
  .hero-img-bg { background-position: center bottom; }
  .sec-hdr { grid-template-columns: 1fr; }
  .sec-desc { justify-self: start; }
  .abt-grid { grid-template-columns: 1fr; gap: 48px; }
  .loc-grid { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr 1fr; }
  .topbar { display: none; }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  }

  nav.open { display: flex; }

  nav a { text-align: center; }

  .nav-cta { margin-left: 0; margin-top: 8px; }

  .mob-btn { display: flex; }
  .svc-grid, .cat-grid { grid-template-columns: 1fr; }
  .abt-stats { grid-template-columns: 1fr; gap: 16px; }
  .ft-main { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; gap: 16px; text-align: center; }
  .hero-left { text-align: center; }
  .hero-desc { margin: 0 auto 44px; }
  .hero-slogan {
    justify-content: center;
    margin: -10px auto 28px;
  }
  .hero-btns { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-showcase { width: 100%; height: 440px; }
  .hero-main-img { padding: 18px; }
  .hero-float { left: 12px; bottom: 12px; min-width: auto; }
  .hero-loc-badge { left: 12px; right: 12px; width: max-content; max-width: calc(100% - 24px); }
  .signature-card { min-height: 420px; }
  .signature-card img { padding: 22px 22px 136px; }
  .p-vis.photo img { padding: 14px 16px 18px; }
  .fab { width: 58px; height: 58px; right: 20px; bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .tilt-card,
  .tilt-card:hover,
  .svc-card:hover,
  .p-card:hover,
  .signature-card:hover,
  .fab:hover {
    transform: none !important;
  }
}
