.brand-logo {
  display: block;
  width: 88px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .16));
}

.brand-logo-footer {
  width: 190px;
  height: 190px;
  object-position: center;
}

.product-slider {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 31%, rgba(255,255,255,.08), transparent 33%),
    linear-gradient(145deg, #121116 0%, #08080b 100%);
  isolation: isolate;
}

.product-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(.965);
  transition: opacity .75s cubic-bezier(.2,.75,.25,1), transform 1.1s cubic-bezier(.2,.75,.25,1);
  pointer-events: none;
}

.product-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.product-slider .product-slide img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  padding: 18px 18px 28px;
  filter: saturate(.96) contrast(1.03);
}

.product-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7,7,10,.96) 0, rgba(7,7,10,.68) 20%, transparent 48%);
}

.product-variant {
  position: absolute;
  z-index: 5;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(8,8,11,.68);
  backdrop-filter: blur(13px);
}

.product-variant small { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.product-variant strong { color: #fff; font: 700 14px var(--font-head); }

.product-arrow {
  position: absolute;
  z-index: 6;
  top: 46%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(8,8,11,.65);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .25s, background .25s, border-color .25s;
}

.product-arrow:hover { transform: scale(1.08); background: var(--purple); border-color: var(--purple); }
.product-prev { left: 20px; }
.product-next { right: 20px; }

.product-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-dots {
  position: absolute;
  z-index: 6;
  right: 25px;
  bottom: 25px;
  display: flex;
  gap: 8px;
}

.product-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  transition: width .35s, background .35s;
}

.product-dots button.active { width: 31px; background: #fff; }

.feature-large .feature-copy { z-index: 4; right: 95px; }

.hero-content {
  width: min(830px, 62vw);
}

.hero h1 {
  font-size: clamp(3.6rem, 5.5vw, 6rem);
}

.hero h1 > span,
.hero h1 > em {
  display: block;
  white-space: nowrap;
}

.hero h1 > .hero-service-line { font-size: .72em; letter-spacing: -.045em; }

.arrow-line {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 25px;
  height: 12px;
  color: currentColor;
}

.arrow-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.arrow-line::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.arrow-down {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 21px;
  margin-left: 9px;
  vertical-align: middle;
}

.arrow-down::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 17px;
  background: currentColor;
}

.arrow-down::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-3px) rotate(45deg);
}

.feature-icon .arrow-line { width: 23px; }
.feature-wide-copy a { display: inline-flex; align-items: center; gap: 14px; }
.feature-wide-copy a .arrow-line { color: var(--gold); }
.google-reviews-link { display: inline-flex; align-items: center; gap: 12px; }

.proof-line {
  position: relative;
  width: 28px;
  height: 1px;
  margin-top: 13px;
  background: currentColor;
}

.proof-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.real-moments {
  background:
    radial-gradient(circle at 78% 13%, rgba(168, 92, 255, .18), transparent 28%),
    linear-gradient(160deg, #09070f 0%, #120b1d 100%);
  overflow: hidden;
}

.real-moments .section-head h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .82);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 270px;
  gap: 18px;
}

.moment {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #1a1322;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .24);
}

.moment-tall,
.moment-portrait {
  grid-row: span 2;
}

.moment-wide {
  grid-column: span 8;
}

.moments-grid .moment:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; }
.moments-grid .moment:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }
.moments-grid .moment:nth-child(3) { grid-column: 7 / 13; grid-row: 2; }

.moments-grid .moment:nth-child(2) img {
  object-position: center 14%;
}

.moment img,
.setup-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.2, .75, .25, 1), filter .5s;
}

.moment-portrait img {
  object-position: center top;
}

.moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 5, 12, .88), transparent 50%);
  pointer-events: none;
}

.moment:hover img,
.setup-reel figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.moment figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 21px;
  display: flex;
  flex-direction: column;
}

.moment figcaption span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.moment figcaption b {
  margin-top: 3px;
  font: 700 19px var(--font-head);
}

.setup-reel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.setup-reel figure {
  height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
}

