:root {
  --vpp-primary: #ff4da6;
  --vpp-primary-dark: #ff1a8c;
  --vpp-secondary: #0f0f14;
  --vpp-secondary-soft: #1a1a22;
  --vpp-secondary-muted: #232331;
  --vpp-text: #ffffff;
  --vpp-text-soft: #bebecd;
  --vpp-white: #ffffff;
  --vpp-soft-white: rgba(255, 255, 255, 0.1);
  --vpp-soft-border: rgba(255, 255, 255, 0.12);
  --vpp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
  --vpp-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
  --vpp-shadow-lg: 0 18px 36px rgba(0, 0, 0, 0.42);
  --vpp-shadow-xl: 0 24px 50px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #1a1a22 0%, #0f0f14 100%);
  background-attachment: fixed;
  color: var(--vpp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255, 77, 166, 0.11) 0%, transparent 52%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.section-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.65rem;
}

.section-heading,
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading.text-start {
  text-align: left;
}

.section-heading h1,
.section-heading h2,
.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  color: var(--vpp-text);
  margin: 0 0 0.75rem;
}

.section-heading p,
.section-header p {
  font-size: 1.125rem;
  color: var(--vpp-text-soft);
  max-width: 640px;
  margin: 0 auto;
}

.section-pad,
section {
  padding: 4rem 0;
}

.alt-surface,
.page-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 20, 0.92);
  border-bottom: 1px solid var(--vpp-soft-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--vpp-shadow-sm);
}

.header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(180deg, rgba(255, 77, 166, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 72px;
  width: auto;
  border-radius: 8px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switcher-popup {
  position: relative;
}

.language-switcher-popup summary {
  list-style: none;
}

.language-switcher-popup summary::-webkit-details-marker {
  display: none;
}

.language-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--vpp-text);
  cursor: pointer;
}

.language-switcher-current-flag {
  font-size: 2.25rem;
  line-height: 1;
}

.language-switcher-caret {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.language-switcher-popup[open] .language-switcher-caret {
  transform: rotate(225deg) translateY(-1px);
}

.language-switcher-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 0.2rem;
  padding: 0.55rem;
  background: rgba(15, 15, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: var(--vpp-shadow-lg);
  z-index: 30;
}

.language-menu-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  text-decoration: none;
  border-radius: 12px;
  color: var(--vpp-text);
  transition: background 0.2s ease, transform 0.2s ease;
}

.language-menu-item:hover,
.language-menu-item:focus-visible {
  background: rgba(255, 77, 166, 0.1);
  transform: translateX(2px);
}

.language-menu-item.is-active {
  background: rgba(255, 77, 166, 0.14);
}

.language-menu-flag {
  font-size: 2rem;
  line-height: 1;
}

.language-menu-copy {
  display: grid;
  gap: 0.05rem;
}

.language-menu-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.language-menu-copy small {
  color: var(--vpp-text-soft);
  font-size: 0.76rem;
}

.menu-toggle {
  min-width: 124px;
}

.menu-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.menu-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-menu {
  --bs-offcanvas-width: min(252px, 72vw);
  background: rgba(15, 15, 20, 0.98);
  color: var(--vpp-text);
  border-left: 1px solid var(--vpp-soft-border);
}

.site-menu .offcanvas-header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1rem 0.85rem;
}

.site-menu .offcanvas-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.site-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.82rem 0.82rem 0.95rem;
}

.site-menu-header-copy {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.15rem;
  padding-inline: 1.1rem;
}

.site-menu-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vpp-text-soft);
  margin-bottom: 0.35rem;
}

.site-menu .offcanvas-title {
  margin: 0;
}

.site-menu-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-menu-logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: min(54vw, 188px);
  border-radius: 10px;
  margin-inline: auto;
}

.site-menu-links {
  display: grid;
  gap: 0.45rem;
}

.site-menu-links a {
  display: block;
  padding: 0.72rem 0.76rem;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--vpp-text);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-menu-links a:hover {
  background: rgba(255, 77, 166, 0.12);
  border-color: rgba(255, 77, 166, 0.32);
  transform: translateX(2px);
}

.site-menu-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  width: 100%;
}

.site-menu-actions-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
}

.site-menu-contact-btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.72rem 0.45rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.site-menu-contact-btn-full {
  width: 100%;
  flex: 1 1 100%;
}

.site-menu-actions-helper {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd7ec;
  margin: 0;
}

.site-menu-language-note {
  margin-top: 0.1rem;
  color: #ffd7ec;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
}

.site-menu-languages {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 0;
  margin: 0 auto;
}

.site-menu-language {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  min-width: 1.5rem;
  min-height: 1.5rem;
  flex: 0 0 auto;
  color: var(--vpp-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.82;
}

.site-menu-language:hover,
.site-menu-language:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.site-menu-language.is-active {
  opacity: 1;
  transform: scale(1.06);
}

.site-menu-language-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.site-menu-language::after {
  content: attr(data-language-label);
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0, 0, 0, 0.88);
  color: #fff7fb;
  padding: 0.28rem 0.48rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-menu-language:hover::after,
.site-menu-language:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--vpp-shadow);
}

