:root {
  --bg: #05020a;
  --bg-alt: #0d0717;
  --panel: rgba(16, 9, 28, 0.92);
  --panel-strong: rgba(15, 8, 27, 0.98);
  --text: #f5ecdc;
  --muted: #d0c1b0;
  --line: rgba(221, 185, 116, 0.24);
  --primary: #ebc67a;
  --primary-strong: #f1ddaa;
  --secondary: #1f122f;
  --violet-glow: rgba(86, 47, 146, 0.46);
  --violet-electric: #6d3cc7;
  --lilac-electric: #b07bff;
  --cyan-electric: #7ee3d6;
  --violet-soft: rgba(176, 123, 255, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --floating-edge: 1rem;
  --floating-base-bottom: 1rem;
  --floating-reopen-bottom: 10.7rem;
  --floating-chatbot-bottom: calc(var(--floating-reopen-bottom) + 0.95rem);
  --floating-cards-bottom: 5.9rem;
  --floating-card-modal-bottom: 10.35rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(237, 193, 112, 0.12), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(109, 60, 199, 0.2), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(126, 227, 214, 0.1), transparent 20%),
    radial-gradient(circle at 48% 54%, rgba(0, 0, 0, 0.14), transparent 58%),
    linear-gradient(180deg, #09040f 0%, #020103 48%, #010102 100%);
  font-family: Georgia, 'Times New Roman', serif;
}

body.is-ready {
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 26%, transparent 0%, rgba(6, 3, 12, 0.2) 32%, rgba(0, 0, 0, 0.8) 100%),
    radial-gradient(circle at 50% 120%, rgba(76, 43, 138, 0.16), transparent 36%);
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.install-banner {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: min(calc(100% - 2rem), 420px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.install-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-14px);
}

.install-banner .install-button {
  width: 100%;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.32;
}

.page-shell::before {
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(176, 123, 255, 0.32), transparent 64%);
}

.page-shell::after {
  top: 24rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(235, 198, 122, 0.2), transparent 68%);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 4.75rem;
  padding-bottom: 3rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 12, 0.9));
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 10, 0.18), rgba(6, 5, 10, 0.56)),
    radial-gradient(circle at 15% 20%, rgba(235, 198, 122, 0.16), transparent 18%),
    radial-gradient(circle at 85% 18%, rgba(109, 60, 199, 0.32), transparent 22%);
  pointer-events: none;
}

.hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 35%, rgba(241, 221, 170, 0.08), transparent 18%),
    radial-gradient(circle at 30% 70%, rgba(176, 123, 255, 0.1), transparent 22%);
  pointer-events: none;
}

.navbar,
.hero__content,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  z-index: 12;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(16, 10, 24, 0.9), rgba(11, 8, 18, 0.52));
  border: 1px solid rgba(221, 185, 116, 0.14);
  border-radius: 999px;
  padding-inline: 1.1rem;
  margin-top: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.brand,
.nav-links a,
.menu-toggle {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.brand {
  color: var(--primary);
  font-weight: 700;
  text-shadow: 0 0 18px rgba(191, 125, 255, 0.16);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  position: relative;
  color: rgba(247, 241, 232, 0.78);
  transition: color 180ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lilac-electric), transparent);
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: center;
  padding: 5.5rem 0 2.5rem;
}

