.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: #f4cc43;
}

.btn-outline {
  border-color: rgba(235, 193, 47, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  background: var(--near-black);
  border-bottom: 1px solid rgba(235, 193, 47, 0.22);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 50%, rgba(5, 5, 5, 0.42) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.08) 54%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 84% 24%, rgba(235, 193, 47, 0.14), transparent 18%),
    linear-gradient(120deg, transparent 0 10%, rgba(235, 193, 47, 0.15) 10.08%, transparent 10.2% 100%);
  pointer-events: none;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 86px 0;
}

.page-hero h1 {
  font-size: clamp(2.65rem, 6vw, 5.2rem);
}

.page-hero p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.section-heading p {
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
}

.copy-block h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.copy-block p {
  margin-top: 18px;
  color: var(--muted);
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(235, 193, 47, 0.48);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.service-card {
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.info-card h3,
.service-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.45rem;
}

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

.gold-line {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--danger-free-green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 980px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .split-reverse .image-frame {
    order: 2;
  }

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

@media (max-width: 720px) {
  .page-hero {
    min-height: 390px;
  }

  .page-hero-content {
    padding: 68px 0;
  }

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

  .image-frame img {
    min-height: 310px;
  }

  .btn {
    width: 100%;
  }
}