.btn:focus,
.btn:focus-visible,
.btn:active {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.2);
}

.btn-primary {
  background: var(--vpp-primary);
  border-color: var(--vpp-primary);
  color: var(--vpp-secondary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
  background: var(--vpp-primary-dark);
  border-color: var(--vpp-primary-dark);
  color: var(--vpp-secondary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--vpp-text);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 77, 166, 0.65);
  color: #ffd8ea;
}

.btn-white {
  background: var(--vpp-white);
  border-color: var(--vpp-white);
  color: var(--vpp-secondary);
}

.btn-white:hover {
  background: #f5f5f7;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 77, 166, 0.15), transparent 56%);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--vpp-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: #ff8fc7;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.92;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-availability {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.availability-number {
  text-align: center;
}

.availability-number .count {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #ff8fc7;
}

.availability-number .label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.availability-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.24);
}

.availability-text {
  text-align: left;
}

.availability-text strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.availability-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-ctas .btn {
  min-width: 200px;
}

.fastest-response {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.fastest-response svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lead-magnet {
  background: linear-gradient(135deg, rgba(255, 77, 166, 0.96) 0%, rgba(255, 26, 140, 0.92) 100%);
}

.lead-magnet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.lead-magnet-content {
  flex: 1;
  min-width: 280px;
}

.lead-magnet-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  color: var(--vpp-secondary);
}

.lead-magnet-content p {
  color: rgba(15, 15, 20, 0.86);
  margin: 0;
}

.lead-magnet-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  flex: 1;
  min-width: 300px;
  align-items: start;
}

.lead-magnet-field {
  min-width: 0;
}

.lead-magnet-field input,
.lead-magnet-form button {
  min-height: 50px;
}

.lead-magnet-field input {
  padding: 0.875rem 1.1rem;
  border: 2px solid rgba(15, 15, 20, 0.12);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}

.lead-magnet-field input:focus {
  outline: none;
  border-color: rgba(15, 15, 20, 0.32);
}

.lead-turnstile {
  grid-column: 1 / -1;
  min-height: 80px;
}

.lead-turnstile.d-none {
  display: none !important;
}

.lead-magnet-form button {
  padding: 0.875rem 1.5rem;
  background: var(--vpp-secondary);
  color: var(--vpp-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.lead-magnet-form.is-submitting {
  opacity: 0.88;
}

.lead-magnet-form button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.lead-magnet-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--vpp-shadow-sm);
}

.lead-magnet-status.is-success {
  display: block;
  background: rgba(255, 255, 255, 0.94);
  color: var(--vpp-primary-dark);
}

.lead-magnet-status.is-error {
  display: block;
  background: rgba(15, 15, 20, 0.92);
  color: #ffd8ea;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lead-magnet-note {
  font-size: 0.75rem;
  color: rgba(15, 15, 20, 0.68);
  margin-top: 0.75rem;
}

.about-section,
.faq-section,
.pricing,
.contact {
  scroll-margin-top: 96px;
}

.about-section {
  background: rgba(255, 255, 255, 0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: rgba(20, 20, 30, 0.92);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  padding: 1.7rem;
  box-shadow: var(--vpp-shadow);
}

.about-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.about-card p {
  margin: 0;
  color: var(--vpp-text-soft);
}

.sticky-contact {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sticky-contact a,
.sticky-contact button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vpp-shadow-lg);
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.sticky-contact a:hover,
.sticky-contact button:hover {
  transform: scale(1.08);
}

.sticky-contact a svg,
.sticky-contact button svg {
  width: 28px;
  height: 28px;
  fill: var(--vpp-white);
}

.phone-btn,
.text-btn {
  background: var(--vpp-primary);
}

.email-btn {
  background: var(--vpp-secondary-soft);
}

.availability-banner {
  background: rgba(20, 20, 30, 0.9);
  border-top: 1px solid var(--vpp-soft-border);
  border-bottom: 1px solid var(--vpp-soft-border);
  padding: 1rem 0;
}

.availability-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.availability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.availability-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 77, 166, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-item .icon svg {
  width: 20px;
  height: 20px;
  fill: #ff9ac7;
}

.availability-item .text strong {
  display: block;
  font-size: 1rem;
  color: var(--vpp-text);
}

.availability-item .text span {
  font-size: 0.8125rem;
  color: var(--vpp-text-soft);
}

.pricing {
  background: transparent;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}

.pricing-card {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--vpp-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--vpp-shadow-xl);
}

.featured-card {
  border-color: rgba(255, 77, 166, 0.5);
}

.pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.price .amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #ff8fc7;
}

.price .period {
  font-size: 1rem;
  color: var(--vpp-text-soft);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
}

.availability-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.availability-badge.in-stock {
  background: rgba(255, 77, 166, 0.16);
  color: #ffd8ea;
}

