/* Fine Conceito — Custom Styles */

html {
  scroll-behavior: smooth;
}

[x-cloak] {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0B0B0B; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0B0B;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

/* Nav link hover underline animation */
.nav-link {
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFFFFF;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.hero-bg-image {
  object-position: 70% center;
  filter: brightness(1.28) contrast(1.1) saturate(1.12);
  transform: scale(1.01);
}

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(5,5,5,0.78) 0%,
    rgba(5,5,5,0.64) 28%,
    rgba(5,5,5,0.28) 54%,
    rgba(5,5,5,0.06) 100%
  );
}

.hero-depth-overlay {
  background: linear-gradient(
    180deg,
    rgba(11,11,11,0.42) 0%,
    rgba(11,11,11,0.02) 28%,
    rgba(11,11,11,0.06) 68%,
    rgba(11,11,11,0.58) 100%
  );
}

.hero-content {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  max-width: 34rem;
  padding-top: 48px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -56px -104px -48px -72px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 34% 46%, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.74) 38%, rgba(0,0,0,0.34) 68%, transparent 100%),
    linear-gradient(90deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.42) 54%, transparent 100%);
}

.hero-title {
  margin: 0 0 24px;
  color: #fff;
  max-width: 8.6ch;
  font-size: clamp(3.4rem, 6.4vw, 6.15rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(0,0,0,0.58);
}

.hero-subtitle {
  max-width: 27rem;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 10px 28px rgba(0,0,0,0.48);
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-bg-image {
    object-position: 72% center;
    filter: brightness(1.18) contrast(1.08) saturate(1.1);
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6,6,6,0.38) 0%, rgba(6,6,6,0.1) 34%, rgba(6,6,6,0.58) 100%),
      linear-gradient(90deg, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.48) 58%, rgba(5,5,5,0.12) 100%);
  }

  .hero-depth-overlay {
    background: linear-gradient(180deg, rgba(11,11,11,0.38) 0%, rgba(11,11,11,0.02) 36%, rgba(11,11,11,0.72) 100%);
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 80px;
  }

  .hero-copy::before {
    inset: -40px -24px -36px -24px;
    background:
      radial-gradient(ellipse at 30% 44%, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.66) 42%, rgba(0,0,0,0.28) 72%, transparent 100%),
      linear-gradient(90deg, rgba(0,0,0,0.54) 0%, rgba(0,0,0,0.28) 64%, transparent 100%);
  }

  .hero-title {
    margin-bottom: 24px;
    max-width: 8.4ch;
    font-size: clamp(2.85rem, 14vw, 3.85rem);
  }

  .hero-subtitle {
    margin-bottom: 32px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Section divider line */
.divider {
  width: 40px;
  height: 2px;
  background: #FFFFFF;
  margin-bottom: 1.5rem;
}

/* Card hover lift */
.card-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Spotlight glow cards */
.spotlight-card {
  --spotlight-color: 255 255 255;
  --spotlight-radius: 16px;
  --spotlight-size: 240px;
  --spotlight-bg-opacity: 0.09;
  --spotlight-border-opacity: 0.7;
  --spotlight-border-base: rgba(255,255,255,0.12);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--spotlight-border-base);
  border-radius: var(--spotlight-radius);
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--spotlight-x, -1000) * 1px)
    calc(var(--spotlight-y, -1000) * 1px),
    rgb(var(--spotlight-color) / var(--spotlight-bg-opacity)),
    transparent 70%
  );
  background-attachment: fixed;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    calc(var(--spotlight-size) * 0.78) calc(var(--spotlight-size) * 0.78) at
    calc(var(--spotlight-x, -1000) * 1px)
    calc(var(--spotlight-y, -1000) * 1px),
    rgb(var(--spotlight-color) / var(--spotlight-border-opacity)),
    transparent 72%
  );
  background-attachment: fixed;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: calc(var(--spotlight-radius) - 1px);
  background: radial-gradient(
    calc(var(--spotlight-size) * 0.56) calc(var(--spotlight-size) * 0.56) at
    calc(var(--spotlight-x, -1000) * 1px)
    calc(var(--spotlight-y, -1000) * 1px),
    rgb(255 255 255 / 0.07),
    transparent 74%
  );
  background-attachment: fixed;
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

