:root {
  --ivory: #fbf3ee;
  --ivory-deep: #f5e9e2;
  --cream: #fbf3ee;
  --cream-deep: #f5e9e2;
  --pink: #e8afc0;
  --pink-deep: #d3849c;
  --pink-panel: #f7dee6;
  --brown: #3d2b26;
  --brown-soft: #6b534b;
  --ink: #241a16;
  --white: #fff;
  --line: rgba(61, 43, 38, 0.14);
  --shadow: 0 22px 60px rgba(61, 43, 38, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

/* Shared LASERRIX inner-page header. */
header {
  position: sticky;
  top: 0;
  z-index: 400;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 243, 238, 0.94);
  backdrop-filter: blur(8px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 7px 24px;
  gap: 10px;
}

.header-left {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--brown);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.open span { background: #fff !important; }

.logo {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}

.lang-switch { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  padding: 6px 4px;
  border: 0;
  background: none;
  color: var(--brown-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  gap: 6px;
}

.lang-current::after {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.lang-switch.open .lang-current::after { margin-top: 3px; transform: rotate(-135deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 84px;
  padding: 8px;
  border-radius: 12px;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lang-switch.open .lang-dropdown { visibility: visible; opacity: 1; transform: translateY(0); }

.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--brown-soft);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.lang-dropdown a:hover { background: var(--cream); color: var(--brown); }

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.header-cta-btn {
  padding: 7px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: #fff !important;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.15s ease;
}

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

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 1px 4px;
  color: var(--brown-soft) !important;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover { text-decoration: underline; text-underline-offset: 2px; }

header.menu-open { border-bottom-color: transparent !important; background: transparent !important; }
header.menu-open .logo,
header.menu-open .lang-current,
header.menu-open .header-phone { color: #fff !important; }
header.menu-open .header-cta-btn { border: 1.5px solid rgba(255, 255, 255, 0.7); background: transparent !important; color: #fff !important; }
header.menu-open .menu-toggle span { background: #fff !important; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  visibility: hidden;
  background: var(--brown);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.nav-overlay.open { visibility: visible; opacity: 1; transform: translateY(0); }

.nav-overlay-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 100vh;
  margin: 0 auto;
  padding: 96px 16px 40px;
  overflow-y: auto;
  gap: 8px;
}

.nav-overlay-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(251, 243, 238, 0.10);
  border-radius: 14px;
  background: rgba(251, 243, 238, 0.06);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nav-overlay-list a:hover { border-color: rgba(251, 243, 238, 0.22); background: rgba(251, 243, 238, 0.14); }
.nav-overlay-list a::after { flex-shrink: 0; margin-left: 12px; color: var(--pink); content: "\2192"; font-size: 15px; opacity: 0.7; }
.nav-overlay-list a[aria-current="page"] { border-color: rgba(232, 175, 192, 0.55); background: rgba(232, 175, 192, 0.18); }

@media (max-width: 480px) {
  .header-inner { padding: 4px 12px; gap: 8px; }
  .header-left { gap: 6px; }
  .logo { font-size: 17px; }
  .menu-toggle { width: 26px; }
  .menu-toggle span { width: 20px; }
  .lang-current { padding: 4px 2px; font-size: 11.5px; }
  .header-cta-btn { padding: 6px 10px; font-size: 11.5px; }
  .header-phone { min-height: 24px; padding: 0 3px; font-size: 12px; }
}

@media (max-width: 350px) {
  .logo { font-size: 15px; }
  .header-cta-btn { padding-inline: 8px; font-size: 11px; }
  .header-phone { font-size: 12px; }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 26px 16px 30px;
  background:
    linear-gradient(rgba(251, 243, 238, 0.56), rgba(251, 243, 238, 0.56)),
    url("/images/voucher-111.jpg") center center / cover no-repeat;
}

.hero-inner,
.section-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(27px, 8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.activation-card {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  margin: 0 auto;
  padding: 20px 18px;
  border: 1px solid rgba(61, 43, 38, 0.13);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.84);
  box-shadow: 0 18px 48px rgba(61, 43, 38, 0.13);
  backdrop-filter: blur(1px);
}

.activation-card h1,
.activation-card h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(27px, 8vw, 38px);
  line-height: 1.15;
}

.form-intro {
  margin: 7px 0 14px;
  color: var(--brown-soft);
  font-size: 16px;
}

.field-label,
.time-options legend {
  display: block;
  width: 100%;
  margin: 0 0 9px;
  padding: 0;
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
}

.phone-input {
  width: 100%;
  min-height: 54px;
  padding: 11px 15px;
  border: 1.5px solid rgba(61, 43, 38, 0.24);
  border-radius: 14px;
  background: #fffdfb;
  color: var(--ink);
  font-size: 18px;
}

.phone-input:focus {
  border-color: var(--pink-deep);
  outline: 3px solid rgba(211, 132, 156, 0.18);
}

.time-options {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
}

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

.time-choice {
  position: relative;
}

.time-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.time-choice label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 9px;
  border: 1.5px solid rgba(61, 43, 38, 0.18);
  border-radius: 14px;
  background: var(--ivory);
  color: var(--brown);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.time-choice input:checked + label {
  border-color: var(--brown);
  background: var(--pink-panel);
  box-shadow: inset 0 0 0 1px var(--brown);
}

.time-choice input:focus-visible + label {
  outline: 3px solid rgba(211, 132, 156, 0.3);
  outline-offset: 2px;
}

.consent {
  margin: 11px 0 10px;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.5;
}

.consent a {
  text-underline-offset: 2px;
}

.submit-button,
.booksy-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.submit-button:hover,
.booksy-cta:hover {
  background: #2c1e1a;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-error {
  display: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff0ee;
  color: #9b2f25;
  font-size: 14px;
  font-weight: 700;
}

.form-error.show {
  display: block;
}

.success-state {
  display: none;
  padding: 8px 0 2px;
  text-align: center;
}

.success-state.show {
  display: block;
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-panel);
  color: var(--brown);
  font-size: 30px;
  font-weight: 900;
}

.success-state h2 {
  font-size: clamp(30px, 8vw, 40px);
}

.success-state p {
  margin: 9px auto 16px;
  color: var(--brown-soft);
  font-size: 16px;
}

.benefits {
  padding: 32px 16px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-title {
  max-width: 720px;
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(29px, 8vw, 44px);
  line-height: 1.15;
}

.benefit-grid {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.benefit-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.benefit-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-panel);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.benefit-card h3 {
  margin: 0 0 7px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 15px;
}

.next-links {
  padding: 22px 16px 34px;
  background: linear-gradient(180deg, rgba(232, 175, 192, 0.08), rgba(232, 175, 192, 0.18));
}

.next-links-grid { display: grid; gap: 9px; }

.next-link {
  display: grid;
  padding: 17px 18px;
  border: 1px solid rgba(211, 132, 156, 0.32);
  border-radius: 18px;
  background: rgba(251, 243, 238, 0.58);
  color: var(--brown);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.next-link:hover { border-color: rgba(61, 43, 38, 0.28); background: rgba(255, 255, 255, 0.78); transform: translateY(-1px); }
.next-link span { color: var(--pink-deep); font-size: 12px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.next-link strong { margin-top: 3px; font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.next-link small { margin-top: 6px; color: var(--brown-soft); font-size: 14px; }

.site-footer {
  padding: 36px 0;
  background: var(--brown);
  color: rgba(251, 243, 238, 0.7);
}

.footer-wrap {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
}

.site-footer .logo {
  color: var(--ivory);
  font-size: 19px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-style: normal;
}

.site-footer a { text-underline-offset: 2px; }
.site-footer .footer-links a:hover { color: #fff; }

.footer-legal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 243, 238, 0.12);
  color: rgba(251, 243, 238, 0.55);
  font-size: 12px;
}

.footer-expert,
.page-updated { overflow-wrap: anywhere; }

.sticky-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.callback-link {
  color: var(--brown-soft);
  font-family: var(--sans);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sticky-bar .callback-link {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
}

.callback-link:hover { color: var(--pink-deep); }

.callback-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(36, 26, 22, 0.55);
}

.callback-overlay.open { display: flex; }

.callback-modal {
  position: relative;
  width: min(100%, 360px);
  padding: 30px 26px 26px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.callback-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--brown);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.callback-modal-close:hover { background: var(--pink-panel); }
.callback-modal h3 { margin: 0 0 6px; color: var(--brown); font-family: var(--serif); font-size: 21px; }
.callback-modal > div > p { margin: 0 0 16px; color: var(--brown-soft); font-size: 13.5px; }
.callback-form label { display: block; margin-bottom: 6px; color: var(--brown); font-size: 12.5px; font-weight: 700; }

.callback-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  margin-bottom: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--brown);
  font-family: var(--sans);
  font-size: 15px;
}

.callback-form input[type="tel"]:focus { border-color: var(--pink-deep); outline: none; }
.callback-form-hp { position: absolute; top: -9999px; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.callback-consent { margin: 6px 0 14px; color: var(--brown-soft); font-size: 11.5px; }
.callback-consent a { color: var(--brown-soft); text-decoration: underline; }
.callback-error { display: none; margin: 0 0 10px; color: #b3261e; font-size: 12.5px; }
.callback-error.show { display: block; }
.callback-success { display: none; }
.callback-success.show { display: block; }
.callback-success p { margin: 0; color: var(--brown); font-size: 15px; text-align: center; }

.callback-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.callback-submit:disabled { cursor: wait; opacity: 0.66; }

@media (min-width: 860px) {
  .sticky-bar { display: none; }
}

@media (min-width: 560px) {
  .header-inner {
    padding-inline: 24px;
  }

  .hero {
    padding: 34px 24px 40px;
  }

  .activation-card {
    padding: 27px;
  }

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

  .benefits,
  .next-links {
    padding-right: 24px;
    padding-left: 24px;
  }

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

@media (min-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .next-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .hero,
  .benefits,
  .next-links {
    padding-right: 13px;
    padding-left: 13px;
  }

  .activation-card {
    padding: 18px 15px;
  }
}

@media (max-width: 859px) {
  body { padding-bottom: 44px; }

  .footer-wrap { padding-right: 16px; padding-left: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { flex-direction: column; align-items: flex-start; gap: 10px; }

  .sticky-bar { min-height: 44px; padding: 0 12px; gap: 0; }
  .sticky-bar .callback-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