.availability-badge.request {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.features li:last-child {
  border-bottom: none;
}

.features svg {
  width: 18px;
  height: 18px;
  fill: #ff8fc7;
  flex-shrink: 0;
}

.quote-panel {
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-copy {
  margin-top: 1rem;
}

.quote-copy {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--vpp-text-soft);
}

.pricing-actions {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.pricing-subnote {
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: var(--vpp-text-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.booking-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-grid label span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.booking-grid input,
.booking-grid select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--vpp-text);
  padding: 0.8rem 0.95rem;
  font: inherit;
}

.booking-grid input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.booking-grid input:focus,
.booking-grid select:focus {
  outline: none;
  border-color: rgba(255, 77, 166, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.12);
}

.booking-grid-full {
  grid-column: 1 / -1;
}

.booking-toggles {
  display: grid;
  gap: 0.55rem;
  margin: 0.95rem 0 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
}

.toggle-row input {
  accent-color: var(--vpp-primary);
}

.booking-submit,
.booking-pay {
  width: 100%;
  margin-top: 0.65rem;
}

.booking-page {
  padding-top: 3rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.booking-shell,
.booking-summary-card {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  box-shadow: var(--vpp-shadow);
}

.booking-shell {
  padding: 2rem;
}

.booking-quote-panel {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.booking-form-header {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.booking-form-header h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.booking-form-header p {
  margin: 0;
  color: var(--vpp-text-soft);
}

.booking-page-form .booking-grid {
  gap: 0.9rem;
}

.booking-page-toggles {
  margin-top: 1.25rem;
}

.booking-submit-row {
  margin-top: 1.1rem;
}

.booking-payment-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.booking-summary-card {
  padding: 1.6rem;
  position: sticky;
  top: 110px;
}

.booking-summary-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
}

.booking-summary-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: #ff8fc7;
  margin-bottom: 0.8rem;
}

.booking-summary-copy,
.booking-summary-note,
.booking-summary-helper {
  color: var(--vpp-text-soft);
}

.booking-summary-copy {
  margin: 0.95rem 0 1rem;
}

.booking-summary-features {
  margin-bottom: 1rem;
}

.booking-summary-note {
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
}

.booking-summary-helper {
  font-size: 0.82rem;
}

.pricing-note {
  text-align: center;
  color: var(--vpp-text-soft);
  font-size: 0.9375rem;
  margin-top: 1.4rem;
}

.result-panel {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.result-success {
  border-color: rgba(255, 77, 166, 0.35);
  background: rgba(255, 77, 166, 0.1);
}

.result-warning {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.result-note {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 143, 199, 0.28);
  background: rgba(255, 77, 166, 0.07);
}

.result-header,
.result-grid {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.result-grid {
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.result-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
}

.result-value {
  color: var(--vpp-text);
  font-size: 0.94rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--vpp-text);
  font-size: 0.78rem;
}

.result-block {
  margin-top: 0.9rem;
}

.result-block ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
}

.gallery {
  background: var(--vpp-white);
}

.gallery .section-header h2,
.gallery .section-header p {
  color: var(--vpp-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.section-header-left {
  text-align: left;
}

.gallery-page-stack {
  display: grid;
  gap: 3rem;
}

.gallery-page-stack .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-section-group {
  display: grid;
  gap: 1.4rem;
}

.gallery-item,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 280px;
  background: #0f0f14;
}

.gallery-item img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-card:hover img {
  transform: scale(1.04);
}

.overlay,
.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.overlay span,
.gallery-card figcaption strong,
.gallery-card figcaption span {
  color: var(--vpp-white);
  font-weight: 600;
}

.gallery-card figcaption {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.gallery-card-large {
  min-height: 24rem;
}

.gallery-grid-photos .gallery-card {
  min-height: 20rem;
}

.gallery-card-bare img {
  object-fit: cover;
}

.gallery-empty-state {
  border: 1px dashed rgba(255, 77, 166, 0.35);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--vpp-text-soft);
}

.gallery-link {
  text-align: center;
  margin-top: 2rem;
}

.gallery-link .btn-outline {
  background: rgba(15, 15, 20, 0.94);
  border-color: rgba(15, 15, 20, 0.94);
  color: #fff2f8;
}

.gallery-link .btn-outline:hover {
  background: var(--vpp-primary);
  border-color: var(--vpp-primary);
  color: var(--vpp-secondary);
}

.reviews {
  background: rgba(255, 255, 255, 0.03);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(20, 20, 30, 0.9);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--vpp-soft-border);
  box-shadow: var(--vpp-shadow);
  position: relative;
}

.review-card::before {
  content: "\"";
  position: absolute;
  top: 0.85rem;
  right: 1.35rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: rgba(255, 77, 166, 0.24);
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: #ff8fc7;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--vpp-text);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vpp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vpp-white);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

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

.review-avatar span {
  position: relative;
  z-index: 1;
}

.review-avatar.has-image span {
  opacity: 0;
}

.review-info strong {
  display: block;
  font-size: 0.9375rem;
}

.review-info span {
  font-size: 0.8125rem;
  color: var(--vpp-text-soft);
}

.service-areas {
  background: transparent;
}

.zip-checker {
  background: rgba(20, 20, 30, 0.9);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--vpp-soft-border);
  box-shadow: var(--vpp-shadow);
  max-width: 680px;
  margin: 0 auto 3rem;
}

.zip-promo {
  background: linear-gradient(135deg, rgba(255, 77, 166, 0.95) 0%, rgba(255, 26, 140, 0.92) 100%);
  color: var(--vpp-white);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.zip-promo span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.zip-promo svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.zip-checker h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-align: center;
}

.zip-checker p {
  text-align: center;
  color: var(--vpp-text-soft);
  margin-bottom: 1.5rem;
}

.zip-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.zip-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--vpp-text);
}

.zip-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.zip-form input:focus {
  outline: none;
  border-color: rgba(255, 77, 166, 0.7);
}

.zip-result {
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  display: none;
}

.zip-result.show {
  display: block;
}

.zip-result.success,
.zip-result.warning {
  background: rgba(255, 77, 166, 0.1);
  border: 1px solid rgba(255, 77, 166, 0.35);
}

.zip-result.error {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.result-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.result-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
}

.result-detail {
  font-size: 0.875rem;
  color: var(--vpp-text-soft);
  margin-top: 0.5rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: rgba(20, 20, 30, 0.9);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--vpp-soft-border);
  box-shadow: var(--vpp-shadow);
}