.product-spotlight {
  --spotlight-radius: 16px;
  --spotlight-size: 220px;
  --spotlight-bg-opacity: 0.08;
  padding: 8px;
  background-color: rgba(255,255,255,0.025);
  box-shadow: 0 18px 48px rgba(0,0,0,0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-spotlight:hover,
.product-spotlight:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 24px 64px rgba(0,0,0,0.36);
}

.product-image-frame {
  border-radius: 12px;
}

.product-info {
  min-height: 96px;
  padding: 16px 4px 4px;
}

.product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.product-meta-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-meta-value,
.product-price-value {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.product-price-value {
  white-space: nowrap;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow-y: auto;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
}

.product-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  width: min(100%, 1040px);
  max-height: calc(100svh - 48px);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(12,12,12,0.96);
  box-shadow: 0 32px 96px rgba(0,0,0,0.58);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,0.56);
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.product-modal-media {
  position: relative;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #050505;
}

.product-modal-image {
  display: block;
  width: 100%;
  height: min(74svh, 760px);
  object-fit: contain;
  background: #050505;
}

.product-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,0.46);
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-modal-nav:hover,
.product-modal-nav:focus-visible {
  background: rgba(255,255,255,0.16);
}

.product-modal-nav--prev {
  left: 16px;
}

.product-modal-nav--next {
  right: 16px;
}

.product-modal-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  padding: 56px 16px 16px 0;
}

.product-modal-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-modal-value {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.product-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.product-modal-thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  opacity: 0.52;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.product-modal-thumb.is-active,
.product-modal-thumb:hover,
.product-modal-thumb:focus-visible {
  border-color: rgba(255,255,255,0.82);
  opacity: 1;
  transform: translateY(-1px);
}

.product-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 760px) {
  .product-modal {
    align-items: flex-start;
    padding: 16px;
  }

  .product-modal-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: none;
    padding: 12px;
    border-radius: 14px;
  }

  .product-modal-close {
    top: 20px;
    right: 20px;
  }

  .product-modal-image {
    height: auto;
    max-height: 66svh;
    aspect-ratio: 3 / 4;
  }

  .product-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .product-modal-nav--prev {
    left: 10px;
  }

  .product-modal-nav--next {
    right: 10px;
  }

  .product-modal-details {
    gap: 16px;
    padding: 4px 4px 4px;
  }

  .product-modal-thumbs {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

.product-spotlight .pt-3 {
  padding-left: 4px;
  padding-right: 4px;
}

.service-spotlight {
  --spotlight-size: 320px;
  --spotlight-bg-opacity: 0.11;
  --spotlight-border-opacity: 0.78;
  --spotlight-radius: 16px;
}

.service-spotlight-light {
  --spotlight-color: 0 0 0;
  --spotlight-bg-opacity: 0.055;
  --spotlight-border-opacity: 0.18;
  --spotlight-border-base: rgba(0,0,0,0.1);
}

.service-spotlight-light::after {
  background: radial-gradient(
    calc(var(--spotlight-size) * 0.56) calc(var(--spotlight-size) * 0.56) at
    calc(var(--spotlight-x, -1000) * 1px)
    calc(var(--spotlight-y, -1000) * 1px),
    rgb(0 0 0 / 0.045),
    transparent 74%
  );
  background-attachment: fixed;
}

/* Virtual tour */
.virtual-tour-shell {
  overflow: visible;
}

.virtual-tour-shell::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
}

.virtual-tour-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    #090909;
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
}

.virtual-tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.virtual-tour-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: calc(100% - 48px);
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(11,11,11,0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.32);
  pointer-events: none;
}

.virtual-tour-label p {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.48);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.virtual-tour-label span {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
}

/* Campaign CTA */
.promo-cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 168px;
  background:
    radial-gradient(circle at 78% 12%, rgba(27,120,64,0.16), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(210,164,55,0.12), transparent 28%),
    linear-gradient(180deg, #0B0B0B 0%, #111111 48%, #0B0B0B 100%);
  border-y: 1px solid rgba(255,255,255,0.08);
}

.promo-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.promo-cta-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.promo-cta-copy {
  max-width: 48rem;
}

.promo-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.promo-cta-copy p {
  max-width: 38rem;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.7;
}

