:root {
  --black: #050505;
  --panel: #0b0b0f;
  --panel-2: #111827;
  --orange: #f97316;
  --red: #ef4444;
  --gold: #facc15;
  --white: #ffffff;
  --soft: #e5e7eb;
  --muted: #9ca3af;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(249, 115, 22, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 15%, rgba(239, 68, 68, 0.12), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #08080b 34%, #0b0b0f 100%);
  color: var(--soft);
  font-family: "Poppins", sans-serif;
}

body.loading {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Montserrat", sans-serif;
}

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

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

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

.page-shell {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.container-luxe {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.75);
}

.section-title {
  max-width: 880px;
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 4.75rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.8;
}

.text-metal {
  background: linear-gradient(100deg, #fff 0%, #d4d4d8 24%, #facc15 50%, #f97316 76%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.luxe-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.92), rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 15% 0%, rgba(249, 115, 22, 0.16), transparent 26rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.luxe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.luxe-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 28px 90px rgba(249, 115, 22, 0.14), 0 28px 90px rgba(0, 0, 0, 0.55);
}

.luxe-card:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.btn-primary {
  color: #08080b;
  background: linear-gradient(135deg, var(--gold), var(--orange) 55%, var(--red));
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.12);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.22);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #030303;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: min(260px, 74vw);
  text-align: center;
}

.loader-logo {
  display: flex;
  justify-content: center;
}

.loader-logo .brand-logo {
  height: 94px;
}

.loader-line {
  height: 3px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--gold));
  animation: loaderMove 1.1s infinite ease-in-out;
}

@keyframes loaderMove {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(245%); }
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--gold));
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(248, 250, 252, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(17, 24, 39, 0.16);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(5, 5, 5, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a {
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.06);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.08);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58) 46%, rgba(5, 5, 5, 0.88)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35), #050505 95%);
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.15); }
}

.particle-field,
.light-streaks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle-field span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.72);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.85);
  animation: floatParticle 8s infinite ease-in-out;
}

.particle-field span:nth-child(1) { left: 12%; top: 22%; animation-delay: 0s; }
.particle-field span:nth-child(2) { left: 78%; top: 18%; animation-delay: 1.2s; }
.particle-field span:nth-child(3) { left: 50%; top: 34%; animation-delay: 2.4s; }
.particle-field span:nth-child(4) { left: 84%; top: 62%; animation-delay: 3.2s; }
.particle-field span:nth-child(5) { left: 24%; top: 72%; animation-delay: 4s; }
.particle-field span:nth-child(6) { left: 64%; top: 80%; animation-delay: 5s; }

@keyframes floatParticle {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.22; }
  50% { transform: translate3d(28px, -34px, 0); opacity: 1; }
}

.light-streaks::before,
.light-streaks::after {
  content: "";
  position: absolute;
  left: -22%;
  width: 56%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.85), rgba(239, 68, 68, 0.8), transparent);
  filter: blur(0.4px);
  opacity: 0.65;
  animation: streak 4.8s infinite ease-in-out;
}

.light-streaks::before { top: 31%; }
.light-streaks::after { top: 58%; animation-delay: 1.9s; }

@keyframes streak {
  to { transform: translateX(250%); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(2.65rem, 7.4vw, 7.6rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  max-width: 760px;
  color: rgba(229, 231, 235, 0.88);
  font-size: clamp(1rem, 1.65vw, 1.25rem);
  line-height: 1.75;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.trust-card {
  min-height: 94px;
  padding: 16px;
  border-radius: 8px;
}

.trust-card strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1.25;
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.77rem;
}

.image-card {
  overflow: hidden;
  border-radius: 8px;
  background: #0a0a0a;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.image-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.06);
}

.service-card {
  min-height: 430px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.price-pill {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.price-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.price-pill strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
}

.package-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.86rem;
  line-height: 1.55;
}

.package-feature-list li {
  display: flex;
  gap: 8px;
}

.package-feature-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.55);
}

.service-card .media {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.service-card .media::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(5, 5, 5, 0.94));
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.icon-badge {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.34);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.check-item i {
  color: var(--gold);
}

.before-after {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: #070707;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after .after-img {
  clip-path: inset(0 0 0 50%);
}

.before-after input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.85);
}

.ba-divider::after {
  content: "\2194";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #050505;
  font-weight: 900;
}

.label-chip {
  position: absolute;
  top: 16px;
  z-index: 5;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-before { left: 16px; }
.label-after { right: 16px; }

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

.timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.72), rgba(250, 204, 21, 0));
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 22px 16px;
  text-align: center;
}

.step-num {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.26), rgba(5, 5, 5, 0.92));
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 0 16px;
  border-radius: 8px;
  break-inside: avoid;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: #050505;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.swiper {
  width: 100%;
  padding-bottom: 54px !important;
}

.testimonial-card {
  min-height: 310px;
  padding: 28px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.75;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding-bottom: 22px;
}

.faq-item .faq-question i {
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.form-control {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
}

textarea.form-control {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
}

.form-control:focus {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

select.form-control option {
  color: #111827;
}

.map-placeholder {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(17, 24, 39, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #050505;
  box-shadow: 0 0 0 16px rgba(249, 115, 22, 0.13), 0 0 60px rgba(249, 115, 22, 0.48);
}

.footer {
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #f3f4f6);
  color: #111827;
}

.footer .brand-logo {
  height: 118px;
}

.footer h3,
.footer .text-white {
  color: #050505 !important;
}

.footer .text-gray-400,
.footer .text-gray-500 {
  color: #4b5563 !important;
}

.footer a:hover {
  color: var(--red);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn,
.scroll-top {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.float-btn.whatsapp {
  background: #16a34a;
}

.float-btn.call {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.scroll-top {
  border: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn:hover,
.scroll-top:hover {
  transform: translateY(-3px);
}

.page-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 70px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.52)), linear-gradient(180deg, transparent, #050505);
}

.page-hero > .container-luxe {
  position: relative;
  z-index: 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 86svh;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.72);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-menu {
    position: fixed;
    inset: 106px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    display: flex;
  }

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

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

  .menu-toggle {
    display: grid;
  }

  .brand-logo {
    height: 82px;
  }

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

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

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

@media (max-width: 640px) {
  .container-luxe {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 150px;
  }

  .nav-wrap {
    min-height: 104px;
  }

  .brand-logo {
    height: 74px;
  }

  .footer .brand-logo {
    height: 94px;
  }

  .nav-menu {
    inset: 104px 12px auto 12px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.75rem);
  }

  .trust-grid,
  .timeline,
  .check-grid,
  .package-feature-list {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }

  .hero-actions {
    padding-right: 58px;
  }

  .floating-actions {
    right: 12px;
    bottom: 14px;
  }

  .float-btn,
  .scroll-top {
    width: 44px;
    height: 44px;
  }
}