.area-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--vpp-shadow-lg);
}

.area-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 77, 166, 0.94) 0%, rgba(255, 26, 140, 0.92) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.area-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--vpp-white);
}

.area-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.area-meta {
  color: var(--vpp-text-soft);
  font-size: 0.875rem;
  margin: 0 0 0.85rem;
}

.area-discount {
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.area-discount strong {
  color: #ff8fc7;
}

.strikethrough {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.48);
}

.area-chip {
  display: inline-block;
  background: rgba(255, 77, 166, 0.18);
  color: #ffd8ea;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.discounts-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 77, 166, 0.2), transparent 52%);
  pointer-events: none;
}

.discounts-page {
  position: relative;
}

.discounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.discounts-card,
.discounts-detail-card,
.discounts-cta-card {
  background: rgba(20, 20, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--vpp-shadow-lg);
}

.discounts-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.discounts-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff4da6, #ff1a8c);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.discounts-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 77, 166, 0.95), rgba(255, 26, 140, 0.92));
  margin-bottom: 1.2rem;
}

.discounts-icon svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.discounts-card h2,
.discounts-detail-card h2,
.discounts-cta-card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
}

.discounts-card p,
.discounts-cta-card p,
.discounts-detail-card li {
  color: rgba(255, 255, 255, 0.78);
}

.discounts-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.45rem;
  padding: 0.8rem 1.2rem;
  border: 2px dashed rgba(255, 77, 166, 0.58);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffd7ec;
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.discounts-note {
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}

.discounts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
}

.discounts-detail-card,
.discounts-cta-card {
  padding: 1.85rem;
}

.discounts-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.discounts-points li + li {
  margin-top: 0.7rem;
}

.discounts-cta-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.crm-page {
  background: linear-gradient(180deg, rgba(255, 77, 166, 0.04) 0%, transparent 100%);
}