.promo-cta-carousel {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1916 / 821;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: #050505;
  color: #fff;
  box-shadow:
    0 32px 96px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateZ(0);
}

.promo-cta-carousel::before,
.promo-cta-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.promo-cta-carousel::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 16%, transparent 82%, rgba(0,0,0,0.34)),
    radial-gradient(circle at 50% -12%, rgba(255,255,255,0.18), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.promo-cta-carousel::after {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.34);
}

.promo-cta-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.024);
  filter: saturate(0.94) contrast(1.02);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 5.2s ease,
    filter 0.9s ease;
  will-change: opacity, transform;
}

.promo-cta-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.04) contrast(1.04);
}

.promo-cta-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.promo-cta-shine {
  position: absolute;
  inset: -24%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,0.2) 49%,
    transparent 56%,
    transparent 100%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-62%) skewX(-12deg);
  animation: promo-cta-shine 15s ease-in-out infinite;
}

.promo-cta-progress {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.promo-cta-progress-bar {
  position: relative;
  overflow: hidden;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}

.promo-cta-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #fff, #d9b85e);
}

.promo-cta-progress-bar.is-active::after {
  animation: promo-cta-progress 7s linear forwards;
}

@keyframes promo-cta-progress {
  to {
    transform: scaleX(1);
  }
}

@keyframes promo-cta-shine {
  0%, 18% {
    opacity: 0;
    transform: translateX(-62%) skewX(-12deg);
  }

  26% {
    opacity: 0.42;
  }

  40%, 100% {
    opacity: 0;
    transform: translateX(62%) skewX(-12deg);
  }
}