.hero__text,
.hero__card,
.panel,
.service-card,
.testimonial-card,
.chatbot {
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-shadow: 0 0 14px rgba(191, 125, 255, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.93;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.hero__copy {
  max-width: 56ch;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.button--primary {
  background: linear-gradient(135deg, #f1ddaa, var(--primary), var(--lilac-electric));
  color: #120a18;
  box-shadow: 0 16px 36px rgba(73, 36, 138, 0.34), 0 0 0 1px rgba(235, 198, 122, 0.16);
}

.button--secondary {
  background: linear-gradient(180deg, rgba(109, 60, 199, 0.22), rgba(24, 14, 37, 0.92));
  color: var(--text);
  border-color: var(--line);
}

.button--secondary:hover {
  border-color: rgba(191, 125, 255, 0.38);
  box-shadow: 0 12px 30px rgba(143, 77, 255, 0.12);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero__metrics article,
.panel,
.service-card,
.testimonial-card,
.cta-final__panel,
.chatbot {
  border: 1px solid rgba(118, 221, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero__metrics article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(235, 198, 122, 0.08), rgba(109, 60, 199, 0.16));
}

.hero__metrics strong {
  display: block;
  color: var(--primary-strong);
  font-size: 1.8rem;
  text-shadow: 0 0 16px rgba(191, 125, 255, 0.12);
}

.hero__card,
.panel,
.service-card,
.testimonial-card,
.cta-final__panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 12, 33, 0.97), rgba(7, 5, 14, 0.98));
}

.hero__card {
  overflow: hidden;
  transform: translateY(1.25rem);
  animation: heroCardFloat 7.5s ease-in-out infinite;
}

.hero__card-copy {
  padding: 1.4rem 1.4rem 1.6rem;
}

.tarot-frame {
  position: relative;
}

.tarot-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(118, 221, 255, 0.16);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(143, 77, 255, 0.04);
}

.section {
  padding: 4.5rem 0;
}

.section + .section {
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 45vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(118, 221, 255, 0.34), transparent);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  filter: blur(10px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-heading h2,
.section-heading--split h2,
.cta-final__panel h2,
.hero__card-copy h2 {
  text-shadow: 0 0 24px rgba(143, 77, 255, 0.08);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-heading--split h2 {
  max-width: 14ch;
}

.section-heading p:last-child,
.section-heading--split p:last-child {
  max-width: 54ch;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: end;
}

.about__grid,
.booking__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.booking__layout--single {
  grid-template-columns: 1fr;
}

.benefits-grid,
.services-grid,
.testimonials-grid,
.field-grid {
  display: grid;
  gap: 1rem;
}

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

.panel,
.service-card,
.testimonial-card {
  padding: 1.3rem;
}

.panel,
.service-card,
.testimonial-card,
.hero__metrics article {
  position: relative;
  overflow: hidden;
}

.panel::before,
.service-card::before,
.testimonial-card::before,
.hero__metrics article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 244, 216, 0.04), rgba(176, 123, 255, 0.03) 24%, transparent 52%);
  pointer-events: none;
}

