@font-face {
  font-family: "Gilda Display";
  src: url("/fonts/gilda-display.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilda Display";
  src: url("/fonts/gilda-display-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/fonts/jost-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/fonts/jost-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/fonts/jost-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
:root {
  --bg: #fafaf7;
  --surface: #f4f0e8;
  --white: #fff;
  --dark: #111110;
  --mid: #312d24;
  --light: #564f42;
  --gold: #b08d57;
  --gold-lt: #c9a96e;
  --rule: rgba(176, 141, 87, 0.15);
  --serif: "Gilda Display", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tap: 52px;
}
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}
.rv {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.rv.on {
  opacity: 1;
  transform: none;
}

/* GRAIN TEXTURE – artisanal depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.12;
}
.d1 {
  transition-delay: 0.07s;
}
.d2 {
  transition-delay: 0.14s;
}
.d3 {
  transition-delay: 0.21s;
}
.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 60px 0;
}
section:not(.hero, .proof-band),
footer {
  margin-bottom: -2px;
}
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.s-label::before, .s-label::after {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.65;
}
.s-h {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 6.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}
.s-h em {
  font-style: italic;
  color: var(--gold);
}

/* TRUST BAR */
.trust-bar {
  background: var(--dark);
  padding: 11px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow-x: clip;
  overflow-y: visible;
  scrollbar-width: none;
  white-space: nowrap;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(176, 141, 87, 0.22);
}
.lang-switch {
  position: absolute;
  right: 16px;
}
.lang-btn {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.flag-svg {
  width: 18px;
  height: 12px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-btn .flag-svg {
  margin-right: 1px;
}
.lang-btn:hover {
  color: var(--gold-lt);
  border-color: rgba(201, 169, 110, 0.4);
}
.lang-drop {
  position: absolute;
  right: 0;
  top: calc(100% + 7px);
  background: #1c1c1a;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 4px;
  padding: 4px 0;
  min-width: 58px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s, transform 0.16s;
}
.lang-switch.open .lang-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-opt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.lang-opt:hover {
  color: var(--gold-lt);
  background: rgba(201, 169, 110, 0.08);
}
.lang-opt.act {
  color: var(--gold-lt);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.trust-bar::-webkit-scrollbar {
  display: none;
}
.trust-bar span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}
.trust-bar b {
  color: var(--gold-lt);
  font-weight: 400;
}
.t-sep {
  color: rgba(255, 255, 255, 0.2) !important;
}
.trust-bar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 4px;
  padding: 2px 8px;
  margin: -2px -8px;
  transition: background 0.2s;
}
@media (hover: hover) {
  .trust-bar-link:hover {
    background: rgba(201, 169, 110, 0.1);
    cursor: pointer;
  }
  .trust-bar-link:hover span {
    color: rgba(255, 255, 255, 0.9);
  }
  .trust-bar-link:hover b {
    color: var(--gold);
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100svh - 38px);
  max-height: calc(100svh - 38px);
  display: flex;
  flex-direction: column;
}
.hero-img-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.hero-img-wrap picture,
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.34) 40%,
      rgba(0, 0, 0, 0.74) 74%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    linear-gradient(
      100deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0.58) 100%
    );
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 10px 24px 36px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.hero-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-lt);
  flex-shrink: 0;
}
.hero-kicker::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-lt);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-h1-en,
.hero-h1-fr {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-h1-de,
.hero-h1-nl {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-h1-en em,
.hero-h1-fr em,
.hero-h1-de em,
.hero-h1-nl em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-h1-es {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-h1-es em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  margin-top: 14px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
}
.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.hero-price strong {
  color: var(--gold-lt);
  font-weight: 400;
}
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}
.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a020;
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero-checks {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px 14px;
  margin-top: 16px;
}
.hc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.hc::before {
  content: "✓";
  color: var(--gold-lt);
  font-size: 11px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 0 32px;
  background: rgba(176, 141, 87, 0.42);
  backdrop-filter: blur(10px) saturate(1.5);
  -webkit-backdrop-filter: blur(10px) saturate(1.5);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.45);
  box-shadow: 0 4px 22px rgba(176, 141, 87, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  cursor: pointer;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.22s, box-shadow 0.22s;
}
.btn-primary:active {
  background: rgba(139, 108, 58, 0.78);
  box-shadow: 0 2px 10px rgba(176, 141, 87, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--tap);
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(6px) saturate(1.3);
  -webkit-backdrop-filter: blur(6px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.22s, box-shadow 0.22s;
}
.btn-wa:active {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pg 2s infinite;
}
@keyframes pg {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0);
  }
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.stars {
  color: var(--gold-lt);
  font-size: 13px;
  letter-spacing: 2px;
}
.proof-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}
.proof-text b {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
}

