:root {
  --ink: #0d1644;
  --muted: #5f6682;
  --primary: #5631c8;
  --primary-dark: #4223aa;
  --pink: #e94f8e;
  --line: #e8e6f6;
  --soft: #f8f6ff;
  --white: #fff;
  --shadow: 0 22px 60px rgba(41, 34, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 75px;
  padding: 0 68px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(60, 45, 140, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 3px solid #8d62df;
  border-radius: 15px 15px 15px 4px;
  color: #d94493;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  transform: rotate(-8deg);
}

.brand strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand strong span {
  color: #3470c8;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #29304f;
  font-size: 10px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  color: #121936;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-menu {
  position: relative;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 158px;
  padding: 8px;
  border: 1px solid #e4ddf8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(39, 35, 82, 0.14);
}

.account-dropdown button {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.account-dropdown button:hover {
  color: #5631c8;
  background: #f6f2ff;
}

.account-menu.signed-in #loginButton::after {
  content: " ▾";
  font-size: 12px;
}

.account-menu.signed-in.menu-open .account-dropdown,
.account-menu.signed-in:focus-within .account-dropdown,
.account-menu.signed-in:hover .account-dropdown {
  display: block !important;
}

.btn {
  height: 42px;
  padding: 0 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
}

button.btn {
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #653bd2, #3e27b2);
  color: #fff;
  box-shadow: 0 14px 28px rgba(83, 49, 200, 0.24);
}

.btn-download {
  color: #fff;
  background: #24805f;
  box-shadow: 0 14px 28px rgba(36, 128, 95, 0.2);
}

.btn-light,
.btn-outline {
  color: #4326ad;
  border-color: #7d64df;
  background: #fff;
}

.btn-large {
  width: 208px;
  height: 56px;
}

.btn-white {
  background: #fff;
  color: #e84f8d;
  min-width: 145px;
}

.hero {
  min-height: 430px;
  padding: 62px 68px 32px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) 1fr;
  gap: 36px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 70% 22%, rgba(168, 136, 242, 0.24), transparent 30%),
    radial-gradient(circle at 88% 62%, rgba(255, 156, 94, 0.22), transparent 30%),
    linear-gradient(105deg, #f5f7ff 0%, #faf4ff 55%, #fff3ec 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.42;
  pointer-events: none;
  animation: floatBannerGlow 12s ease-in-out infinite alternate;
}

.hero::before {
  left: 44%;
  top: -110px;
  background: rgba(142, 114, 232, 0.24);
}

.hero::after {
  right: -90px;
  bottom: -150px;
  background: rgba(255, 151, 111, 0.24);
  animation-delay: -4s;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero-slider {
  position: relative;
  min-height: 318px;
  margin-bottom: 22px;
}

.hero-slide {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 590px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 580px;
  font-size: 46px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--pink);
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #172042;
  font-size: 18px;
  line-height: 1.55;
}

@keyframes floatBannerGlow {
  from {
    transform: translate3d(-24px, 18px, 0) scale(0.95);
  }

  to {
    transform: translate3d(36px, -18px, 0) scale(1.08);
  }
}

.trust-row {
  display: flex;
  gap: 46px;
  margin-top: 28px;
  color: #172042;
  font-size: 13px;
  font-weight: 600;
}

.hero-art {
  position: relative;
  min-height: 360px;
}

.bubble {
  position: absolute;
  z-index: 3;
  padding: 18px 22px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(110, 75, 165, 0.1);
  font-size: 14px;
  font-weight: 800;
}

.bubble-one {
  left: 90px;
  top: 105px;
}

.bubble-two {
  left: 44px;
  top: 188px;
}

.bubble-three {
  right: 38px;
  top: 214px;
}

.heart-bubble {
  position: absolute;
  top: 32px;
  right: 132px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #7967d5;
  font-size: 34px;
  box-shadow: var(--shadow);
}

.person {
  position: absolute;
  right: 130px;
  bottom: -6px;
  width: 286px;
  height: 350px;
}

.hair {
  position: absolute;
  top: 0;
  left: 76px;
  width: 168px;
  height: 174px;
  background: linear-gradient(145deg, #111229, #23204b);
  border-radius: 54% 48% 54% 28%;
  transform: rotate(11deg);
}

.head {
  position: absolute;
  top: 47px;
  left: 116px;
  width: 80px;
  height: 92px;
  background: #ffb59f;
  border-radius: 42% 42% 50% 50%;
  transform: rotate(10deg);
}

.head::before,
.head::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 4px;
  border-radius: 99px;
  background: #15172e;
  top: 36px;
}

.head::before {
  left: 17px;
  transform: rotate(-15deg);
}

.head::after {
  right: 15px;
  transform: rotate(15deg);
}

.neck {
  position: absolute;
  top: 128px;
  left: 151px;
  width: 42px;
  height: 44px;
  background: #f59d8d;
  border-radius: 0 0 18px 18px;
}

.body {
  position: absolute;
  right: 18px;
  bottom: 36px;
  width: 210px;
  height: 210px;
  background: linear-gradient(135deg, #f5a3dd, #c772d7);
  border-radius: 72px 64px 40px 42px;
}

.pillow {
  position: absolute;
  left: 78px;
  top: 154px;
  width: 132px;
  height: 100px;
  background: #fff8f8;
  border-radius: 32px 26px 38px 26px;
  box-shadow: 0 12px 20px rgba(78, 44, 115, 0.12);
  transform: rotate(14deg);
}

.arm {
  position: absolute;
  z-index: 2;
  background: #d97bd4;
  border-radius: 35px;
}

.arm-left {
  left: 56px;
  top: 177px;
  width: 160px;
  height: 52px;
  transform: rotate(24deg);
}

.arm-right {
  right: 62px;
  top: 188px;
  width: 112px;
  height: 48px;
  transform: rotate(-28deg);
}

.legs {
  position: absolute;
  left: 48px;
  bottom: 0;
  width: 178px;
  height: 90px;
  background: #8f9ee8;
  border-radius: 80px 55px 18px 70px;
}

.section {
  max-width: 1130px;
  margin: 0 auto;
  padding: 28px 24px;
}

.section-title {
  margin: 0 auto 28px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #b9a5e8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  text-align: center;
}

.steps article {
  position: relative;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 48px);
  width: calc(100% - 64px);
  border-top: 2px dotted #c9bde8;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #8974db;
  background: linear-gradient(145deg, #fff1fa, #f4f3ff);
  font-size: 32px;
  font-weight: 800;
}

.step-number {
  width: 27px;
  height: 27px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #4430b4;
  font-size: 13px;
  font-weight: 800;
}

.steps h3,
.plan h3,
.booking-card h3 {
  margin: 0 0 8px;
}

.steps p,
.plan p,
.booking-card p {
  margin: 0;
  color: #242b48;
  line-height: 1.45;
}

.plans,
.topics,
.time-slots {
  border-top: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plan {
  min-height: 255px;
  padding: 25px;
  text-align: center;
  border: 1px solid #ebe8f5;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8fffd, #f5f5ff);
  box-shadow: 0 16px 36px rgba(39, 35, 82, 0.06);
}

.plan h3 {
  font-size: 22px;
}

.plan strong {
  display: block;
  margin: 16px 0 14px;
  font-size: 40px;
  letter-spacing: -0.05em;
}

.plan a {
  width: 150px;
  height: 38px;
  margin: 20px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: #5734c7;
  font-size: 13px;
  font-weight: 800;
}

.plan:has(a.active) {
  border-color: #5631c8;
  box-shadow: 0 18px 42px rgba(83, 49, 200, 0.16);
}

.plan a.active {
  box-shadow: 0 0 0 3px rgba(86, 49, 200, 0.16);
}

.plan.teal h3 {
  color: #12826d;
}

.plan.teal a {
  background: #1a9b84;
}

.plan.purple h3 {
  color: #5431c5;
}

.plan.orange h3 {
  color: #c85b0f;
}

.plan.orange a {
  background: #eb8020;
}

.plan.blue h3 {
  color: #1d58a0;
}

.plan.blue a {
  background: #2f69ad;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 22px;
  text-align: center;
}

.topic-grid article {
  display: grid;
  gap: 10px;
  justify-items: center;
  font-size: 13px;
  line-height: 1.25;
}

.topic-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #7459ce;
  background: linear-gradient(145deg, #eff9fb, #fff0f8);
  font-size: 29px;
}

.booking-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  border: 1px solid #ebe8f5;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 20%, rgba(102, 58, 207, 0.1), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(233, 79, 142, 0.11), transparent 28%),
    #fff;
  box-shadow: 0 18px 48px rgba(39, 35, 82, 0.08);
}

.calendar-panel,
.slot-panel {
  min-width: 0;
}

.selected-plan {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #d9d1f4;
  border-radius: 10px;
  background: #fbfaff;
}

.selected-plan span,
.selected-plan small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.selected-plan strong {
  display: block;
  margin: 5px 0;
  color: var(--ink);
  font-size: 20px;
}

.calendar-panel label,
.field-label {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.calendar-panel input {
  width: 100%;
  height: 58px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #cfc5ef;
  border-radius: 10px;
  background: #fbfaff;
  font: inherit;
  font-weight: 700;
}

.calendar-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.slot-grid label {
  cursor: pointer;
}

.slot-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slot-grid span {
  min-height: 46px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b35b6;
  border: 1px solid #d8cff5;
  border-radius: 9px;
  background: #fff;
  font-weight: 800;
  transition: 0.2s ease;
}

.slot-grid input:checked + span {
  color: #fff;
  border-color: #5631c8;
  background: linear-gradient(135deg, #653bd2, #3e27b2);
  box-shadow: 0 14px 26px rgba(83, 49, 200, 0.2);
}

.slot-grid label.slot-booked {
  cursor: not-allowed;
}

.slot-grid label.slot-selected {
  cursor: default;
}

.slot-grid label.slot-booked span,
.slot-grid input:disabled + span {
  color: #8b91a8;
  border-color: #e1e2ea;
  background: #f3f4f8;
  box-shadow: none;
  text-decoration: line-through;
  opacity: 0.78;
}

.slot-grid label.slot-selected span,
.slot-grid label.slot-selected input:checked + span {
  color: #8b91a8;
  border-color: #e1e2ea;
  background: #f3f4f8;
  box-shadow: none;
  text-decoration: line-through;
  opacity: 0.78;
}

.booking-submit {
  width: 178px;
  margin-top: 20px;
}

.booking-submit:disabled,
.booking-submit.booking-confirmed {
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}

.booking-submit.booking-confirmed {
  background: #12826d;
}

.booking-message {
  min-height: 22px;
  margin-top: 14px;
  color: #12826d;
  font-weight: 800;
}

.booking-message.success-message,
.booking-success-notice {
  color: #0f7b5f;
}

.booking-success-notice {
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 16px 18px;
  border: 1px solid #9fd9c9;
  border-radius: 10px;
  background: #effcf8;
  font-weight: 800;
  line-height: 1.45;
}

.testimonials,
.blog {
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  min-height: 255px;
  padding: 20px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  border: 1px solid #ebe8f5;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 246, 255, 0.92)),
    #fff;
  box-shadow: 0 16px 38px rgba(39, 35, 82, 0.07);
}

.testimonial-photo {
  position: relative;
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #f2b397 0 18%, transparent 19%),
    radial-gradient(circle at 50% 112%, #ffc0d6 0 38%, transparent 39%),
    linear-gradient(145deg, #2e2347 0 40%, #f6b59c 41% 67%, #f5eaff 68% 100%);
  box-shadow: 0 12px 24px rgba(83, 49, 200, 0.16);
}

.testimonial-photo::before {
  content: "";
  position: absolute;
  inset: 12px 16px auto;
  height: 30px;
  border-radius: 50% 50% 46% 46%;
  background: rgba(21, 20, 44, 0.88);
}

.testimonial-photo::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 35px;
  width: 36px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(90deg, transparent 0 35%, rgba(39, 35, 82, 0.75) 36% 41%, transparent 42% 58%, rgba(39, 35, 82, 0.75) 59% 64%, transparent 65%),
    #f6b59c;
}

.photo-two {
  background:
    radial-gradient(circle at 50% 38%, #d99a7d 0 18%, transparent 19%),
    radial-gradient(circle at 50% 112%, #cbdcff 0 38%, transparent 39%),
    linear-gradient(145deg, #1e2436 0 33%, #d99a7d 34% 67%, #eef3ff 68% 100%);
}

.photo-three {
  background:
    radial-gradient(circle at 50% 38%, #f0a989 0 18%, transparent 19%),
    radial-gradient(circle at 50% 112%, #ead8ff 0 38%, transparent 39%),
    linear-gradient(145deg, #3a2039 0 42%, #f0a989 43% 67%, #fff0f6 68% 100%);
}

.testimonial-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: #725dcf;
  font-size: 13px;
  font-weight: 800;
}

.testimonial-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.testimonial-copy p {
  margin: 0;
  color: #343b58;
  font-size: 14px;
  line-height: 1.55;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #ebe8f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(39, 35, 82, 0.08);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.45;
  display: block;
  object-fit: cover;
}

.blog-copy {
  padding: 20px;
}

.blog-copy span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  color: #5631c8;
  background: #f4f0ff;
  font-size: 12px;
  font-weight: 800;
}

.blog-copy h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.blog-copy p {
  margin: 0;
  color: #343b58;
  font-size: 14px;
  line-height: 1.6;
}

.safety {
  max-width: 1130px;
  margin: 0 auto 32px;
  padding: 28px 42px;
  display: grid;
  grid-template-columns: 70px 1fr 1.45fr auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(100deg, #7651d0, #6532c5 52%, #ff5f8b);
}

.shield {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px 18px 24px 24px;
  font-size: 28px;
}

.safety h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.safety p {
  margin: 0;
  line-height: 1.45;
  font-weight: 600;
}

.site-footer {
  max-width: 1130px;
  margin: 0 auto;
  padding: 18px 24px 36px;
  display: grid;
  grid-template-columns: 2.3fr 1fr 1.1fr 1.2fr;
  gap: 46px;
}

.site-footer p,
.site-footer a {
  color: #222a48;
  font-size: 13px;
  line-height: 1.65;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 14px;
}

.site-footer div > a:not(.brand) {
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  max-width: 250px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #4d37bd;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  color: #848aa0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd7f5;
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #20194e;
}

.hidden {
  display: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 22, 68, 0.48);
  backdrop-filter: blur(10px);
}

.login-modal {
  position: relative;
  width: min(100%, 430px);
  padding: 28px;
  border: 1px solid #eee9fb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(13, 22, 68, 0.24);
}

.profile-modal {
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid #e2dcf5;
  border-radius: 8px;
  color: #4326ad;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-eyebrow {
  margin: 0 0 8px;
  color: #e94f8e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-modal h2 {
  margin: 0 42px 18px 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid #e5def7;
  border-radius: 10px;
  background: #fbfaff;
}

.auth-tab {
  height: 40px;
  border: 0;
  border-radius: 7px;
  color: #5631c8;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.auth-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #653bd2, #3e27b2);
  box-shadow: 0 10px 22px rgba(83, 49, 200, 0.18);
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.login-form input,
.login-form select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #cfc5ef;
  border-radius: 9px;
  color: var(--ink);
  background: #fbfaff;
  font: inherit;
  font-weight: 700;
}

.login-form input[readonly] {
  color: #68708d;
  background: #f2f3f8;
}

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

.profile-form label,
.profile-form input,
.profile-form select,
.profile-booking-summary,
.profile-form .auth-submit,
.profile-form .login-status {
  grid-column: span 2;
}

.profile-booking-summary {
  padding: 14px;
  border: 1px solid #e4ddf8;
  border-radius: 10px;
  background: #fbfaff;
}

.profile-booking-summary strong,
.profile-booking-summary span {
  display: block;
}

.profile-booking-summary strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.profile-booking-summary span {
  color: #5631c8;
  font-weight: 800;
  line-height: 1.45;
}

.profile-form label[for="profileFirstName"],
.profile-form #profileFirstName,
.profile-form label[for="profileLastName"],
.profile-form #profileLastName {
  grid-column: span 1;
}

.auth-submit {
  width: 100%;
  margin-top: 8px;
}

.login-status {
  min-height: 22px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.login-status.error {
  color: #b42318;
}

.login-status.success {
  color: #12826d;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 24px;
    gap: 16px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    padding: 52px 28px 30px;
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 390px;
  }

  .person {
    right: calc(50% - 180px);
  }

  .plan-grid,
  .booking-card {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .topic-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .safety,
  .site-footer {
    margin-left: 24px;
    margin-right: 24px;
  }

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 12px 18px;
  }

  .brand {
    flex: 1;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
  }

  .header-actions {
    padding: 10px 0 4px;
  }

  .account-menu {
    width: 100%;
  }

  .account-menu .btn {
    width: 100%;
  }

  .account-dropdown {
    position: static;
    margin-top: 8px;
  }

  .hero {
    padding: 38px 20px 18px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-slider {
    min-height: 390px;
    margin-bottom: 18px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-large {
    width: 100%;
  }

  .steps,
  .plan-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .section-title {
    text-align: center;
    font-size: 22px;
    gap: 12px;
  }

  .section-title::before,
  .section-title::after {
    width: 24px;
  }

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

  .booking-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .booking-submit {
    width: 100%;
  }

  .testimonial-card {
    grid-template-columns: 72px 1fr;
    padding: 18px;
  }

  .testimonial-photo {
    width: 70px;
    height: 70px;
  }

  .safety {
    grid-template-columns: 1fr;
    margin: 0 20px 28px;
    text-align: center;
  }

  .shield {
    margin: 0 auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin: 0;
    gap: 24px;
  }

  .hero-art {
    min-height: 320px;
    transform: scale(0.82);
    transform-origin: center top;
  }

  .bubble {
    font-size: 12px;
  }

  .profile-form label[for="profileFirstName"],
  .profile-form #profileFirstName,
  .profile-form label[for="profileLastName"],
  .profile-form #profileLastName {
    grid-column: span 2;
  }
}