.crm-alert {
  border-radius: 16px;
  border: 1px solid var(--vpp-soft-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff7fb;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
}

.crm-alert code {
  color: #ff9ac7;
}

.crm-alert-success {
  border-color: rgba(92, 231, 197, 0.4);
  background: rgba(92, 231, 197, 0.08);
}

.crm-alert-warning {
  border-color: rgba(255, 154, 199, 0.4);
  background: rgba(255, 77, 166, 0.08);
}

.crm-alert-error {
  border-color: rgba(255, 77, 166, 0.4);
  background: rgba(255, 77, 166, 0.1);
}

.crm-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.crm-summary-card {
  background: rgba(20, 20, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--vpp-shadow);
}

.crm-summary-card span {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.35rem;
}

.crm-summary-card strong {
  color: #ffffff;
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.settings-page {
  background: linear-gradient(180deg, rgba(255, 77, 166, 0.04) 0%, transparent 100%);
}

.nimda-page-hero {
  overflow: hidden;
  position: relative;
}

.nimda-page-hero::before {
  background: radial-gradient(circle at top right, rgba(255, 77, 166, 0.18), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.nimda-page-hero::after {
  background-image: var(--nimda-logo);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: clamp(320px, 40vw, 560px);
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.nimda-hero-inner {
  padding: 1.5rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.nimda-page-body {
  padding-top: 1.25rem;
}

.nimda-shell {
  display: block;
  position: relative;
}

.nimda-main {
  margin-left: 106px;
  min-width: 0;
}

.nimda-rail {
  left: 0.9rem;
  padding: 0.85rem 0.5rem;
  position: fixed;
  top: 6.35rem;
  width: 78px;
  z-index: 120;
}

.nimda-rail-nav {
  display: grid;
  gap: 0.55rem;
}

.nimda-rail-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff7fb;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  min-height: 4.75rem;
  padding: 0.7rem 0.35rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nimda-rail-link i {
  color: #ff8fc7;
  font-size: 1.05rem;
}

.nimda-rail-link span {
  font-size: 0.74rem;
  line-height: 1.2;
}

.nimda-rail-link:hover,
.nimda-rail-link:focus-visible {
  background: rgba(255, 77, 166, 0.08);
  border-color: rgba(255, 77, 166, 0.32);
  color: #fff7fb;
  text-decoration: none;
  transform: translateY(-1px);
}

.nimda-rail-link.is-active {
  background: rgba(255, 77, 166, 0.12);
  border-color: rgba(255, 77, 166, 0.45);
}

.nimda-page-card {
  display: grid;
  gap: 0.9rem;
}

.nimda-page-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.nimda-page-actions .settings-logout-form {
  margin-top: 0;
}

.nimda-code-box {
  background: rgba(10, 10, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow-x: auto;
  padding: 0.9rem 1rem;
}

.nimda-code-box code {
  color: #fff7fb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.settings-shell {
  display: grid;
  gap: 1rem;
}

.settings-card {
  background: rgba(20, 20, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: var(--vpp-shadow);
  padding: 1.25rem;
}

.settings-meta-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-meta-label {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.settings-meta-value {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.settings-meta-wrap {
  word-break: break-word;
}

.settings-status-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.settings-status-card strong {
  color: #ffffff;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.admin-hub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-hub-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.admin-hub-card .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.settings-bullet-list {
  display: grid;
  gap: 0.55rem;
}

.settings-bullet-list span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  padding-left: 1rem;
  position: relative;
}

.settings-bullet-list span::before {
  background: #ff4da6;
  border-radius: 999px;
  content: "";
  height: 0.4rem;
  left: 0;
  position: absolute;
  top: 0.45rem;
  width: 0.4rem;
}

.settings-form {
  display: grid;
  gap: 1rem;
}

.settings-surface-input {
  background: rgba(10, 10, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff7fb;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
}

.settings-surface-input:focus {
  border-color: rgba(255, 77, 166, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.16);
  outline: none;
}

.settings-auth-form {
  display: grid;
  gap: 1rem;
}

.settings-auth-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-auth-grid label {
  display: grid;
  gap: 0.4rem;
}

.settings-env-editor {
  background: rgba(10, 10, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff7fb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92rem;
  min-height: 30rem;
  padding: 1rem;
  resize: vertical;
  width: 100%;
}

.settings-env-editor:focus {
  border-color: rgba(255, 77, 166, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.16);
  outline: none;
}

.settings-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.settings-logout-form {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.settings-disclosure {
  display: grid;
  gap: 1rem;
}

.settings-disclosure[open] {
  gap: 1.25rem;
}

.settings-disclosure-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
}

.settings-disclosure-summary::-webkit-details-marker {
  display: none;
}

.settings-disclosure-summary h2,
.settings-disclosure-summary p {
  margin-bottom: 0;
}

.settings-disclosure-body {
  display: grid;
  gap: 1rem;
}

.admin-shortcut-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-shortcut-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-shortcut-card {
  color: inherit;
  display: grid;
  gap: 0.4rem;
  min-height: 100%;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.admin-shortcut-card strong {
  color: #fff7fb;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.admin-shortcut-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.admin-shortcut-card:hover,
.admin-shortcut-card:focus-visible {
  background: rgba(255, 77, 166, 0.08);
  border-color: rgba(255, 77, 166, 0.35);
  text-decoration: none;
  transform: translateY(-2px);
}

.admin-shortcut-card i {
  color: #ff8fc7;
  width: 1rem;
}

.settings-bullet-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-bullet-grid strong {
  color: #fff7fb;
  display: block;
  margin-bottom: 0.35rem;
}

.calendar-admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calendar-chip {
  align-items: center;
  background: rgba(255, 77, 166, 0.1);
  border: 1px solid rgba(255, 77, 166, 0.26);
  border-radius: 999px;
  color: #ffd9ea;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 0.35rem;
  line-height: 1;
  padding: 0.45rem 0.7rem;
}

.calendar-admin-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.calendar-summary-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
}

.calendar-summary-card strong {
  color: #fff7fb;
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.calendar-admin-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(320px, 38%) minmax(0, 1fr);
}

.calendar-admin-editor,
.calendar-admin-board {
  display: grid;
  gap: 1rem;
}

.calendar-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
}

.calendar-form-stack {
  display: grid;
  gap: 1rem;
}

.calendar-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calendar-form-grid label,
.calendar-form-stack label {
  display: grid;
  gap: 0.4rem;
}

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

.calendar-platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.calendar-check {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #fff7fb;
  cursor: pointer;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
}

.calendar-check input {
  accent-color: #ff4da6;
}

.calendar-textarea {
  min-height: 8rem;
  resize: vertical;
}

.calendar-post-list {
  display: grid;
  gap: 0.9rem;
}

.calendar-post-card {
  background: rgba(10, 10, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
}

.calendar-post-topline {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.calendar-post-datetime {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.calendar-post-title {
  color: #fff7fb;
  font-size: 1.05rem;
  margin: 0;
}

.calendar-post-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.calendar-post-caption,
.calendar-post-hashtags,
.calendar-post-notes {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.calendar-post-hashtags {
  color: #ffb7d7;
  font-size: 0.92rem;
}

.calendar-post-notes strong {
  color: #fff7fb;
}

.calendar-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.calendar-status-badge {
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  padding: 0.45rem 0.7rem;
  white-space: nowrap;
}

.calendar-status-idea {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.calendar-status-draft {
  background: rgba(255, 77, 166, 0.14);
  color: #ffd3e6;
}

.calendar-status-ready {
  background: rgba(245, 197, 66, 0.14);
  color: #ffe8a3;
}

.calendar-status-scheduled {
  background: rgba(82, 196, 255, 0.14);
  color: #b5ecff;
}

.calendar-status-published {
  background: rgba(72, 202, 134, 0.14);
  color: #bff2cf;
}

.calendar-empty-state {
  min-height: 16rem;
  place-content: center;
}

.missing-setup-list {
  display: grid;
  gap: 0.9rem;
}

.missing-setup-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
}

.missing-setup-topline {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.missing-setup-topline h3 {
  color: #fff7fb;
}

.missing-setup-keys {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.missing-setup-keys strong {
  color: #fff7fb;
}

.crm-table-wrap {
  overflow-x: auto;
  background: rgba(20, 20, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: var(--vpp-shadow);
}

.crm-table {
  border-collapse: collapse;
  min-width: 980px;
  width: 100%;
}

.crm-table th,
.crm-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.crm-table th {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crm-table td {
  color: #ffffff;
  font-size: 0.95rem;
}

.crm-subline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.crm-badge {
  align-items: center;
  background: rgba(255, 77, 166, 0.14);
  border: 1px solid rgba(255, 77, 166, 0.24);
  border-radius: 999px;
  color: #fff7fb;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.38rem 0.7rem;
  text-transform: uppercase;
}

.crm-badge-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.crm-actions form {
  margin: 0;
}

.faq-section {
  background: rgba(255, 255, 255, 0.02);
}

.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(20, 20, 30, 0.92);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--vpp-shadow-sm);
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item .accordion-button {
  background: transparent;
  color: var(--vpp-text);
  font-weight: 700;
  box-shadow: none;
  padding: 1.2rem 1.25rem;
}

.faq-item .accordion-button:not(.collapsed) {
  background: rgba(255, 77, 166, 0.08);
  color: var(--vpp-text);
}

.faq-item .accordion-button::after {
  filter: invert(1);
  opacity: 0.9;
}

.faq-item .accordion-body {
  color: var(--vpp-text-soft);
  padding: 0 1.25rem 1.2rem;
}

.contact {
  background: var(--vpp-secondary);
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--vpp-shadow);
}

.contact-form-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-form-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.74);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-field span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vpp-ink);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 12, 0.45);
  color: var(--vpp-ink);
  padding: 0.95rem 1rem;
  font: inherit;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(255, 77, 166, 0.86);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.14);
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  width: 100%;
  min-height: 52px;
}

.contact-alert {
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 0 0 1.25rem;
}

.contact-alert strong {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-alert p {
  margin: 0;
}

.contact-alert-success {
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.36);
}

.contact-alert-error {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.34);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-turnstile-wrap {
  display: flex;
  justify-content: flex-start;
}

.contact-quick-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-grid-compact {
  gap: 1.25rem;
}

.contact-card-compact {
  text-align: left;
}

.contact-card-compact .icon {
  margin-left: 0;
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  transform: translateY(-2px);
  color: #fff7fb;
}

.contact-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease;
}

.contact-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--vpp-primary);
}

.contact-card .icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.contact-card .btn {
  width: 100%;
}

.hours-card {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--vpp-text);
  font-weight: 600;
}

.contact-address-card {
  line-height: 1.65;
}

.footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 77, 166, 0.12) 0%, rgba(19, 17, 25, 0.96) 12%, #0d0c12 100%);
  color: rgba(255, 255, 255, 0.76);
  padding: 2.4rem 0 1.35rem;
  text-align: left;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 77, 166, 0.58) 18%, rgba(255, 77, 166, 0.82) 50%, rgba(255, 77, 166, 0.58) 82%, transparent 100%);
}

.footer section {
  padding: 0;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.footer-column {
  min-width: 0;
}

.footer-column-brand,
.footer-column-links {
  display: grid;
  align-content: start;
}

.footer-column-brand {
  flex: 1 1 56%;
  position: relative;
  overflow: hidden;
  padding-right: 10rem;
}

.footer-column-links {
  flex: 0 1 26rem;
}

.footer-column-brand > * {
  position: relative;
  z-index: 1;
}

.footer-brand-mark {
  position: absolute;
  top: 50%;
  right: -0.25rem;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
}

.footer-ghost-logo {
  display: block;
  width: clamp(240px, 28vw, 360px);
  height: auto;
  filter: saturate(0.95) brightness(1.08);
}

.footer-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.footer-kicker::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: rgba(255, 77, 166, 0.5);
}

.footer-kicker-center {
  align-items: center;
  justify-self: center;
}

.footer-kicker-center::after {
  width: 2.8rem;
}

.footer-brand-name {
  margin: 0 0 0.35rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: #fff6fb;
}

.footer-trade-name,
.footer-address,
.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-trade-name {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-address {
  line-height: 1.65;
}

.footer-contact-list,
.footer-column-group {
  display: grid;
  gap: 0.55rem;
}

.footer-contact-list {
  margin-top: 0.9rem;
}

.footer-link-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.footer-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
}

.footer-language-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  gap: 0.65rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.footer-social-link svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #fff7fb;
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-language-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0.78;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-language-link:hover,
.footer-language-link.is-active {
  opacity: 1;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-language-flag {
  font-size: 2rem;
  line-height: 1;
}

.footer-language-link::after {
  content: attr(data-language-label);
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0, 0, 0, 0.88);
  color: #fff7fb;
  padding: 0.28rem 0.48rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-language-link:hover::after,
.footer-language-link:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-policy-row {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.7rem;
  font-size: 0.92rem;
  text-align: center;
}

.footer-legal-divider {
  color: rgba(255, 255, 255, 0.34);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 77, 166, 0.18);
}

.built-by {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 920px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-column-brand {
    padding-right: 7rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 2rem 0 1.2rem;
  }

  .footer-grid,
  .footer-link-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-language-list {
    flex-wrap: wrap;
    gap: 0.55rem;
    overflow: visible;
  }

  .footer-column-brand {
    padding-right: 0;
  }

  .footer-brand-mark {
    top: auto;
    right: 0;
    bottom: 0.4rem;
    transform: none;
    opacity: 0.08;
  }

  .footer-ghost-logo {
    width: 170px;
  }

  .footer-language-flag {
    font-size: 1.75rem;
  }
}

.policy-updated {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.policy-shell {
  display: grid;
  gap: 1.2rem;
}

.policy-card {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  box-shadow: var(--vpp-shadow);
  padding: 1.6rem;
}

.policy-card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.8rem;
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 0;
  padding-left: 1.15rem;
}

.policy-list li + li {
  margin-top: 0.45rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(20, 20, 30, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: var(--vpp-shadow-xl);
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--vpp-text-soft);
  max-width: 760px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
}

.legal-page .section-heading p {
  max-width: 760px;
}

.legal-content {
  background: rgba(20, 20, 30, 0.88);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  box-shadow: var(--vpp-shadow);
  padding: 2rem;
}

.legal-updated {
  margin: 0 0 1.5rem;
  color: var(--vpp-text-soft);
  font-size: 0.9rem;
}

.legal-section + .legal-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.22rem;
}

.legal-section p,
.legal-section li {
  color: rgba(255, 255, 255, 0.86);
}

.legal-section ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.booking-legal-note {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--vpp-text-soft);
}

.booking-legal-note a,
.lead-magnet-note a {
  color: rgba(255, 255, 255, 0.92);
}

.legal-page {
  padding-top: 3rem;
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
}

.legal-card {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  box-shadow: var(--vpp-shadow);
  padding: 2rem;
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.legal-card h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.legal-card h2 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
  color: var(--vpp-text-soft);
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-meta {
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

.legal-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--vpp-text-soft);
}

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vpp-white);
  border-top: 1px solid rgba(15, 15, 20, 0.1);
  padding: 1rem;
  display: none;
  gap: 0.75rem;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.16);
}