/* PROOF BAND */
.proof-band {
  background: var(--dark);
  padding: 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.proof-item {
  background: var(--dark);
  padding: 36px 18px;
  text-align: center;
}
.proof-n {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1;
}
.proof-n sup {
  font-size: 0.9rem;
  font-style: normal;
  margin-left: 4px;
}
.proof-l {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* BENEFITS */
.benefits {
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
  background: var(--rule);
}
.benefit {
  background: var(--bg);
  padding: 24px 18px;
}
.benefit-ico {
  font-size: 1.35rem;
  margin-bottom: 10px;
  display: block;
}
.benefit h3 {
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}
.benefit p {
  font-size: 0.79rem;
  color: var(--mid);
  line-height: 1.6;
}

/* INLINE MEDIA - distributed visuals */
.section-media {
  margin-top: 26px;
}
.section-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.section-media-grid-tri {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.section-media-item {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--surface);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 420px 520px;
}
.section-media-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.section-media-item.is-landscape img {
  aspect-ratio: 16 / 9;
}
.section-media-item.is-portrait img {
  aspect-ratio: 4 / 5;
}
.section-media-item figcaption,
.hor-lead figcaption,
.hor-card figcaption,
.form-media figcaption {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  max-width: 88%;
  padding: 7px 10px;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--mid);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hor-lead figcaption {
  top: 0;
  bottom: auto;
}

.benefits .section-media-item figcaption,
.process .section-media-item figcaption,
.hor .section-media-item figcaption,
.hor .hor-lead figcaption,
.hor .hor-card figcaption {
  background: var(--bg);
}

.form-section .form-media figcaption {
  background: var(--surface);
}

.section-media-item figcaption.cap-top,
.hor-lead figcaption.cap-top,
.hor-card figcaption.cap-top,
.form-media figcaption.cap-top {
  top: 0;
  bottom: auto;
}

.section-media-item figcaption.cap-one-line,
.hor-lead figcaption.cap-one-line,
.hor-card figcaption.cap-one-line,
.form-media figcaption.cap-one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-media-item.has-bbq-caption,
.hor-card.has-bbq-caption,
.form-media.has-bbq-caption {
  border: none;
}

.section-media-item figcaption.cap-bbq,
.hor-lead figcaption.cap-bbq,
.hor-card figcaption.cap-bbq,
.form-media figcaption.cap-bbq {
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
}

.form-media {
  position: relative;
  margin-top: 18px;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 420px 520px;
}
.form-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* FORM */
.form-section {
  background: var(--surface);
}
.form-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-copy .s-h {
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
}
.form-copy p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  margin-top: 12px;
}
.reassure-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}
.ri {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.81rem;
  color: var(--mid);
  line-height: 1.5;
}
.rc {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-box {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 20px 32px;
  position: relative;
}
.form-box-en {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 20px 32px;
  position: relative;
}
.form-box-ar {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 20px 32px;
  position: relative;
}
.form-box::before {
  content: "SOLICITAR SIN COMPROMISO";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 0 6px;
}
.form-box-ar::before {
  content: "اطلب دون التزام";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 0 6px;
}
.form-box-en::before {
  content: "INQUIRE WITH NO OBLIGATION";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 0 6px;
}
.form-box-de {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 20px 32px;
  position: relative;
}
.form-box-de::before {
  content: "UNVERBINDLICH ANFRAGEN";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 0 6px;
}
.form-box-fr {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 20px 32px;
  position: relative;
}
.form-box-fr::before {
  content: "DEMANDE SANS ENGAGEMENT";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 0 6px;
}
.form-box-nl {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px 20px 32px;
  position: relative;
}
.form-box-nl::before {
  content: "VRIJBLIJVEND AANVRAGEN";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding: 0 6px;
}
.f-time-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.9;
}
.f-progress {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.fp-track {
  flex: 1;
  height: 2px;
  background: var(--rule);
  transition: background 0.3s;
}
.fp-track.done {
  background: var(--gold);
}
.fp-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rule);
  border: 2px solid var(--surface);
  flex-shrink: 0;
  transition: background 0.3s;
}
.fp-node.done {
  background: var(--gold);
}
.f-step-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.f-step-info span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
}
.f-step-info b {
  color: var(--gold);
  font-weight: 400;
}
.f-panel {
  display: none;
}
.f-panel.act {
  display: block;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
}
.field label {
  font-size: 9.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--mid);
}
.field input,
.field select {
  height: var(--tap);
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-bottom: 2px solid rgba(176, 141, 87, 0.2);
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field input::placeholder {
  color: rgba(90, 84, 69, 0.32);
}
.field select option {
  background: #fff;
}
.field-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.privacy-row label {
  font-size: 0.72rem;
  color: var(--light);
  line-height: 1.5;
}
.privacy-row label a {
  color: var(--gold);
  text-decoration: none;
}
.f-nav {
  display: flex;
  gap: 10px;
}
.btn-next {
  flex: 1;
  height: var(--tap);
  background: rgba(17, 17, 16, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.22s, box-shadow 0.22s;
}
.btn-next:active {
  background: rgba(176, 141, 87, 0.72);
  box-shadow: 0 2px 10px rgba(176, 141, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-back {
  height: var(--tap);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(176, 141, 87, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mid);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.06em;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.btn-back:active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(176, 141, 87, 0.1);
}
.form-fine {
  font-size: 10px;
  color: var(--light);
  text-align: center;
  margin-top: 11px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.f-success {
  display: none;
  text-align: center;
  padding: 6px 0;
}
.f-success.show {
  display: block;
}
.success-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.f-success h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.f-success p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.7;
}
.direct-contact {
  border-top: 1px solid var(--rule);
  padding: 22px 20px 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.dc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--tap);
  font-size: 0.83rem;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}
.dc-link:last-child {
  border-bottom: none;
}
.dc-link:active {
  color: var(--gold);
}
.dc-ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* PROCESS – ghost numbers */
.process {
  background: var(--bg);
}
.process-steps {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.process-steps::before {
  display: none;
}
.pstep {
  position: relative;
  overflow: hidden;
  padding: 36px 0;
  z-index: 0;
}
.pstep:last-child {
  border-bottom: none;
}
.pstep-ring {
  font-family: "Playfair Display", var(--serif);
  font-style: italic;
  font-weight: 700;
  font-feature-settings: "lnum" 1;
  font-size: clamp(8rem, 32vw, 14rem);
  color: var(--gold-lt);
  opacity: 0.22;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  pointer-events: none;
  background: transparent;
  border: none;
  border-radius: 0;
  display: block;
  z-index: 0;
}
.pstep-body {
  position: relative;
  z-index: 1;
  max-width: 78%;
  padding-top: 0;
}
.pstep-body h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.pstep-body p {
  font-size: 0.81rem;
  color: var(--mid);
  line-height: 1.65;
}

/* HOR - visual story section */
.hor {
  background: var(--bg);
}
.hor-lead {
  position: relative;
  margin-top: 30px;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--surface);
}
.hor-lead img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.hor-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.hor-card {
  position: relative;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--surface);
  content-visibility: auto;
  contain-intrinsic-size: 420px 540px;
}
.hor-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--surface);
}
.t-scroll {
  margin-top: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 6px;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.t-scroll::-webkit-scrollbar {
  display: none;
}
.t-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-right: 20px;
}
.t-card {
  width: 285px;
  flex-shrink: 0;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 28px rgba(17, 17, 16, 0.07);
  padding: 32px 22px 22px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
@media (hover: hover) {
  .t-card:hover {
    box-shadow: 0 8px 36px rgba(17, 17, 16, 0.13);
    transform: translateY(-2px);
  }
}
.t-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.24;
  position: absolute;
  top: 6px;
  left: 10px;
  pointer-events: none;
}
.t-stars-row {
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 11px;
  display: block;
  position: relative;
}
.t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.91rem;
  line-height: 1.62;
  color: var(--mid);
  margin-bottom: 16px;
  position: relative;
}
.t-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  position: relative;
}
.t-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--dark);
}
.t-meta {
  font-size: 0.68rem;
  color: var(--light);
  margin-top: 1px;
}
.t-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 13px;
}
.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--rule);
  transition:
    background 0.3s,
    width 0.3s;
}
.t-dot.act {
  background: var(--gold);
  width: 15px;
}
.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  background: rgba(176,141,87,.07);
  border: 1.5px solid rgba(176,141,87,.55);
  padding: 13px 28px;
  border-radius: 2px;
  box-shadow: 0 2px 14px rgba(176,141,87,.18);
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.btn-reviews:hover {
  background: rgba(176,141,87,.13);
  border-color: rgba(176,141,87,.85);
  box-shadow: 0 4px 20px rgba(176,141,87,.28);
  transform: translateY(-1px);
}
.btn-reviews .stars {
  letter-spacing: 2px;
  color: var(--gold-lt);
}