@media (max-width: 640px) {
  .promo-cta-section {
    scroll-margin-top: 152px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .promo-cta-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .promo-cta-heading .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .promo-cta-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .promo-cta-copy p {
    margin-top: 16px;
  }

  .promo-cta-carousel {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .promo-cta-slide img {
    object-fit: contain;
    object-position: center;
    background: #050505;
  }

  .promo-cta-progress {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

/* Signature brand showcase */
.brand-showcase-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 184px;
  background:
    radial-gradient(circle at 50% -12%, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(circle at 22% 86%, rgba(210,164,55,0.08), transparent 30%),
    linear-gradient(180deg, #0B0B0B 0%, #101010 48%, #0B0B0B 100%);
  border-y: 1px solid rgba(255,255,255,0.08);
}

.brand-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.brand-showcase-heading {
  max-width: 48rem;
  margin: 0 auto 48px;
  text-align: center;
}

.brand-showcase-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.brand-showcase-heading p {
  max-width: 38rem;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.7;
}

.brand-showcase-stage {
  --brand-card-width: 240px;
  --brand-card-height: 180px;
  --brand-gap: 24px;
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  padding: 32px 0;
  border-inline: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05), transparent 20%, transparent 80%, rgba(255,255,255,0.05)),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.018);
}

.brand-showcase-stage::before,
.brand-showcase-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: clamp(80px, 14vw, 192px);
  pointer-events: none;
}

.brand-showcase-stage::before {
  left: 0;
  background:
    linear-gradient(90deg, #0f0f0f 0%, rgba(15,15,15,0.92) 34%, rgba(15,15,15,0.42) 68%, transparent 100%),
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 72%);
}

.brand-showcase-stage::after {
  right: 0;
  background:
    linear-gradient(270deg, #0f0f0f 0%, rgba(15,15,15,0.92) 34%, rgba(15,15,15,0.42) 68%, transparent 100%),
    linear-gradient(270deg, rgba(255,255,255,0.06), transparent 72%);
}

.brand-showcase-track {
  display: flex;
  align-items: center;
  gap: var(--brand-gap);
  width: max-content;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  will-change: transform;
}

.brand-showcase-card {
  position: relative;
  flex: 0 0 auto;
  width: var(--brand-card-width);
  height: var(--brand-card-height);
  overflow: hidden;
  border-radius: 16px;
  background: #f7f5ef;
  box-shadow:
    0 16px 44px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.78);
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.brand-showcase-card::before,
.brand-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

.brand-showcase-card::before {
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.brand-showcase-card::after {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.44) 0%, transparent 24%, transparent 72%, rgba(0,0,0,0.08) 100%),
    radial-gradient(circle at 50% -20%, rgba(255,255,255,0.56), transparent 42%);
  opacity: 0.62;
}

.brand-showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 640px) {
  .product-spotlight {
    padding: 6px;
  }

  .brand-showcase-section {
    scroll-margin-top: 160px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brand-showcase-heading {
    margin-bottom: 32px;
    text-align: left;
  }

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

  .brand-showcase-stage {
    --brand-card-width: 184px;
    --brand-card-height: 138px;
    --brand-gap: 16px;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 24px 0;
    border-inline: 0;
  }

  .brand-showcase-stage::before,
  .brand-showcase-stage::after {
    width: 72px;
  }

  .brand-showcase-card {
    border-radius: 12px;
  }

  .virtual-tour-shell {
    width: 100vw;
    min-height: 100svh;
    margin: 48px calc(50% - 50vw) 0;
  }

  .virtual-tour-shell::before {
    inset: 0;
    border-left: 0;
    border-right: 0;
  }

  .virtual-tour-frame {
    height: 100svh;
    min-height: 680px;
    padding-bottom: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .virtual-tour-frame iframe {
    height: 100%;
  }

  .virtual-tour-label {
    left: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    max-width: calc(100% - 48px);
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-spotlight,
  .service-spotlight,
  .promo-cta-slide,
  .brand-showcase-track {
    transition: none;
  }

  .promo-cta-shine,
  .promo-cta-progress-bar.is-active::after {
    animation: none;
  }

  .promo-cta-progress-bar.is-active::after {
    transform: scaleX(1);
  }

  .product-spotlight:hover,
  .product-spotlight:focus-within {
    transform: none;
  }
}

/* Step number style */
.step-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: -10px;
  left: -10px;
  pointer-events: none;
  user-select: none;
}

/* WhatsApp button pulse */
@keyframes wapulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-pulse { animation: wapulse 2.2s infinite; }

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
}

/* ── TICKER MARQUEE ─────────────────────── */
.ticker-section { padding: 0; }

.ticker-track {
  display: flex;
  width: max-content;
  padding: 1rem 0;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  padding: 0 2.5rem;
  transition: color 0.2s ease;
}
.ticker-item:hover { color: #fff; }

.ticker-check {
  font-size: 0.6rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}

.ticker-sep {
  font-size: 0.35rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
/* ─────────────────────────────────────── */

/* Depoimentos card */
.depo-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

/* Fine Conceito stats */
.fine-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    #0f0f0f;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.fine-stat {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.fine-stat + .fine-stat {
  border-left: 1px solid rgba(255,255,255,0.11);
}

.fine-stat-featured {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 62%);
}

.fine-stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.42rem;
  margin: 0;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.fine-stat-value span:not(.fine-stat-icon) {
  font-size: 0.58em;
  font-weight: 850;
}

.fine-stat-icon {
  align-self: center;
  font-size: 0.68em;
  line-height: 1;
  transform: translateY(-0.05em);
}

.fine-stat-label {
  max-width: 11rem;
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .fine-stats {
    grid-template-columns: 1fr;
  }

  .fine-stat {
    min-height: 124px;
    padding: 1.65rem 1.25rem;
  }

  .fine-stat + .fine-stat {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.11);
  }
}

@media (min-width: 1024px) {
  .fine-stat-value {
    font-size: 3rem;
  }
}

/* Section label tag */
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

/* Horizontal rule dividers */
.hr-faint { border-color: rgba(255,255,255,0.07); }