.floating-cta .btn {
  flex: 1 1 100%;
  width: 100%;
}

.floating-cta.hidden {
  display: none;
}

.vpp-toast-stack {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 360px;
}

.vpp-toast {
  background: linear-gradient(180deg, rgba(32, 19, 35, 0.96), rgba(16, 16, 23, 0.98));
  color: var(--vpp-text);
  border-radius: 20px;
  padding: 0.95rem 1rem 1rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.vpp-toast::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--vpp-primary), #ff8fca);
}

.vpp-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vpp-toast.is-pricing::before {
  background: linear-gradient(90deg, #ff77bc, #ffd4ea);
}

.vpp-toast.is-booked::before {
  background: linear-gradient(90deg, #61e8ba, #b0ffd8);
}

.vpp-toast.is-seeded .vpp-toast-signal {
  background: #ff9bcf;
  box-shadow: 0 0 0 4px rgba(255, 77, 166, 0.16);
}

.vpp-toast.is-live .vpp-toast-signal {
  background: #64efc1;
  box-shadow: 0 0 0 4px rgba(100, 239, 193, 0.16);
}

.vpp-toast-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-right: 1.9rem;
}

.vpp-toast-signal {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.vpp-toast-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #ffc4e1;
  margin-bottom: 0;
}

.vpp-toast-title {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.38;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.vpp-toast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.vpp-toast-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 247, 251, 0.76);
  font-size: 0.76rem;
  line-height: 1;
}