.mirror {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  grid-template-areas: "copy visual" "details visual";
  align-items: start;
  column-gap: clamp(55px, 8vw, 130px);
  row-gap: 26px;
  background:
    radial-gradient(circle at 79% 46%, rgba(218, 144, 83, .18), transparent 28%),
    linear-gradient(145deg, #09070f 10%, #160d18 55%, #0c080f 100%);
  overflow: hidden;
}

.mirror::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.mirror-copy,
.mirror-details,
.mirror-visual {
  position: relative;
  z-index: 1;
}

.mirror-copy { grid-area: copy; }
.mirror-details { grid-area: details; }

.mirror-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e7b887;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mirror-label span {
  border-radius: 100px;
  background: linear-gradient(135deg, #f0bf83, #a95f39);
  color: #1a0e0b;
  padding: 5px 10px;
}

.mirror h2 {
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  margin: 20px 0 25px;
}

.mirror h2 em {
  color: transparent;
  font-style: italic;
  font-weight: 500;
  -webkit-text-stroke: 1.5px #e8af76;
}

.mirror-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.mirror-features {
  list-style: none;
  margin: 35px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mirror-features li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(232, 175, 118, .17);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.mirror-features i {
  color: #e8af76;
  font-style: normal;
  font-size: 11px;
}

.mirror-features div {
  display: flex;
  flex-direction: column;
}

.mirror-features b {
  font: 700 15px var(--font-head);
}

.mirror-features span {
  margin-top: 5px;
  color: #a99dac;
  font-size: 13px;
  line-height: 1.45;
}

.mirror-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
}

.mirror-price {
  color: #a99dac;
  font-size: 12px;
}

.mirror-visual {
  grid-area: visual;
  align-self: center;
  width: min(100%, 570px);
  justify-self: center;
  margin: 0;
  padding: 3px;
  border-radius: 34px;
  background: linear-gradient(145deg, #f0bf83, #713a2c, rgba(255, 255, 255, .25));
  box-shadow: 0 40px 110px rgba(0, 0, 0, .5), 0 0 70px rgba(220, 136, 79, .12);
}

.mirror-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  object-position: center 47%;
  border-radius: 31px;
}

.mirror-glow {
  position: absolute;
  inset: 12% -12%;
  border-radius: 50%;
  background: rgba(226, 139, 84, .2);
  filter: blur(80px);
  animation: mirrorPulse 4s ease-in-out infinite;
}

.mirror-badge {
  position: absolute;
  top: 7%;
  left: -8%;
  width: 112px;
  height: 112px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #21100c;
  background: linear-gradient(145deg, #f6d7ae, #bc744c);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  transform: rotate(-9deg);
}

.mirror-badge strong {
  font: 800 29px var(--font-head);
}

.mirror-badge span {
  margin-top: -3px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
}

@keyframes mirrorPulse {
  50% { opacity: .55; transform: scale(1.08); }
}

.field-row > label,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  min-width: 0;
  max-width: 100%;
}

.inquiry-form input[type="date"] {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.inquiry-form .radio input {
  width: 1px;
  height: 1px;
  min-width: 1px;
  max-width: 1px;
}

@media (max-width: 1100px) {
  .brand-logo { width: 82px; height: 62px; }
  .mirror { grid-template-columns: 1fr; grid-template-areas: "copy" "visual" "details"; }
  .mirror-visual { width: min(72vw, 540px); }
  .setup-reel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 75px;
    height: 58px;
  }

  .brand-logo-footer {
    width: 170px;
    height: 170px;
  }

  .product-slider .product-slide img { padding: 14px 10px 96px; }
  .product-arrow { top: 40%; width: 42px; height: 42px; }
  .product-prev { left: 12px; }
  .product-next { right: 12px; }
  .product-variant { top: 14px; left: 14px; }
  .product-dots { right: 17px; bottom: 18px; }
  .feature-large .feature-copy { right: 25px; }

  .hero-content { width: auto; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero h1 > span,
  .hero h1 > em { white-space: normal; }

  .feature-wide-media { height: auto; aspect-ratio: 3 / 2; background: #08060d; }
  .feature-wide-media img { object-fit: cover; object-position: center; }

  .moments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 10px;
  }

  .moment,
  .moment-wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .moment-tall,
  .moment-portrait {
    grid-row: span 2;
  }

  .moments-grid .moment:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .moments-grid .moment:nth-child(2) { grid-column: 2; grid-row: 1; }
  .moments-grid .moment:nth-child(3) { grid-column: 2; grid-row: 2; }

  .moment { border-radius: 18px; }
  .moment figcaption { left: 15px; right: 15px; bottom: 14px; }
  .moment figcaption b { font-size: 14px; }
  .setup-reel { grid-template-columns: 1fr 1fr; gap: 10px; }
  .setup-reel figure { height: 245px; border-radius: 18px; }

  .mirror { row-gap: 28px; }
  .mirror-copy > p { font-size: 16px; }
  .mirror-features { grid-template-columns: 1fr; }
  .mirror-visual { width: calc(100% - 18px); }
  .mirror-badge { left: -4%; width: 92px; height: 92px; }
  .mirror-badge strong { font-size: 23px; }

  .field-row,
  .field-row > label,
  .inquiry-form input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mirror-glow { animation: none; }
  .product-slide { transition: none; }
}

.floating-phone {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 80;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .3), 0 0 0 0 rgba(168, 92, 255, .3);
  transition: transform .3s, box-shadow .3s;
}

.floating-phone:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .36), 0 0 0 7px rgba(168, 92, 255, .12);
}

.floating-phone svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .floating-phone {
    width: 53px;
    height: 53px;
    right: 15px;
    top: auto;
    bottom: 78px;
    z-index: 80;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .3), 0 0 0 0 rgba(168, 92, 255, .3);
  }

  .floating-phone svg {
    width: 23px;
    height: 23px;
  }

  .floating-whatsapp {
    width: auto;
    height: auto;
    right: 15px;
    top: auto;
    bottom: 15px;
    z-index: 80;
    padding: 13px;
    justify-content: initial;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .3);
  }
}
.consent a{color:var(--purple);text-decoration:underline;text-underline-offset:2px}
.form-hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.button-submit:disabled{cursor:wait;opacity:.72;transform:none;box-shadow:none}
.form-status{min-height:1.5em;margin:14px 0 0;text-align:center;font-size:14px;font-weight:700}
.form-status.success{color:#197447}
.form-status.error{color:#a5263d}
.footer-bottom a{margin-left:20px;color:inherit;text-decoration:none}
.footer-bottom a:hover{color:#fff}
@media(max-width:760px){.footer-bottom a{margin:0 18px 0 0}}