/* CTA primary button */
.btn-primary {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

/* CTA secondary button */
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary {
    min-height: 56px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  #contato .btn-primary,
  #contato .btn-secondary,
  .promo-cta-heading .btn-primary {
    width: 100%;
  }

  #contato .flex.flex-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .product-info > a {
    min-height: 44px;
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.035);
   }

  .wa-pulse {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ── SLIDESHOW CSS-ONLY ──────────────────────── */
.slide-img { opacity: 0; }
.slide-img-0 { opacity: 1; }

.slide-trigger.slides-2:hover .slide-img-0 { animation: fc-slide2 1.6s ease-in-out infinite 0s; }
.slide-trigger.slides-2:hover .slide-img-1 { animation: fc-slide2 1.6s ease-in-out infinite 0.8s; }

.slide-trigger.slides-3:hover .slide-img-0 { animation: fc-slide3 2.1s ease-in-out infinite 0s; }
.slide-trigger.slides-3:hover .slide-img-1 { animation: fc-slide3 2.1s ease-in-out infinite 0.7s; }
.slide-trigger.slides-3:hover .slide-img-2 { animation: fc-slide3 2.1s ease-in-out infinite 1.4s; }

.slide-trigger.slides-5:hover .slide-img-0 { animation: fc-slide5 4s ease-in-out infinite 0s; }
.slide-trigger.slides-5:hover .slide-img-1 { animation: fc-slide5 4s ease-in-out infinite 0.8s; }
.slide-trigger.slides-5:hover .slide-img-2 { animation: fc-slide5 4s ease-in-out infinite 1.6s; }
.slide-trigger.slides-5:hover .slide-img-3 { animation: fc-slide5 4s ease-in-out infinite 2.4s; }
.slide-trigger.slides-5:hover .slide-img-4 { animation: fc-slide5 4s ease-in-out infinite 3.2s; }

@keyframes fc-slide2 {
  0%   { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes fc-slide3 {
  0%   { opacity: 1; }
  26%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes fc-slide5 {
  0%   { opacity: 1; }
  15%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}

.slide-dot { display: inline-block; height: 6px; border-radius: 9999px; transition: all 0.3s ease; }
.slide-dot-0 { opacity: 1; width: 16px; background: white; }
.slide-dot-1,
.slide-dot-2,
.slide-dot-3,
.slide-dot-4 { opacity: 0.3; width: 6px; background: white; }

.slide-trigger.slides-2:hover .slide-dot-0 { animation: fc-dot2 1.6s steps(1,end) infinite 0s; }
.slide-trigger.slides-2:hover .slide-dot-1 { animation: fc-dot2 1.6s steps(1,end) infinite 0.8s; }

.slide-trigger.slides-3:hover .slide-dot-0 { animation: fc-dot3 2.1s steps(1,end) infinite 0s; }
.slide-trigger.slides-3:hover .slide-dot-1 { animation: fc-dot3 2.1s steps(1,end) infinite 0.7s; }
.slide-trigger.slides-3:hover .slide-dot-2 { animation: fc-dot3 2.1s steps(1,end) infinite 1.4s; }

.slide-trigger.slides-5:hover .slide-dot-0 { animation: fc-dot5 4s steps(1,end) infinite 0s; }
.slide-trigger.slides-5:hover .slide-dot-1 { animation: fc-dot5 4s steps(1,end) infinite 0.8s; }
.slide-trigger.slides-5:hover .slide-dot-2 { animation: fc-dot5 4s steps(1,end) infinite 1.6s; }
.slide-trigger.slides-5:hover .slide-dot-3 { animation: fc-dot5 4s steps(1,end) infinite 2.4s; }
.slide-trigger.slides-5:hover .slide-dot-4 { animation: fc-dot5 4s steps(1,end) infinite 3.2s; }

@keyframes fc-dot2 {
  0%        { opacity: 1; width: 16px; }
  50%, 100% { opacity: 0.3; width: 6px; }
}

@keyframes fc-dot3 {
  0%        { opacity: 1; width: 16px; }
  33%, 100% { opacity: 0.3; width: 6px; }
}

@keyframes fc-dot5 {
  0%        { opacity: 1; width: 16px; }
  20%, 100% { opacity: 0.3; width: 6px; }
}
/* ─────────────────────────────────────────────── */

/* Google Maps */
.map-placeholder {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.fine-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

@media (max-width: 640px) {
  .map-placeholder,
  .fine-map iframe {
    min-height: 340px;
  }
}

/* Premium location map */
.location-concept {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 160px;
  background:
    linear-gradient(180deg, #101010 0%, #0B0B0B 100%);
}

.location-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.08), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(255,255,255,0.055), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 128px);
}

.location-concept::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.52));
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 64px;
  align-items: end;
}

.location-heading h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.location-lead {
  max-width: 32rem;
  margin: 0;
  padding: 32px 0 0 32px;
  border-left: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.64);
  font-size: 1rem;
  line-height: 1.7;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: stretch;
}

