/* Static export fix: Figma runtime scroll/entry animations remain frozen without the
   original preview boot pipeline, so we force hidden sections visible locally. */
[style*="opacity: 0"] {
  opacity: 1 !important;
}

[style*="translateY(20px)"],
[style*="translateX(20px)"],
[style*="translateX(-20px)"] {
  transform: none !important;
}

html {
  scroll-behavior: smooth;
}

.aibeaty-lock-scroll {
  overflow: hidden;
}

.aibeaty-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.1);
  color: #be185d;
  font-size: 0.85rem;
  font-weight: 600;
}

.aibeaty-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.aibeaty-button:hover {
  transform: translateY(-1px);
}

.aibeaty-button--primary {
  background: linear-gradient(90deg, #ec4899, #9333ea);
  color: #fff;
  box-shadow: 0 18px 40px rgba(190, 24, 93, 0.18);
}

.aibeaty-button--secondary {
  background: #fff;
  border-color: rgba(190, 24, 93, 0.14);
  color: #111827;
}

.aibeaty-inline-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #be185d;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.aibeaty-mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 1rem;
  right: 1rem;
  z-index: 60;
}

.aibeaty-mobile-menu__card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(236, 72, 153, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
}

.aibeaty-mobile-menu__card a {
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 600;
  color: #374151;
}

.aibeaty-mobile-menu__card a:last-of-type {
  border-bottom: 0;
}

.aibeaty-contact-strip {
  padding: 0 1rem 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(250, 245, 255, 0.9) 100%);
}

.aibeaty-contact-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.4fr 1fr;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(236, 72, 153, 0.12);
  box-shadow: 0 30px 80px rgba(76, 29, 149, 0.08);
}

.aibeaty-contact-strip__eyebrow {
  margin: 0 0 0.5rem;
  color: #be185d;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aibeaty-contact-strip h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 800;
  color: #111827;
}

.aibeaty-contact-strip p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.aibeaty-contact-strip__actions {
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.aibeaty-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.aibeaty-modal.is-open {
  display: block;
}

.aibeaty-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

.aibeaty-modal__dialog {
  position: relative;
  width: min(880px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.28);
}

.aibeaty-modal__dialog--legal {
  width: min(920px, calc(100vw - 2rem));
}

.aibeaty-modal__close {
  position: sticky;
  top: 1rem;
  margin-left: calc(100% - 4rem);
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
  font-size: 1.5rem;
  line-height: 1;
}

.aibeaty-modal__content {
  padding: 0 2rem 2rem;
}

.aibeaty-modal__intro h2 {
  margin: 0.9rem 0 0.65rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  font-weight: 800;
  color: #111827;
}

.aibeaty-modal__intro p {
  margin: 0 0 1.5rem;
  color: #4b5563;
  line-height: 1.7;
}

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

.aibeaty-form label {
  display: grid;
  gap: 0.5rem;
}

.aibeaty-form span {
  font-weight: 600;
  color: #111827;
}

.aibeaty-form input,
.aibeaty-form select,
.aibeaty-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: #fff;
  color: #111827;
}

.aibeaty-form textarea {
  min-height: 132px;
  resize: vertical;
}

.aibeaty-form input:focus,
.aibeaty-form select:focus,
.aibeaty-form textarea:focus {
  outline: none;
  border-color: rgba(190, 24, 93, 0.5);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.aibeaty-form__full {
  grid-column: 1 / -1;
}

.aibeaty-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.aibeaty-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.22rem;
}

.aibeaty-consent span {
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: #4b5563;
}

.aibeaty-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.aibeaty-form__status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.aibeaty-form__status.is-success {
  color: #047857;
}

.aibeaty-form__status.is-error {
  color: #b91c1c;
}

.aibeaty-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 121;
  display: none;
}

.aibeaty-legal-modal.is-open {
  display: block;
}

.aibeaty-legal__meta {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b7280;
}

.aibeaty-legal__body {
  color: #374151;
  line-height: 1.7;
}

.aibeaty-legal__body h3 {
  margin: 1.5rem 0 0.5rem;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 800;
}

.aibeaty-legal__body p,
.aibeaty-legal__body ul {
  margin: 0.75rem 0 0;
}

.aibeaty-legal__body ul {
  padding-left: 1.2rem;
}

.aibeaty-hero-fit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.aibeaty-hero-fit__card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(236, 72, 153, 0.12);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.aibeaty-hero-fit__card strong {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 800;
}

.aibeaty-hero-fit__card span {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.5;
}

.aibeaty-fit-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.aibeaty-fit-card__media {
  height: 16rem;
  overflow: hidden;
}

.aibeaty-fit-card__body {
  padding: 1.5rem;
}

.aibeaty-fit-card__eyebrow {
  margin-bottom: 0.6rem;
  color: #be185d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aibeaty-fit-card h3 {
  margin: 0 0 0.85rem;
  color: #111827;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
}

.aibeaty-fit-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.aibeaty-cta-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.aibeaty-cta-facts__item {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.aibeaty-footer-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.aibeaty-footer-notes span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .aibeaty-contact-strip__inner,
  .aibeaty-form,
  .aibeaty-hero-fit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .aibeaty-modal__content {
    padding: 0 1rem 1rem;
  }

  .aibeaty-contact-strip {
    padding-bottom: 2rem;
  }

  .aibeaty-contact-strip__inner {
    padding: 1.25rem;
    border-radius: 24px;
  }
}