.vpp-toast-chip-location {
  background: rgba(255, 255, 255, 0.08);
  color: var(--vpp-text);
}

.vpp-toast-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: rgba(255, 247, 251, 0.56);
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.vpp-toast-close:hover,
.vpp-toast-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 247, 251, 0.88);
}

.demand-modal {
  background: rgba(20, 20, 30, 0.98);
  color: var(--vpp-text);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  box-shadow: var(--vpp-shadow-xl);
}

.demand-modal .modal-header,
.demand-modal .modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .vpp-toast-stack {
    top: auto;
    right: 12px;
    bottom: 88px;
    left: 12px;
    max-width: none;
  }

  .vpp-toast {
    border-radius: 18px;
  }
}

.demand-modal-note {
  color: var(--vpp-text-soft);
  font-size: 0.9rem;
}

.assistant-modal {
  background: rgba(20, 20, 30, 0.98);
  color: var(--vpp-text);
  border: 1px solid var(--vpp-soft-border);
  border-radius: 18px;
  box-shadow: var(--vpp-shadow-xl);
}

.assistant-modal .modal-header,
.assistant-modal .modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

.assistant-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.assistant-modal-subtitle,
.assistant-footer-copy {
  color: var(--vpp-text-soft);
}

.assistant-modal-body {
  padding-top: 1rem;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.chat-message {
  border-radius: 16px;
  padding: 0.95rem 1rem;
  box-shadow: var(--vpp-shadow-sm);
}

.chat-assistant {
  align-self: flex-start;
  width: min(100%, 92%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-user {
  align-self: flex-end;
  width: min(100%, 88%);
  background: rgba(255, 77, 166, 0.18);
  border: 1px solid rgba(255, 77, 166, 0.28);
}

.message-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.message-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.chat-message p {
  margin: 0;
  color: var(--vpp-text);
}

.message-action {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--vpp-text);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.assistant-form {
  margin-top: 1rem;
}

.assistant-form-row {
  display: flex;
  gap: 0.75rem;
}

.assistant-input {
  flex: 1;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--vpp-text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.assistant-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.assistant-input:focus {
  outline: none;
  border-color: rgba(255, 77, 166, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.14);
}

@media (max-width: 991px) {
  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary-card {
    position: static;
  }

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

  .settings-meta-row,
  .settings-status-grid {
    grid-template-columns: 1fr;
  }

  .nimda-shell {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .nimda-rail {
    padding: 0.85rem;
    position: static;
    width: auto;
  }

  .nimda-rail-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .nimda-rail-link {
    min-height: 4.2rem;
  }

  .nimda-main {
    margin-left: 0;
  }

  .nimda-page-actions {
    justify-content: flex-start;
  }

  .calendar-admin-summary-grid,
  .calendar-admin-layout,
  .calendar-form-grid,
  .calendar-form-grid-wide,
  .admin-shortcut-grid,
  .settings-bullet-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nimda-hero-inner {
    padding: 1.1rem 0 0.95rem;
  }

  .nimda-page-hero::after {
    background-position: center right;
    background-size: 250px;
    opacity: 0.09;
  }

  .nimda-page-body {
    padding-top: 1rem;
  }

  section,
  .section-pad {
    padding: 3rem 0;
  }

  .header-inner {
    align-items: flex-start;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .language-switcher {
    align-self: flex-end;
  }

  .language-switcher-current-flag {
    font-size: 2rem;
  }

  .language-switcher-menu {
    right: 0;
    min-width: 200px;
  }

  .header-cta .btn {
    padding: 0.75rem;
  }

  .header-cta .btn-primary {
    display: none;
  }

  .menu-toggle {
    min-width: 96px;
  }

  .logo-img {
    height: 84px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-availability {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .availability-divider {
    width: 60px;
    height: 1px;
  }

  .availability-text {
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn,
  .lead-magnet-form button {
    width: 100%;
  }

  .lead-magnet-form {
    grid-template-columns: 1fr;
  }

  .zip-form {
    flex-direction: column;
  }

  .lead-turnstile {
    min-height: 78px;
  }

  .availability-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .discounts-layout {
    grid-template-columns: 1fr;
  }

  .crm-summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-hub-grid {
    grid-template-columns: 1fr;
  }

  .settings-auth-grid {
    grid-template-columns: 1fr;
  }

  .nimda-rail-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .calendar-post-topline,
  .settings-disclosure-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-platform-list,
  .calendar-post-actions,
  .calendar-admin-meta {
    gap: 0.5rem;
  }

  .settings-card {
    padding: 1rem;
  }

  .contact-form-grid,
  .contact-social-list {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-card {
    padding: 1.4rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .assistant-form-row {
    flex-direction: column;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .sticky-contact {
    display: none;
  }

  .floating-cta {
    display: flex;
  }
}

@media (min-width: 769px) {
  .floating-cta {
    display: none !important;
  }
}