.location-panel,
.location-map-shell {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(10,10,10,0.82);
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
  backdrop-filter: blur(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 520px;
  padding: 32px;
}

.location-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-address {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 2.45vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.location-info-item {
  min-height: 144px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.location-info-item span,
.location-link small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.36);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-info-item strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.location-info-item p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}

.location-contact-list {
  display: grid;
  gap: 16px;
}

.location-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.location-link:hover,
.location-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
}

.location-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.location-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.045);
}

.location-map-shell {
  padding: 8px;
}

.location-map {
  position: relative;
  min-height: 520px;
  border-radius: 12px;
  border-color: rgba(255,255,255,0.16);
  background: #080808;
}

.location-map iframe {
  width: 100%;
  min-height: 520px;
  filter: saturate(1.12) contrast(1.02) brightness(0.96);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.location-map:hover iframe,
.location-map:focus-within iframe {
  filter: saturate(1.18) contrast(1.03) brightness(1);
}

.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), transparent 46%, rgba(0,0,0,0.16)),
    linear-gradient(90deg, rgba(0,0,0,0.12), transparent 34%, transparent 72%, rgba(0,0,0,0.08));
}

.location-map-badge,
.location-map-button {
  position: absolute;
  z-index: 2;
}

.location-map-badge {
  top: 24px;
  left: 24px;
  max-width: calc(100% - 48px);
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
}

.location-map-badge span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.44);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-map-badge strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.location-map-button {
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 176px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #fff;
  color: #0B0B0B;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(0,0,0,0.36);
  transition: transform 0.35s ease, background 0.35s ease;
}

.location-map-button:hover,
.location-map-button:focus-visible {
  transform: translateY(-2px);
  background: #e8e8e8;
}

.location-map-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .location-heading,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-heading {
    gap: 32px;
  }

  .location-lead {
    max-width: 40rem;
  }

  .location-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .location-concept {
    scroll-margin-top: 128px;
  }

  .location-lead {
    padding: 24px 0 0 24px;
    font-size: 0.95rem;
  }

  .location-grid {
    gap: 24px;
  }

  .location-panel {
    padding: 24px;
  }

  .location-info-grid {
    grid-template-columns: 1fr;
  }

  .location-info-item {
    min-height: 128px;
  }

  .location-map,
  .location-map iframe {
    min-height: 432px;
  }

  .location-map-badge {
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 16px;
  }

  .location-map-button {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-link,
  .location-map iframe,
  .location-map-button {
    transition: none;
  }

  .location-link:hover,
  .location-link:focus-visible,
  .location-map-button:hover,
  .location-map-button:focus-visible {
    transform: none;
  }
}

/* Premium benefits section */
.benefits-concept {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 160px;
  background: #070707;
}

.benefits-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.96) 0%, rgba(7,7,7,0.84) 48%, rgba(7,7,7,0.58) 100%),
    url("/assets/img/hero-bg.webp") center right / cover no-repeat;
  opacity: 0.56;
  transform: scale(1.03);
}

.benefits-concept::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, #070707 0%, rgba(7,7,7,0.44) 48%, #0B0B0B 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 128px);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.2), #000 28%, #000 76%, rgba(0,0,0,0.12));
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.2), #000 28%, #000 76%, rgba(0,0,0,0.12));
}

.benefits-bg-word {
  position: absolute;
  right: -16px;
  bottom: -48px;
  z-index: 1;
  color: transparent;
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  opacity: 0.28;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  text-stroke: 1px rgba(255,255,255,0.18);
}

.benefits-concept > .max-w-7xl {
  position: relative;
  z-index: 2;
}

.benefits-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 64px;
  align-items: end;
}

.benefits-heading h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.benefits-lead {
  max-width: 32rem;
  margin: 0;
  padding: 32px 0 0 32px;
  border-left: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.66);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  position: relative;
  grid-column: span 2;
  min-height: 256px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.024)),
    rgba(10,10,10,0.84);
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
  backdrop-filter: blur(16px);
  transform: translateZ(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.16) 44%, transparent 64%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 0.64s ease, opacity 0.64s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 48%);
  opacity: 0.56;
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.034)),
    rgba(12,12,12,0.9);
  box-shadow: 0 32px 88px rgba(0,0,0,0.48);
}