.panel:hover,
.service-card:hover,
.testimonial-card:hover {
  border-color: rgba(118, 221, 255, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(143, 77, 255, 0.08);
}

.service-card {
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card img {
  border-radius: 22px;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.services-grid {
  align-items: stretch;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1.1rem;
  min-height: 15rem;
}

.service-card__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-card__kicker span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(118, 221, 255, 0.16);
  background: linear-gradient(180deg, rgba(109, 60, 199, 0.22), rgba(235, 198, 122, 0.08));
  color: var(--primary-strong);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card__body .button {
  margin-top: auto;
}

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

.booking-form--info {
  align-content: start;
}

.about__intro {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.about__intro p {
  font-size: 1.15rem;
  line-height: 1.85;
}

.benefit-card {
  min-height: 100%;
}

.benefit-card h3,
.booking-info h3,
.testimonial-card strong {
  letter-spacing: 0.02em;
}

.booking-form,
.booking-info {
  background: linear-gradient(180deg, rgba(24, 15, 42, 0.98), rgba(10, 8, 18, 0.97));
}

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

.booking-form label {
  display: grid;
  gap: 0.45rem;
}

.booking-form span {
  color: var(--text);
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(118, 221, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 8, 14, 0.72), rgba(20, 14, 30, 0.64));
  color: var(--text);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.chatbot__faq-chip:focus-visible {
  outline: 2px solid rgba(143, 77, 255, 0.16);
  border-color: rgba(191, 125, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(143, 77, 255, 0.08);
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-message {
  min-height: 1.5rem;
}

.form-message.is-success {
  color: var(--primary-strong);
  text-shadow: 0 0 12px rgba(191, 125, 255, 0.14);
}

.testimonials-grid {
  align-items: stretch;
}

.testimonials-carousel {
  padding: 1.4rem;
}

.testimonials-carousel__viewport {
  overflow: hidden;
  border-radius: 26px;
}

.testimonials-carousel__track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.testimonials-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 2rem 1.4rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.testimonials-carousel__slide:hover {
  transform: none;
  box-shadow: none;
}

.testimonials-carousel__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1rem;
}

.testimonials-carousel__dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(118, 221, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(118, 221, 255, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.testimonials-carousel__dot.is-active {
  background: linear-gradient(135deg, var(--cyan-electric), var(--lilac-electric));
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(210, 103, 255, 0.26);
}

.testimonial-card {
  padding-top: 2rem;
}

.testimonial-card::after {
  content: '✦';
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: rgba(118, 221, 255, 0.68);
  font-size: 1rem;
}

.testimonial-card strong {
  color: var(--primary-strong);
}

.cta-final__panel {
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(235, 198, 122, 0.14), transparent 26%),
    radial-gradient(circle at 78% 12%, rgba(176, 123, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(28, 19, 40, 0.97), rgba(12, 9, 19, 0.98));
}

.footer {
  padding: 2rem 0 6rem;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  position: relative;
}

.footer__content::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 10rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 221, 255, 0.72), transparent);
}

.footer__links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__ceo-button {
  padding: 0.18rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 236, 220, 0.2);
  cursor: pointer;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer__ceo-button:hover,
.footer__ceo-button:focus-visible {
  color: var(--primary);
  border-color: rgba(235, 198, 122, 0.22);
  background: rgba(235, 198, 122, 0.06);
  opacity: 1;
  transform: translateY(-1px);
}

.floating-button {
  position: fixed;
  bottom: 1rem;
  z-index: 25;
  min-width: 64px;
  min-height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-button__label {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.floating-button--whatsapp {
  right: var(--floating-edge);
  background: #25d366;
  color: #06140a;
}

.floating-button--cards {
  left: var(--floating-edge);
  bottom: var(--floating-cards-bottom);
  width: min(148px, calc(100vw - 2rem));
  justify-content: flex-start;
  background:
    radial-gradient(circle at top, rgba(235, 198, 122, 0.12), transparent 34%),
    radial-gradient(circle at 72% 12%, rgba(176, 123, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(16, 11, 29, 0.98), rgba(7, 5, 13, 0.98));
  color: var(--primary);
  border-color: var(--line);
}

.floating-button--cards::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.floating-button--chat {
  left: var(--floating-edge);
  background:
    radial-gradient(circle at top, rgba(126, 227, 214, 0.14), transparent 45%),
    radial-gradient(circle at 78% 18%, rgba(176, 123, 255, 0.14), transparent 24%),
    var(--panel-strong);
  color: var(--primary-strong);
  border-color: var(--line);
}

.floating-button--cards,
.floating-button--chat {
  overflow: hidden;
}

.floating-button--cards .floating-button__label,
.floating-button--chat .floating-button__label {
  position: relative;
  z-index: 1;
}

.floating-button__label--cards {
  max-width: 5.8rem;
  line-height: 1.05;
  text-wrap: balance;
  text-align: left;
  font-size: 0.7rem;
}

.floating-button__bubble {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid currentColor;
  box-shadow: 0 0 16px rgba(118, 221, 255, 0.18);
}

.floating-button__bubble::after {
  content: '';
  position: absolute;
  left: 0.05rem;
  bottom: -0.28rem;
  width: 0.45rem;
  height: 0.45rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-28deg);
  border-bottom-left-radius: 0.18rem;
}

.floating-button__cards {
  position: relative;
  z-index: 1;
  width: 1.3rem;
  height: 1.25rem;
}

.floating-button__cards span {
  position: absolute;
  inset: 0;
  border-radius: 0.35rem;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 16px rgba(118, 221, 255, 0.14);
}

.floating-button__cards span:first-child {
  transform: rotate(-10deg) translate(-0.22rem, 0.04rem);
}

.floating-button__cards span:nth-child(2) {
  transform: rotate(8deg) translate(0.2rem, -0.03rem);
}

.floating-button__cards-sigil {
  inset: 0.27rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.floating-button__cards-sigil::before,
.floating-button__cards-sigil::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.floating-button__cards-sigil::before {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(118, 221, 255, 0.2);
}

.floating-button__cards-sigil::after {
  width: 0.82rem;
  height: 0.82rem;
  border: 1.5px solid currentColor;
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  opacity: 0.9;
}

.chatbot {
  position: fixed;
  left: var(--floating-edge);
  bottom: var(--floating-chatbot-bottom);
  z-index: 28;
  width: min(360px, calc(100% - 2rem));
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(109, 60, 199, 0.26), transparent 42%),
    radial-gradient(circle at 82% 14%, rgba(235, 198, 122, 0.08), transparent 24%),
    rgba(10, 8, 18, 0.98);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.chatbot__header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.chatbot__header {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(118, 221, 255, 0.14);
}

.chatbot__close {
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
}

.chatbot__messages {
  display: grid;
  gap: 0.7rem;
  max-height: 320px;
  overflow: auto;
  padding: 1rem 0 0.8rem;
}

.chatbot__message {
  max-width: 88%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  line-height: 1.5;
}

.chatbot__message--bot {
  background: linear-gradient(180deg, rgba(118, 221, 255, 0.12), rgba(123, 66, 255, 0.14));
  color: var(--text);
}

.chatbot__message--user {
  margin-left: auto;
  background: linear-gradient(180deg, rgba(143, 77, 255, 0.26), rgba(72, 45, 96, 0.28));
  color: var(--text);
}

.chatbot__faq {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 0.65rem;
}

.chatbot__faq-chip {
  border: 1px solid rgba(118, 221, 255, 0.16);
  background: linear-gradient(180deg, rgba(118, 221, 255, 0.05), rgba(123, 66, 255, 0.1));
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.chatbot__faq-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 125, 255, 0.38);
  background: rgba(143, 77, 255, 0.18);
}

.chatbot__note {
  margin: 0;
  color: rgba(245, 236, 220, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 8, 0.74);
  backdrop-filter: blur(8px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  scrollbar-gutter: stable;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top, rgba(93, 48, 201, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(13, 9, 26, 0.99), rgba(5, 4, 10, 0.99));
}

.card-reading-modal {
  position: fixed;
  left: var(--floating-edge);
  bottom: var(--floating-card-modal-bottom);
  z-index: 26;
  width: min(620px, calc(100% - 2rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: 16% 100%;
  transform: translate3d(-20px, 18px, 0) rotate(-11deg) scale(0.88);
  transition: opacity 260ms ease, visibility 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-reading-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.card-reading-modal__dialog {
  overflow: hidden;
  max-height: 76px;
  padding: 0.8rem 0.9rem 0.95rem;
  background:
    radial-gradient(circle at top, rgba(93, 48, 201, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 9, 29, 0.99), rgba(6, 4, 12, 0.98));
  transform-origin: center bottom;
  transition: max-height 280ms ease, box-shadow 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-reading-modal.is-open .card-reading-modal__dialog {
  overflow: auto;
  max-height: min(72vh, 620px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  animation: cardDrawerDealIn 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card-reading-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.card-reading-modal__toggle-copy {
  color: var(--primary);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-reading-modal__content {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.card-reading-modal.is-open .card-reading-modal__content {
  opacity: 1;
  transform: translateY(0);
}

.card-reading-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-reading-modal__topbar p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.card-reading-modal__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.card-reading-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(200px, 0.9fr);
  gap: 0.85rem;
  align-items: start;
}

.card-pick {
  position: relative;
  display: block;
  min-height: 144px;
  padding: 0;
  perspective: 1200px;
  border-radius: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-pick:hover,
.card-pick.is-selected {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.card-pick__inner {
  position: relative;
  display: block;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card-pick.is-selected .card-pick__inner {
  transform: rotateY(180deg);
}

.card-pick__face {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 0.5rem;
  align-content: center;
  justify-items: center;
  padding: 0.82rem 0.68rem;
  border-radius: 20px;
  border: 1px solid rgba(118, 221, 255, 0.22);
  backface-visibility: hidden;
  background:
    radial-gradient(circle at top, rgba(93, 48, 201, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(18, 11, 34, 0.98), rgba(8, 6, 16, 0.99));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.card-pick__face--back {
  transform: rotateY(180deg);
  align-content: center;
  background:
    radial-gradient(circle at top, rgba(118, 221, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(20, 13, 38, 0.99), rgba(9, 7, 18, 0.99));
}

.card-pick__caption {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.card-pick__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  min-width: 6.5rem;
  margin-top: 0.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(235, 198, 122, 0.3);
  background: linear-gradient(135deg, rgba(241, 221, 170, 0.16), rgba(176, 123, 255, 0.2));
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.card-pick__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(118, 221, 255, 0.22);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(118, 221, 255, 0.14);
  margin-inline: auto;
}

.card-pick strong {
  font-size: 0.84rem;
  color: var(--primary-strong);
}

.card-reading-modal__showcase {
  position: relative;
  min-height: 100%;
  padding: 0.85rem;
  border-radius: 24px;
  border: 1px solid rgba(118, 221, 255, 0.18);
  background:
    radial-gradient(circle at top, rgba(118, 221, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 10, 23, 0.94), rgba(18, 14, 30, 0.92));
}

.card-reading-modal__showcase::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(241, 230, 199, 0.18);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(118, 221, 255, 0.06);
}

.card-reading-modal__showcase-card {
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
  padding: 0.35rem;
  text-align: center;
}

.card-reading-modal__showcase-card strong {
  color: var(--primary-strong);
  font-size: 1.15rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-reading-modal__arcana {
  display: inline-flex;
  width: fit-content;
  min-width: 3rem;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(118, 221, 255, 0.22);
  color: var(--primary);
  background: rgba(118, 221, 255, 0.08);
}

.card-reading-modal__plate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-reading-modal__seal {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 230, 199, 0.3);
  box-shadow: 0 0 18px rgba(118, 221, 255, 0.08);
}

.card-reading-modal__seal::before,
.card-reading-modal__seal::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card-reading-modal__seal::before {
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid rgba(118, 221, 255, 0.34);
  transform: translate(-50%, -50%) rotate(45deg);
}

.card-reading-modal__seal::after {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(241, 230, 199, 0.9);
}

.card-reading-modal__illustration {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118px;
  margin: 0.2rem 0;
  border-radius: 18px;
  border: 1px solid rgba(241, 230, 199, 0.14);
  background:
    radial-gradient(circle at 50% 40%, rgba(118, 221, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(143, 85, 212, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(23, 18, 40, 0.98), rgba(12, 10, 22, 0.98));
  overflow: hidden;
}

.card-reading-modal__illustration::before,
.card-reading-modal__illustration::after {
  content: '';
  position: absolute;
  inset: auto 50% 1rem;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(241, 230, 199, 0), rgba(241, 230, 199, 0.5), rgba(241, 230, 199, 0));
  transform: translateX(-50%);
}

.card-reading-modal__illustration::after {
  inset: 1rem auto auto 50%;
}

.card-reading-modal__illustration-ring {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 230, 199, 0.28);
  box-shadow: 0 0 0 10px rgba(118, 221, 255, 0.03), inset 0 0 24px rgba(118, 221, 255, 0.08);
}

.card-reading-modal__illustration-star {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  background: rgba(241, 230, 199, 0.92);
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  box-shadow: 0 0 18px rgba(118, 221, 255, 0.18);
}

.card-reading-modal__plate-footer {
  color: rgba(241, 230, 199, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-reading-reopen {
  position: fixed;
  left: var(--floating-edge);
  bottom: var(--floating-reopen-bottom);
  z-index: 26;
  min-width: 76px;
  min-height: 86px;
  padding: 0.7rem 0.55rem;
  border: 1px solid rgba(118, 221, 255, 0.22);
  border-radius: 22px;
  display: grid;
  place-items: center;
  gap: 0.38rem;
  background:
    radial-gradient(circle at top, rgba(118, 221, 255, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(13, 9, 26, 0.98), rgba(6, 4, 12, 0.98));
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.88);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.card-reading-reopen.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: reopenPulse 1.8s ease-in-out infinite;
}

.card-reading-reopen__card {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 3rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(241, 230, 199, 0.28);
  background:
    radial-gradient(circle at top, rgba(118, 221, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(20, 13, 38, 0.99), rgba(9, 7, 18, 0.99));
  box-shadow: inset 0 0 0 1px rgba(118, 221, 255, 0.08);
}

.card-reading-reopen__card::before {
  content: '';
  position: absolute;
  inset: 0.22rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(241, 230, 199, 0.14);
}

.card-reading-reopen__card-mark {
  color: rgba(241, 230, 199, 0.92);
  font-size: 0.95rem;
  text-shadow: 0 0 14px rgba(118, 221, 255, 0.18);
}

.card-reading-reopen__label {
  color: var(--primary);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading,
.section-heading--split,
.panel,
.service-card,
.testimonials-carousel,
.cta-final__panel,
.hero__text,
.hero__card {
  will-change: transform, opacity;
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(1.25rem);
  }

  50% {
    transform: translateY(0.45rem);
  }
}

@keyframes cardDrawerDealIn {
  0% {
    transform: perspective(900px) rotateY(-20deg) rotateZ(-7deg) translateY(14px) scale(0.92);
  }

  55% {
    transform: perspective(900px) rotateY(6deg) rotateZ(1.6deg) translateY(-2px) scale(1.01);
  }

  100% {
    transform: perspective(900px) rotateY(0deg) rotateZ(0deg) translateY(0) scale(1);
  }
}

@keyframes reopenPulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  50% {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(118, 221, 255, 0.05);
  }
}

.card-reading-modal__text {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 39;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.promo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ceo-panel {
  position: fixed;
  inset: 0;
  z-index: 41;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.ceo-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ceo-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 8, 0.8);
  backdrop-filter: blur(10px);
}

.ceo-panel__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 1.35rem;
  background:
    radial-gradient(circle at top, rgba(126, 227, 214, 0.12), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(235, 198, 122, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(12, 10, 24, 0.99), rgba(5, 4, 11, 0.99));
}

.ceo-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(118, 221, 255, 0.14);
}

.ceo-panel__subtitle {
  margin-bottom: 0;
  color: rgba(245, 236, 220, 0.74);
}

.ceo-panel__login {
  display: grid;
  gap: 1rem;
  max-width: 420px;
  padding-top: 1rem;
}

.ceo-panel__login.is-invalid {
  animation: ceoPanelShake 420ms ease;
}

.ceo-panel__login label {
  display: grid;
  gap: 0.45rem;
}

.ceo-panel__login input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(118, 221, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 8, 14, 0.72), rgba(20, 14, 30, 0.64));
  color: var(--text);
}

.ceo-panel__login input:focus {
  outline: 2px solid rgba(143, 77, 255, 0.16);
  border-color: rgba(191, 125, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(143, 77, 255, 0.08);
}

.ceo-panel__login.is-invalid input,
.ceo-panel__login input[aria-invalid='true'] {
  border-color: rgba(255, 125, 125, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 125, 125, 0.08);
}

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

.ceo-panel__dashboard {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.ceo-panel__back {
  display: flex;
  justify-content: flex-start;
}

.ceo-panel__back-button {
  min-width: 180px;
}

.ceo-panel__stats,
.ceo-panel__grid {
  display: grid;
  gap: 1rem;
}

.ceo-panel__stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

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

.ceo-stat,
.ceo-card {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(118, 221, 255, 0.16);
  background: linear-gradient(180deg, rgba(21, 16, 35, 0.92), rgba(9, 8, 17, 0.96));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.ceo-stat {
  display: grid;
  gap: 0.45rem;
}

.ceo-stat span,
.ceo-kpi-list span,
.ceo-channel-row span,
.ceo-service-row span,
.ceo-daily-row span {
  color: rgba(245, 236, 220, 0.68);
}

.ceo-stat strong,
.ceo-kpi-list strong,
.ceo-channel-row strong,
.ceo-service-row strong,
.ceo-daily-row strong {
  color: var(--primary-strong);
}

.ceo-stat strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.ceo-kpi-list,
.ceo-channel-list,
.ceo-service-list,
.ceo-daily-list {
  display: grid;
  gap: 0.7rem;
}

.ceo-kpi-list article,
.ceo-channel-row,
.ceo-service-row,
.ceo-daily-row {
  display: grid;
  gap: 0.28rem;
  padding: 0.82rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ceo-kpi-list strong {
  font-size: 1.4rem;
}

.ceo-channel-row,
.ceo-service-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.ceo-channel-row small,
.ceo-service-row small,
.ceo-daily-row small,
.ceo-stat small {
  color: rgba(245, 236, 220, 0.56);
}

.ceo-daily-row {
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
}

.ceo-daily-row__bar {
  position: relative;
  height: 0.55rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.ceo-daily-row__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(126, 227, 214, 0.84), rgba(235, 198, 122, 0.92));
}

.ceo-card--full {
  display: grid;
  gap: 0.9rem;
}

@keyframes ceoPanelShake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(7px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(4px);
  }
}

.promo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 8, 0.72);
  backdrop-filter: blur(8px);
}

.promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(118, 221, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(21, 13, 40, 0.99), rgba(8, 6, 16, 0.98));
}

.promo-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(118, 221, 255, 0.14);
  margin-bottom: 1rem;
}

.booking-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(118, 221, 255, 0.14);
}

.booking-modal__service {
  margin-bottom: 0;
  color: var(--primary-strong);
}

.booking-modal__form {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.booking-modal__form label {
  display: grid;
  gap: 0.45rem;
}

.booking-modal__form span {
  color: var(--text);
}

.booking-modal__form input,
.booking-modal__form select,
.booking-modal__form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(118, 221, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 8, 14, 0.72), rgba(20, 14, 30, 0.64));
  color: var(--text);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.booking-modal__form input:focus,
.booking-modal__form select:focus,
.booking-modal__form textarea:focus {
  outline: 2px solid rgba(143, 77, 255, 0.16);
  border-color: rgba(191, 125, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(143, 77, 255, 0.08);
}

.booking-modal__form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(118, 221, 255, 0.88) 50%),
    linear-gradient(135deg, rgba(118, 221, 255, 0.88) 50%, transparent 50%);
  background-position:
    calc(100% - 1.4rem) calc(50% - 0.12rem),
    calc(100% - 0.95rem) calc(50% - 0.12rem);
  background-size: 0.45rem 0.45rem, 0.45rem 0.45rem;
  background-repeat: no-repeat;
}

.booking-modal__form .booking-form__actions {
  justify-content: flex-start;
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 0.85rem;
  padding-bottom: 0.2rem;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0), rgba(5, 4, 10, 0.92) 28%, rgba(5, 4, 10, 0.98));
}

.booking-modal__form .booking-form__actions .button {
  width: auto;
  min-width: 0;
}

.booking-modal__form .booking-form__actions .form-message {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__content,
  .section-heading--split,
  .about__grid,
  .booking__layout,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .card-reading-modal {
    width: min(520px, calc(100% - 2rem));
  }

  .card-reading-modal__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --floating-edge: 0.5rem;
    --floating-base-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    --floating-cards-bottom: calc(var(--floating-base-bottom) + 4.5rem);
    --floating-card-modal-bottom: calc(var(--floating-base-bottom) + 8.85rem);
    --floating-reopen-bottom: calc(var(--floating-base-bottom) + 9.3rem);
    --floating-chatbot-bottom: calc(var(--floating-reopen-bottom) + 0.8rem);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  .navbar {
    width: min(calc(100% - 1rem), var(--max-width));
    border-radius: 26px;
    align-items: flex-start;
    margin-top: 0;
    padding: 0.95rem 1rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 14, 23, 0.98), rgba(9, 8, 16, 0.96));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .nav-links.is-open {
    display: flex;
  }

  .brand,
  .nav-links a,
  .menu-toggle {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .field-grid,
  .services-grid,
  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .footer__content,
  .footer__links {
    flex-direction: column;
    align-items: stretch;
  }

  .ceo-panel__grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .install-banner {
    top: 0.5rem;
    width: min(calc(100% - 1rem), 420px);
  }

  .install-banner .install-button {
    min-height: 46px;
    padding-inline: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero__content {
    gap: 1.6rem;
    padding-top: 4rem;
    padding-bottom: 1rem;
  }

  h1 {
    max-width: 11.5ch;
    margin-bottom: 1rem;
    font-size: clamp(2.7rem, 12vw, 4.35rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.7rem);
  }

  .hero__copy,
  .about__intro p,
  .section-heading p:last-child,
  .section-heading--split p:last-child {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero__metrics {
    gap: 0.75rem;
    margin-top: 1.4rem;
  }

  .hero__metrics article {
    padding: 0.95rem 1rem;
    border-radius: 20px;
  }

  .hero__metrics strong {
    font-size: 1.45rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading,
  .section-heading--split {
    gap: 0.85rem;
    margin-bottom: 1.45rem;
  }

  .panel,
  .service-card,
  .testimonial-card,
  .testimonials-carousel,
  .cta-final__panel {
    border-radius: 26px;
  }

  .panel,
  .service-card,
  .testimonial-card {
    padding: 1.1rem;
  }

  .service-card__body {
    min-height: auto;
    gap: 0.8rem;
  }

  .service-card img {
    aspect-ratio: 1 / 0.82;
  }

  .booking-modal {
    padding: 0.5rem;
  }

  .booking-modal__dialog {
    max-height: 94vh;
    padding: 1rem;
    border-radius: 28px;
  }

  .booking-modal__form .booking-form__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding-bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
  }

  .booking-modal__header {
    flex-direction: column;
  }

  .booking-modal__form input,
  .booking-modal__form select,
  .booking-modal__form textarea {
    min-height: 52px;
  }

  .card-reading-modal__header {
    align-items: center;
  }

  .promo-modal__header {
    flex-direction: column;
  }

  .card-reading-modal {
    width: min(312px, calc(100% - 1rem));
  }

  .card-reading-modal__dialog {
    border-radius: 28px;
    padding: 0.8rem 0.8rem 0.88rem;
  }

  .card-reading-reopen {
    min-width: 70px;
    min-height: 78px;
  }

  .floating-button--cards {
    width: min(126px, calc(100vw - 1rem));
    padding-inline: 0.8rem;
  }

  .floating-button__label {
    font-size: 0.76rem;
  }

  .floating-button__label--cards {
    max-width: 4.8rem;
    font-size: 0.62rem;
  }

  .floating-button--whatsapp {
    right: var(--floating-edge);
  }

  .card-reading-modal__topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .card-reading-modal__topbar .chatbot__close {
    align-self: flex-start;
  }

  .card-reading-modal__layout {
    grid-template-columns: 1fr;
  }

  .card-reading-modal__topbar p {
    font-size: 0.88rem;
  }

  .hero__card {
    transform: none;
  }

  .floating-button {
    min-width: 58px;
    min-height: 58px;
    border-radius: 22px;
  }

  .chatbot__faq {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .chatbot {
    width: min(380px, calc(100% - 1rem));
    border-radius: 26px;
    padding: 0.95rem;
  }

  .chatbot__messages {
    max-height: 280px;
  }

  .promo-modal__dialog {
    width: calc(100% - 1rem);
    border-radius: 28px;
    padding: 1.15rem;
  }

  .ceo-panel__dialog {
    padding: 1rem;
  }

  .ceo-panel__header {
    flex-direction: column;
  }

  .ceo-daily-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 520px) {
  :root {
    --floating-cards-bottom: calc(var(--floating-base-bottom) + 4.15rem);
    --floating-card-modal-bottom: calc(var(--floating-base-bottom) + 8.1rem);
    --floating-reopen-bottom: calc(var(--floating-base-bottom) + 8.55rem);
    --floating-chatbot-bottom: calc(var(--floating-reopen-bottom) + 0.7rem);
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .hero__content {
    gap: 1.25rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .navbar {
    border-radius: 22px;
    padding: 0.85rem 0.9rem;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero__content {
    padding-top: 3.7rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero__metrics article,
  .panel,
  .service-card,
  .testimonial-card {
    border-radius: 22px;
  }

  .floating-button--cards {
    width: 120px;
  }

  .floating-button--chat,
  .floating-button--whatsapp {
    padding-inline: 0.85rem;
  }

  .card-reading-modal {
    width: calc(100% - 1rem);
  }

  .card-reading-modal__cards {
    grid-template-columns: 1fr;
  }

  .card-pick {
    min-height: 104px;
  }

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

  .card-reading-modal__header h3,
  .booking-modal__header h3,
  .promo-modal__header h3 {
    font-size: 1.35rem;
  }

  .booking-modal__dialog,
  .promo-modal__dialog,
  .card-reading-modal__dialog,
  .chatbot {
    border-radius: 24px;
  }

  .floating-button {
    min-height: 54px;
    padding: 0.8rem 0.85rem;
  }

  .card-reading-reopen {
    min-width: 64px;
    min-height: 74px;
    padding: 0.58rem 0.45rem;
  }

  .card-reading-reopen__card {
    width: 2rem;
    height: 2.7rem;
  }

  .card-reading-reopen__label {
    font-size: 0.56rem;
  }

  .floating-button__label {
    font-size: 0.72rem;
  }

  .floating-button__label--cards {
    max-width: 4.5rem;
    font-size: 0.58rem;
  }

  .chatbot__message {
    max-width: 92%;
    padding: 0.8rem 0.9rem;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 4.55rem;
  }

  h1 {
    font-size: clamp(2.05rem, 11.5vw, 3rem);
  }

  .floating-button--cards {
    width: 112px;
  }

  .floating-button__label--cards {
    max-width: 4rem;
    font-size: 0.54rem;
  }

  .card-reading-modal__dialog {
    padding: 0.8rem;
  }

  .card-pick {
    min-height: 96px;
  }

  .card-reading-modal {
    width: calc(100% - 1rem);
  }

  .card-reading-modal__showcase {
    padding: 0.72rem;
  }

  .card-reading-modal__illustration {
    min-height: 96px;
  }

  .card-pick strong {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}