/* FAQ */
.faq {
  background: var(--bg);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
  background: var(--rule);
}
.faq-item {
  background: var(--bg);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
  padding: 17px 18px;
  cursor: pointer;
  min-height: var(--tap);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-q h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  flex: 1;
}
.faq-icon {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  transition:
    transform 0.28s,
    background 0.28s,
    border-color 0.28s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.72;
  transition:
    max-height 0.38s var(--ease),
    padding 0.28s;
  padding: 0 18px;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 18px 16px;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 38px 20px 26px;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.footer-logo span {
  color: var(--gold-lt);
}
.footer-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  min-height: 36px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.footer-links a:active {
  color: var(--gold-lt);
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 16px;
  margin-top: 18px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  max-width: 100vw;
  min-height: 70px;
}
.sticky-bar.show {
  transform: translateY(0);
}
.sticky-info {
  flex: 1;
  min-width: 0;
}
.sticky-info strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-info span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}
.btn-sticky {
  height: 44px;
  padding: 0 16px;
  background: rgba(176, 141, 87, 0.65);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 4px 16px rgba(176, 141, 87, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.22s, box-shadow 0.22s;
}
.wa-float {
  position: fixed;
  bottom: 78px;
  right: 14px;
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.36);
  z-index: 199;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: bottom 0.3s var(--ease);
}
.wa-float:active {
  transform: scale(0.92);
}
.wa-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* MOBILE: wa-float oculto hasta que aparece la sticky bar */
@media (max-width: 767px) {
  .wa-float {
    opacity: 0;
    pointer-events: none;
  }
  .wa-float.wa-visible {
    opacity: 1;
    pointer-events: auto;
  }
  /* Fase slide-in (cuando hero ya salió de pantalla) */
  .wa-float.wa-morph {
    pointer-events: auto;
    will-change: transform, border-radius, opacity;
    animation: waMorphSlide 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  /* F1: texto visible en el botón ancho */
  .wa-float.wa-morph::before {
    content: "● WhatsApp";
    position: absolute;
    inset: 0;
    line-height: 52px;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    animation: waTextOut 0.2s 0.18s ease forwards;
  }
  /* F3: icono hace pop después del morph */
  .wa-float.wa-morph svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: waIconPop 0.3s 0.78s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
}
/* F1: slide in como rectángulo, F2: morph a círculo, F3: pop ya gestionado por waIconPop */
@keyframes waMorphSlide {
  0% {
    opacity: 0;
    width: 88vw;
    height: 52px;
    border-radius: 4px;
    transform: translateX(104vw);
    background: rgba(37, 211, 102, 0.1);
    box-shadow: none;
  }
  16% {
    opacity: 1;
    width: 88vw;
    height: 52px;
    border-radius: 4px;
    transform: translateX(0);
    background: rgba(37, 211, 102, 0.2);
    box-shadow: none;
  }
  38% {
    width: 88vw;
    height: 52px;
    border-radius: 4px;
    background: rgba(37, 211, 102, 0.22);
    box-shadow: none;
  }
  62% {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.36);
  }
  100% {
    opacity: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.36);
  }
}
@keyframes waTextOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes waIconPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  55% {
    transform: translate(-50%, -50%) scale(1.32);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .wrap {
    padding: 0 40px;
  }
  section {
    padding: 88px 0;
  }
  .hero {
    flex-direction: row;
    min-height: calc(100vh - 40px);
  }
  .hero-img-wrap img {
    object-position: center center;
  }
  .hero-overlay {
    background: linear-gradient(
      105deg,
      rgba(17, 17, 16, 0.88) 0%,
      rgba(17, 17, 16, 0.56) 45%,
      rgba(17, 17, 16, 0.16) 100%
    );
  }
  .hero-body {
    margin-top: 0;
    padding: 80px 72px;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
  }
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn-primary {
    width: auto;
  }
  .btn-wa {
    width: auto;
    flex: 1;
    min-width: 170px;
  }
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .section-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .section-media-grid-tri {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .section-media-item figcaption,
  .hor-lead figcaption,
  .hor-card figcaption,
  .form-media figcaption {
    font-size: 0.78rem;
    left: 0;
    bottom: 0;
    max-width: 88%;
    padding: 8px 12px;
  }
  .hor-lead figcaption {
    top: 0;
    bottom: auto;
  }
  .section-media-item figcaption.cap-top,
  .hor-lead figcaption.cap-top,
  .hor-card figcaption.cap-top,
  .form-media figcaption.cap-top {
    top: 0;
    bottom: auto;
  }
  .form-layout {
    flex-direction: row;
    gap: 60px;
    align-items: start;
  }
  .form-copy {
    flex: 1;
  }
  .form-box-wrap {
    flex: 1.15;
  }
  .form-box {
    padding: 38px 34px 42px;
  }
  .form-box-en,
  .form-box-de,
  .form-box-fr,
  .form-box-nl {
    padding: 38px 34px 42px;
  }
  .field-2 {
    gap: 14px;
  }
  .process-steps {
    flex-direction: row;
    margin-top: 40px;
  }
  .pstep {
    flex: 1;
    padding: 28px 24px;
    min-height: 200px;
    overflow: hidden;
  }
  .pstep:first-child {
    padding-left: 0;
  }
  .pstep:last-child {
    padding-right: 0;
  }
  .pstep-ring {
    font-size: clamp(6rem, 11vw, 20rem);
    top: 35%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0.2;
  }
  .pstep-body {
    max-width: 100%;
  }
  .hor-grid {
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .t-scroll {
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .t-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    gap: 20px;
    padding: 20px 20px 28px;
  }
  .t-card {
    width: auto;
  }
  .t-dots {
    display: none;
  }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .sticky-bar {
    padding: 8px 24px;
    min-height: 60px;
  }
  .wa-float {
    bottom: 28px;
    right: 22px;
  }
  .sticky-bar.show ~ .wa-float {
    bottom: 80px;
    transition: bottom 0.3s var(--ease);
  }
}
@media (min-width: 1080px) {
  .wrap {
    padding: 0 48px;
  }
  .section-media {
    margin-top: 30px;
  }
  .hor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* TAB-RETURN GLOW – doble pulso dorado al volver a la pestaña */
@keyframes tab-glow {
  0% {
    box-shadow: 0 4px 22px rgba(176,141,87,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
    background: rgba(176,141,87,0.42);
    transform: translateY(0) scale(1);
  }
  18% {
    box-shadow: 0 0 0 7px rgba(201,169,110,0.28), 0 10px 44px rgba(176,141,87,0.65), inset 0 1px 0 rgba(255,255,255,0.34);
    background: rgba(176,141,87,0.68);
    transform: translateY(-2px) scale(1.012);
  }
  38% {
    box-shadow: 0 0 0 1px rgba(201,169,110,0.08), 0 4px 20px rgba(176,141,87,0.26), inset 0 1px 0 rgba(255,255,255,0.22);
    background: rgba(176,141,87,0.44);
    transform: translateY(0) scale(1);
  }
  58% {
    box-shadow: 0 0 0 5px rgba(201,169,110,0.2), 0 7px 34px rgba(176,141,87,0.46), inset 0 1px 0 rgba(255,255,255,0.28);
    background: rgba(176,141,87,0.56);
    transform: translateY(-1px) scale(1.006);
  }
  100% {
    box-shadow: 0 4px 22px rgba(176,141,87,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
    background: rgba(176,141,87,0.42);
    transform: translateY(0) scale(1);
  }
}
.btn-primary.tab-glow {
  animation: tab-glow 1.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* BUTTON INSET SHADOW ANIMATIONS */
@keyframes shadow-inset-center-gold {
  0% {
    box-shadow: 0 4px 22px rgba(176, 141, 87, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 6px 28px rgba(176, 141, 87, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 0 18px 5px rgba(0, 0, 0, 0.22);
  }
}
@-webkit-keyframes shadow-inset-center-gold {
  0% {
    box-shadow: 0 4px 22px rgba(176, 141, 87, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 6px 28px rgba(176, 141, 87, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 0 18px 5px rgba(0, 0, 0, 0.22);
  }
}
@keyframes shadow-inset-center-glass {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 0 18px 5px rgba(0, 0, 0, 0.16);
  }
}
@-webkit-keyframes shadow-inset-center-glass {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 0 18px 5px rgba(0, 0, 0, 0.16);
  }
}
@keyframes shadow-inset-center-dark {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 6px 24px rgba(176, 141, 87, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 18px 5px rgba(0, 0, 0, 0.28);
  }
}
@-webkit-keyframes shadow-inset-center-dark {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 6px 24px rgba(176, 141, 87, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 18px 5px rgba(0, 0, 0, 0.28);
  }
}
@keyframes shadow-inset-center-light {
  0% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 0 14px 4px rgba(0, 0, 0, 0.1);
  }
}
@-webkit-keyframes shadow-inset-center-light {
  0% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 0 14px 4px rgba(0, 0, 0, 0.1);
  }
}

/* HOVER STATES – only on devices that support hover */
@media (hover: hover) {
  .btn-primary:hover {
    background: rgba(150, 116, 58, 0.75);
    -webkit-animation: shadow-inset-center-gold 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: shadow-inset-center-gold 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .btn-wa:hover {
    background: rgba(255, 255, 255, 0.16);
    -webkit-animation: shadow-inset-center-glass 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: shadow-inset-center-glass 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .btn-next:hover {
    background: rgba(176, 141, 87, 0.72);
    -webkit-animation: shadow-inset-center-dark 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: shadow-inset-center-dark 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .btn-back:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(176, 141, 87, 0.08);
    -webkit-animation: shadow-inset-center-light 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: shadow-inset-center-light 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .btn-sticky:hover {
    background: rgba(154, 122, 73, 0.78);
    -webkit-animation: shadow-inset-center-gold 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: shadow-inset-center-gold 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .dc-link:hover {
    color: var(--gold);
  }
  .footer-links a:hover {
    color: var(--gold-lt);
  }
  .faq-q:hover h4 {
    color: var(--gold);
  }
}

/* SCROLL-SNAP – testimonial carousel on mobile */
.t-scroll {
  scroll-snap-type: x mandatory;
}
.t-card {
  scroll-snap-align: start;
}

/* CLOSING CTA */
.closing-cta {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: 'Denistars';
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 18vw, 13rem);
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.closing-cta .wrap {
  position: relative;
  z-index: 1;
}
.closing-cta .s-label {
  color: var(--gold-lt);
}
.closing-cta .s-h {
  color: #fff;
}
.closing-cta .s-h em {
  color: var(--gold-lt);
}
.closing-cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta .btn-primary {
  margin-top: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* AVAILABILITY MSG */
.avail {
  font-size: 0.78rem;
  margin-top: 5px;
  padding: 6px 10px;
  display: none;
  letter-spacing: 0.02em;
}
.avail-ok {
  color: #2a7a3a;
  background: rgba(42, 122, 58, 0.07);
  border-left: 2px solid #2a7a3a;
}
.avail-warn {
  color: #9a6a1a;
  background: rgba(176, 141, 87, 0.1);
  border-left: 2px solid var(--gold);
}
.avail-danger {
  color: #9c1b1b;
  background: rgba(148, 49, 29, 0.1);
  border-left: 2px solid #c01b1b;
}
.d-only {
  display: none;
}
@media (min-width: 768px) {
  .d-only {
    display: block;
    margin-top: 8px;
  }
}
.f-urgency-note {
  font-size: 0.74rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  padding: 6px 0;
  border-top: 1px solid var(--rule);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .urgency-dot,
  .wa-dot {
    animation: none;
  }
  .wa-float,
  .wa-float.wa-morph {
    animation: none;
    transition: none;
    opacity: 1;
    pointer-events: auto;
  }
  .sticky-bar {
    transition: none;
  }
  .faq-a {
    transition: none;
  }
  .faq-icon {
    transition: none;
  }
}