.benefit-card:hover::before,
.benefit-card:focus-within::before {
  opacity: 1;
  transform: translateX(120%);
}

.benefit-mark,
.benefit-number,
.benefit-card h3,
.benefit-card p,
.benefit-cta-label,
.benefit-cta-button {
  position: relative;
  z-index: 1;
}

.benefit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  background: rgba(255,255,255,0.06);
}

.benefit-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255,255,255,0.08);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.benefit-card h3 {
  max-width: 18rem;
  margin: 64px 0 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
  text-transform: uppercase;
}

.benefit-card p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  line-height: 1.65;
}

.benefit-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #0B0B0B;
  background: #f4f4f1;
  border-color: rgba(255,255,255,0.72);
  box-shadow: 0 24px 72px rgba(255,255,255,0.08), 0 24px 64px rgba(0,0,0,0.38);
}

.benefit-cta::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.22)),
    url("/assets/img/hero-bg.webp") center right / cover no-repeat;
  opacity: 0.14;
  transform: none;
}

.benefit-cta::after {
  background: linear-gradient(135deg, rgba(255,255,255,0.88), transparent 56%);
  opacity: 0.62;
}

.benefit-cta:hover,
.benefit-cta:focus-within {
  background: #fff;
  border-color: rgba(255,255,255,0.9);
}

.benefit-cta:hover::before,
.benefit-cta:focus-within::before {
  opacity: 0.18;
  transform: none;
}

.benefit-cta-label {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(11,11,11,0.48);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.benefit-cta p {
  max-width: 20rem;
  color: #0B0B0B;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.benefit-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #0B0B0B;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.35s ease, background 0.35s ease;
}

.benefit-cta-button:hover,
.benefit-cta-button:focus-visible {
  background: #202020;
  transform: translateY(-2px);
}

.benefit-cta-button:focus-visible {
  outline: 2px solid #0B0B0B;
  outline-offset: 4px;
}

html.has-reveal .reveal-card {
  opacity: 0;
  transform: translateY(24px);
}

html.has-reveal .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-reveal .reveal-card.is-visible:hover,
html.has-reveal .reveal-card.is-visible:focus-within {
  transform: translateY(-8px);
}

html.has-reveal .benefits-grid .reveal-card:nth-child(1) { transition-delay: 0ms; }
html.has-reveal .benefits-grid .reveal-card:nth-child(2) { transition-delay: 80ms; }
html.has-reveal .benefits-grid .reveal-card:nth-child(3) { transition-delay: 160ms; }
html.has-reveal .benefits-grid .reveal-card:nth-child(4) { transition-delay: 240ms; }
html.has-reveal .benefits-grid .reveal-card:nth-child(5) { transition-delay: 320ms; }
html.has-reveal .benefits-grid .reveal-card:nth-child(6) { transition-delay: 400ms; }

@media (max-width: 1024px) {
  .benefits-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-lead {
    max-width: 40rem;
  }

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

  .benefit-card {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .benefits-concept {
    scroll-margin-top: 128px;
  }

  .benefits-concept::before {
    opacity: 0.36;
    background:
      linear-gradient(180deg, rgba(7,7,7,0.98) 0%, rgba(7,7,7,0.86) 64%, rgba(7,7,7,0.94) 100%),
      url("/assets/img/hero-bg.webp") center / cover no-repeat;
  }

  .benefits-bg-word {
    right: -8px;
    bottom: -16px;
    font-size: 7rem;
  }

  .benefits-heading {
    margin-bottom: 64px;
  }

  .benefits-lead {
    padding: 24px 0 0 24px;
    font-size: 0.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    min-height: 224px;
    padding: 24px;
  }

  .benefit-number {
    top: 24px;
    right: 24px;
    font-size: 3.25rem;
  }

  .benefit-card h3 {
    margin-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .benefit-card::before,
  .benefit-cta-button,
  html.has-reveal .reveal-card {
    transition: none;
  }

  .benefit-card:hover,
  .benefit-card:focus-within,
  .benefit-cta-button:hover,
  .benefit-cta-button:focus-visible,
  html.has-reveal .reveal-card {
    transform: none;
  }

  html.has-reveal .reveal-card {
    opacity: 1;
  }
}
