:root {
  --orange: #FF3301;
  --black: #050505;
  --white: #ffffff;
  --cream: #f4f1ec;
  --muted: #777;
  --line: #e8e1d6;
  --max: 1460px;
  --font-main: "Suisse Intl", "SuisseIntl", "Suisse International", Inter, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  max-width: 100%;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

/* --- Base Layout (Mobile Default) --- */
.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

main section {
  scroll-margin-top: 80px;
}

.orange {
  color: var(--orange);
}

.display {
  font-family: var(--font-main);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
}

.section-kicker {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.075em;
}

.section-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 620px;
  margin-top: 16px;
}

.center {
  text-align: center;
}

.center .section-copy {
  margin-inline: auto;
}

/* --- Custom Arrow Icon & Animations --- */
.arrow-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='20' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='20' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
  margin-left: 0.28em;
  transition: transform 0.24s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.24s ease;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.arrow-icon-left,
.arrow-icon-right {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  vertical-align: middle;
  transition: transform 0.24s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.24s ease;
  flex-shrink: 0;
  position: relative;
}

.arrow-icon-left {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='20' y1='12' x2='4' y2='12'%3E%3C/line%3E%3Cpolyline points='11 5 4 12 11 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='20' y1='12' x2='4' y2='12'%3E%3C/line%3E%3Cpolyline points='11 5 4 12 11 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
}

.arrow-icon-right {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='12' x2='20' y2='12'%3E%3C/line%3E%3Cpolyline points='13 5 20 12 13 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='12' x2='20' y2='12'%3E%3C/line%3E%3Cpolyline points='13 5 20 12 13 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
}

/* Hover effects to animate the arrow shifting up-right */
.btn:hover .arrow-icon,
.price-btn:hover .arrow-icon,
.host-btn:hover .arrow-icon,
.booking-continue:hover .arrow-icon,
.booking-whatsapp:hover .arrow-icon,
.booking-pay:hover .arrow-icon,
.faq-cta:hover .arrow-icon,
.faq-q:hover .arrow-icon,
.footer-btn:hover .arrow-icon,
.hq-feature:hover .arrow-icon,
.space-item:hover .arrow-icon,
.space-title:hover .arrow-icon {
  transform: translate(2.5px, -2.5px);
}

/* Hover transitions for horizontal arrows */
.space-arrow:hover .arrow-icon-left,
.testimonial-arrow:hover .arrow-icon-left,
.back-calendar-btn:hover .arrow-icon-left {
  transform: translateX(-3.5px);
}

.space-arrow:hover .arrow-icon-right,
.testimonial-arrow:hover .arrow-icon-right {
  transform: translateX(3.5px);
}

/* FAQ active item transitions arrow rotation to 180 degrees (pointing down-left) */
.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

/* When active FAQ is hovered, let the shift follow its direction */
.faq-item.active .faq-q:hover .arrow-icon {
  transform: rotate(180deg) translate(2.5px, -2.5px);
}

/* --- Header --- */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: 120px;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.header.scrolled,
.header:has(.nav-links.open) {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  position: absolute;
  top: 100px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
  pointer-events: none;
  z-index: 95;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px) scale(1);
  pointer-events: auto;
}

.nav-links > a {
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.nav-links > a::after {
  content: '→';
  font-size: 20px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links > a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.nav-links > a.active {
  color: var(--orange) !important;
}

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

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  margin-top: 12px;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  width: 100%;
  margin-bottom: 24px;
}

.mobile-nav-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888888;
  margin-bottom: 8px;
  font-weight: 500;
}

.mobile-nav-phone {
  font-size: 26px;
  font-weight: 700;
  color: var(--black) !important;
  text-decoration: none;
  margin-bottom: 24px;
  display: inline-block;
  transition: color 0.25s ease;
  border-bottom: none !important;
  padding: 0 !important;
}

.mobile-nav-phone:hover {
  color: var(--orange) !important;
  padding-left: 0 !important;
}

.mobile-nav-phone::after {
  display: none !important;
}

.mobile-nav-actions {
  width: 100%;
}

.btn-mobile-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.header-actions {
  display: none;
}

.menu-btn {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  background-color: var(--black);
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-btn span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
}

.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60%;
}

.menu-btn span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(15px);
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  min-height: auto;
  padding-top: 110px;
  padding-bottom: 60px;
  background: url('assets/BannerBG.png') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-kicker {
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(38px, 9vw, 56px);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--orange);
  font-weight: 700;
}


.hero-copy {
  max-width: 550px;
  color: #2c2a2a;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 200;
  margin-bottom: 20px;
}

.hero-subprice {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-actions .btn {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat {
  background: transparent;
  border: none;
  border-left: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat strong {
  background: linear-gradient(90deg, var(--orange) 0%, var(--black) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  letter-spacing: -0.06em;
  display: block;
  line-height: 1.1;
  font-weight: 700;
}

.stat strong span {
  color: inherit;
  -webkit-text-fill-color: inherit;
  font-size: 1em;
  font-weight: inherit;
  vertical-align: baseline;
  margin-right: 0.05em;
  display: inline-block;
}

.stat span {
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 40px;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: block;
  z-index: 2;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
}

.badge-creator-packages,
.badge-next-available {
  display: none;
}

.badge-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 60, 22, 0.5);
  border-radius: 20px;
  padding: 22px 32px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 210px;
}

.badge-bubble::after {
  content: "";
  position: absolute;
  bottom: -13px;
  right: 28px;
  width: 24px;
  height: 24px;
  background: transparent;
  border-right: 1px solid rgba(255, 60, 22, 0.5);
  border-bottom: 1px solid rgba(255, 60, 22, 0.5);
  transform: rotate(45deg);
  z-index: 1;
}

.badge-lbl-creator {
  font-size: 18px;
  font-weight: 300;
  color: #050505;
  line-height: 1.2;
}

.badge-lbl-packages {
  font-size: 18px;
  font-weight: 300;
  color: #050505;
  line-height: 1.2;
  margin-bottom: 6px;
}

.badge-val {
  font-size: 31px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.1;
}

.scallop-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(255, 60, 22, 0.09));
}

.badge-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.badge-txt-small {
  font-size: 12px;
  font-weight: 400;
  color: #050505;
}

.badge-txt-large {
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66px;
  background: linear-gradient(90deg, #ffd0c4 0%, #ead3dc 52%, #cad8ff 100%);
  border-top: 1px solid rgba(255, 51, 1, 0.14);
  border-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 16px;
  font-weight: 300;
  white-space: nowrap;
  z-index: 5;
}

.hero-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: hero-scroll 42s linear infinite;
}

.hero-ticker-track span {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--black);
  margin-right: 28px;
}

.hero-ticker-track span::after {
  content: "•";
  color: var(--orange);
  margin-left: 28px;
  font-size: 14px;
}

@keyframes hero-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

@media (max-width: 620px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 112px 0 58px;
    background-position: center top;
  }

  .hero-grid {
    width: min(100%, calc(100% - 32px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    text-align: center;
  }

  .hero-content {
    display: contents;
  }

  .hero-kicker {
    order: 1;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 300;
    margin: 0 0 24px;
  }

  .hero h1 {
    order: 2;
    font-size: clamp(46px, 12.8vw, 56px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin: 0 0 25px;
  }

  .hero h1 span {
    font-weight: 700;
  }

  .hero-copy {
    order: 3;
    max-width: 100%;
    color: #252020;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 300;
    margin: 0 auto 26px;
  }

  .hero-subprice {
    order: 4;
    font-size: 25px;
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 52px;
  }

  .hero-visual {
    order: 5;
    width: auto;
    margin: 0 -12px 50px;
  }

  .hero-banner-wrapper {
    width: min(100vw - 28px, 560px);
    max-width: none;
  }

  .hero-actions {
    order: 6;
    gap: 20px;
    margin: 0 0 56px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 64px;
    justify-content: space-between;
    padding: 0 34px;
    font-size: 20px;
    line-height: 1;
    font-weight: 300;
  }

  .stats {
    order: 7;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
    text-align: left;
  }

  .stat {
    min-height: 78px;
    justify-content: flex-start;
  }

  .stat:nth-child(odd) {
    padding-right: 16px;
  }

  .stat:nth-child(even) {
    border-left: 1px solid rgba(0, 0, 0, 0.16);
    padding-left: 48px;
  }

  .stat strong {
    font-size: 46px;
    line-height: 0.92;
  }

  .stat span {
    margin-top: 8px;
    font-size: 0;
  }

  .stat span::after {
    content: attr(data-mobile-label);
    display: block;
    max-width: 170px;
    color: var(--black);
    font-size: 19px;
    line-height: 1.08;
    font-weight: 300;
  }

  .hero-ticker {
    display: none;
  }
}

/* --- Services --- */
.services {
  background: #000;
  color: var(--white);
  padding: 66px 0;
  position: relative;
  overflow: hidden;
}

.services-wrap {
  width: min(var(--max), calc(100% - 32px));
  position: relative;
}

.services-head {
  max-width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.services-kicker {
  display: inline-block;
  color: var(--white);
  font-size: 13px;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 16px;
}

.services-title {
  color: var(--white);
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.services-title span {
  color: var(--orange);
}

.services-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 16px;
  font-weight: 500;
}

.service-stack {
  margin-top: 44px;
  position: relative;
  z-index: 2;
}

.service-card {
  width: 100%;
  min-height: auto;
  position: relative;
  transform: translateZ(0);
  will-change: transform;
}

.service-card:not(:first-child) {
  margin-top: 58px;
}

.service-media {
  width: 100%;
  margin-left: auto;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.service-media img {
  height: auto;
  transform-origin: center;
  will-change: transform;
}

.service-info {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  margin-top: 14px;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

.service-number {
  display: block;
  color: rgba(255, 255, 255, 0.22);
  font-size: 34px;
  line-height: 0.9;
  font-weight: 100;
  margin-bottom: 10px;
}

.service-info h3 {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-info h3 span {
  display: inline-block;
  background: #000000;
  padding: 6px 12px;
}

.service-info h3 span:first-child {
  color: var(--white);
}

.service-info h3 span:last-child {
  color: var(--orange);
}

.service-card p {
  width: 100%;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 100;
}

.service-card.align-left .service-media,
.service-card.align-left p {
  margin-left: auto;
  margin-right: 0;
}

.service-card:hover .service-media img {
  transform: scale(1.035);
}

/* --- HQ --- */
.hq {
  background: #f3f3f3;
  padding: 66px 0;
}

.hq-grid {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: start;
}

.hq-content {
  padding-top: 4px;
}

.hq-kicker {
  display: inline-block;
  color: #050505;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
}

.hq-title {
  color: #050505;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hq-title span {
  color: var(--orange);
}

.hq-copy {
  max-width: 725px;
  margin-top: 18px;
  color: #333;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 200;
}

.hq-img {
  margin-top: 34px;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border: 2px solid var(--orange);
  border-radius: 18px;
  background: #ddd;
}

.hq-img img {
  height: 100%;
  object-fit: cover;
}

.hq-features {
  display: grid;
  gap: 22px;
  padding-top: 0;
}

.hq-feature {
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border-radius: 8px;
  padding: 28px 18px;
  min-height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hq-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 55%, rgba(255, 60, 22, 0.32), transparent 29%),
    linear-gradient(135deg, #242424 0%, #1e1e1e 42%, #200600 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hq-feature.active::before {
  opacity: 1;
}

.hq-feature.active {
  color: var(--white);
}

.hq-feature-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transition: background 0.4s ease, color 0.4s ease;
}

.hq-feature.active .hq-feature-num {
  background: var(--white);
  color: var(--orange);
}

.hq-feature-body {
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.hq-feature.active .hq-feature-body {
  grid-template-rows: auto 1fr;
}

.hq-feature h3 {
  color: #050505;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  margin-top: 0;
  transition: color 0.4s ease;
}

.hq-feature.active h3 {
  color: var(--orange);
}

.hq-feature p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.45;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  transition: opacity 0.3s ease, margin 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.hq-feature.active p {
  opacity: 1;
  margin-top: 14px;
}

.hq-feature-arrow {
  color: #050505;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  justify-self: end;
}

.hq-feature.active .hq-feature-arrow {
  color: var(--white);
  margin-top: 0;
}

.hq-feature.active .arrow-icon {
  transform: rotate(180deg);
}

.hq-feature.active:hover .arrow-icon {
  transform: rotate(180deg) translate(2.5px, -2.5px);
}

/* --- Pricing --- */
.pricing {
  padding: 66px 0 44px;
  background: var(--white);
}

.pricing-wrap {
  width: min(var(--max), calc(100% - 32px));
}

.pricing-kicker {
  display: inline-block;
  color: #1b1b1b;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 18px;
}

.pricing-title {
  color: #050505;
  font-size: 22px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.pricing-title span {
  color: var(--orange);
}

.pricing-copy {
  max-width: 790px;
  margin: 22px auto 0;
  color: #333;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 100;
}

.price-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}

.price-card {
  background: #ededed;
  border: 0;
  border-radius: 24px;
  padding: 12px 12px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: none;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-12px);
  background-color: #f5f5f5;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.02);
}

.price-card.popular {
  background: linear-gradient(90deg, #ededed 0%, #f5f5f5 50%, #ededed 100%);
  transform: none;
  overflow: hidden;
}

.price-card.popular:hover {
  transform: translateY(-12px);
  background: linear-gradient(90deg, #ededed 0%, #fff 50%, #ededed 100%);
  box-shadow: 0 40px 80px rgba(255, 51, 1, 0.16), 0 4px 20px rgba(255, 51, 1, 0.05);
}

/* Spotlight Overlay for Cursor Tracking */
.price-card::after,
.pricing-addons::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:not(.popular)::after {
  background: radial-gradient(
    380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.45),
    transparent 60%
  );
}

.price-card.popular::after {
  background: radial-gradient(
    420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 60, 22, 0.12),
    transparent 60%
  );
}

.pricing-addons::after {
  background: radial-gradient(
    550px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 60, 22, 0.08),
    transparent 60%
  );
}

.price-card:hover::after,
.pricing-addons:hover::after {
  opacity: 1;
}


.price-card-head {
  min-height: auto;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover .price-card-head {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.price-card.popular:hover .price-card-head {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(255, 51, 1, 0.08);
}

.price-card.popular .price-card-head {
  min-height: auto;
  border: 1px solid rgba(255, 60, 22, 0.62);
  background:
    radial-gradient(circle at 100% 100%, rgba(94, 126, 255, 0.22), transparent 38%),
    radial-gradient(circle at 0% 0%, rgba(255, 60, 22, 0.18), transparent 42%),
    #fff;
  padding: 28px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  color: var(--white);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 26px;
}

.price-card h3 {
  color: #050505;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.price-card.popular h3 {
  color: var(--orange);
}

.price-card-head p {
  max-width: 410px;
  margin-top: 20px;
  color: #333;
  font-size: 16px;
  line-height: 1.32;
}

.price {
  color: var(--orange);
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.055em;
  margin-top: 36px;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price span {
  color: #050505;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 0;
  display: inline-block;
}

.price-features {
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding: 0 24px;
}

.price-card.popular .price-features {
  margin: 34px 0;
  padding: 0 24px;
  gap: 18px;
}

.price-features li {
  color: #444;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 13px;
}

.price-features li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 61% 14%, 78% 8%, 84% 25%, 100% 31%, 89% 48%, 100% 66%, 82% 72%, 78% 91%, 60% 86%, 50% 100%, 39% 86%, 21% 91%, 17% 72%, 0% 66%, 11% 48%, 0% 31%, 16% 25%, 22% 8%, 39% 14%);
  background: #707070;
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.price-card.popular .price-features li::before {
  background: var(--orange);
}

.price-btn {
  width: calc(100% - 48px);
  max-width: none;
  min-height: 58px;
  margin-top: auto;
  margin-left: 24px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-btn span {
  font-size: 30px;
  line-height: 1;
}

/* Card hover triggers for price buttons and arrow icons */
.price-card:hover .price-btn {
  background-color: var(--orange);
  box-shadow: 0 8px 20px rgba(255, 60, 22, 0.25);
}

.price-card:hover .price-btn .arrow-icon {
  transform: translate(2.5px, -2.5px);
}

.pricing-addons {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: #ededed;
  border: 1px solid transparent;
  border-radius: 20px;
  text-align: left;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.pricing-addons:hover {
  transform: translateY(-6px);
  background: #f2f2f2;
  border-color: rgba(255, 51, 1, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.addon-intro {
  position: relative;
  z-index: 6;
}

.addon-intro h3 {
  color: #050505;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.addon-intro p {
  margin-top: 18px;
  color: #4b4b4b;
  font-size: 17px;
  line-height: 1.2;
}

.addon-item {
  border-left: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 6;
}

.addon-item span {
  color: #050505;
  font-size: 17px;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.addon-item strong {
  margin-top: 14px;
  color: #050505;
  font-size: 24px;
  line-height: 1;
  font-weight: 0;
  letter-spacing: -0.035em;
  transition: color 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-4px);
}

.addon-item:hover strong {
  color: var(--orange);
}


@media (max-width: 620px) {
  .pricing-addons {
    width: min(100%, calc(100% - 60px));
    margin: 42px auto 0;
    display: block;
    background: #ededed;
    border-radius: 28px;
    padding: 44px 24px 48px;
    text-align: center;
  }

  .addon-intro {
    margin-bottom: 40px;
  }

  .addon-intro h3 {
    font-size: 25px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
  }

  .addon-intro p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 300;
  }

  .addon-item {
    min-height: auto;
    border: 0;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .addon-item + .addon-item {
    margin-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    padding-top: 28px;
  }

  .addon-item span {
    font-size: 19px;
    line-height: 1.16;
    font-weight: 300;
  }

  .addon-item strong {
    margin-top: 16px;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.035em;
  }
}

/* --- Space --- */
.space {
  background: var(--white);
  color: #050505;
  padding: 48px 0 96px;
  overflow: hidden;
}

.space-head {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.space-kicker {
  color: #050505;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.space-kicker::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--orange);
}

.space-title {
  margin-top: 24px;
  color: #050505;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
}

.space-title span {
  color: var(--orange);
}

.space-copy {
  margin-top: 24px;
  color: #303030;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.tabs {
  margin: 34px 0 0;
  display: none;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-select-wrapper {
  display: block;
  position: relative;
  width: min(100%, 280px);
  margin: 34px auto 0;
  z-index: 15;
}

.gallery-select-trigger {
  width: 100%;
  min-height: 48px;
  background: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #050505;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.gallery-select-trigger:hover,
.gallery-select-trigger:focus {
  background-color: #e5e5e5;
}

.gallery-select-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
  margin-left: 12px;
  display: inline-block;
}

.gallery-select-wrapper.is-open .gallery-select-arrow {
  transform: rotate(-135deg) translateY(2px) translateX(2px);
}

.gallery-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s;
  pointer-events: none;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-select-wrapper.is-open .gallery-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.gallery-option {
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #050505;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gallery-option:hover {
  background: rgba(0, 0, 0, 0.04);
}

.gallery-option.active {
  background: #000219;
  color: var(--white);
}

@media (min-width: 621px) {
  .tabs {
    display: flex;
  }

  .gallery-select-wrapper {
    display: none !important;
  }
}

.tab {
  min-height: 44px;
  border: 0;
  background: #efefef;
  border-radius: 999px;
  padding: 0 24px;
  color: #050505;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab.active {
  background: #000219;
  color: var(--white);
}

.space-gallery-wrap {
  margin-top: 54px;
  padding-left: max(16px, calc((100vw - 1710px) / 2));
  overflow: hidden;
}

.gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-right: 16px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 min(78vw, 560px);
  height: 390px;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  box-shadow: none;
  cursor: pointer;
  scroll-snap-align: start;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 18%, rgba(0, 0, 0, 0) 58%);
}

.gallery-card > span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.gallery-card > span b {
  margin-left: 18px;
  font-size: 0.82em;
  font-weight: 400;
}

.space-controls {
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.3s ease;
}

.space-controls.disabled {
  opacity: 0.35;
  pointer-events: none;
}


.space-arrow {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.space-progress {
  width: min(46vw, 520px);
  height: 3px;
  background: #e7e7e7;
  overflow: hidden;
}

.space-progress-fill {
  display: block;
  width: 28%;
  height: 100%;
  background: #050505;
  transform-origin: left center;
}

/* --- Cohost --- */
.cohost {
  background: var(--black);
  color: var(--white);
}

.cohost {
  padding: 82px 0 96px;
  overflow: hidden;
}

.hosts-wrap {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hosts-head {
  text-align: center;
}

.hosts-kicker {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.hosts-kicker::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--orange);
}

.hosts-title {
  margin-top: 24px;
  color: var(--white);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hosts-title span {
  color: var(--orange);
}

.hosts-copy {
  max-width: 860px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  text-align: center;
}

.hosts-copy br {
  display: none;
}

.hosts-rule {
  width: min(880px, 100%);
  height: 3px;
  margin: 58px auto 0;
  background: #222;
}

.hosts-rule span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.hosts-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.host-card {
  min-height: 330px;
  padding: 38px 34px 34px;
  border-radius: 14px;
  background: #171717;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.hosts-scroll-locked .host-card,
.hosts-scroll-locked .hosts-rule span,
.hosts-scroll-locked .hosts-cta {
  will-change: transform, opacity;
}

.host-number {
  color: var(--orange);
  font-size: 86px;
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -0.07em;
  background: linear-gradient(180deg, var(--orange) 18%, rgba(255, 51, 1, 0.1) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.host-card h3 {
  margin-top: 26px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.host-card h4 {
  margin-top: 12px;
  color: var(--orange);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.host-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.hosts-cta {
  margin-top: 54px;
  text-align: center;
}

.hosts-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.hosts-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.host-btn {
  min-width: 220px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.host-btn-orange {
  background: var(--orange);
  color: var(--white);
}

.host-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: var(--white);
}

body.host-modal-open {
  overflow: hidden;
}

.host-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.host-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.host-modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 1100px);
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.32) transparent;
}

.host-modal-card {
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
  padding: 58px;
}

.host-modal-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 48px);
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #050505;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  margin: 0 12px -52px auto;
}

.host-modal-kicker {
  display: inline-block;
  color: #050505;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}

.host-modal-card h2 {
  margin-top: 18px;
  color: #050505;
  font-size: 46px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.host-modal-card h2 span {
  color: var(--orange);
}

.host-modal-lead {
  max-width: 520px;
  margin-top: 16px;
  color: #6d6d6d;
  font-size: 18px;
  line-height: 1.34;
  font-weight: 300;
}

.host-form {
  margin-top: 46px;
}

.host-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
}

.host-field,
.host-availability {
  min-width: 0;
}

.host-field {
  display: grid;
  gap: 12px;
}

.host-field-wide {
  grid-column: 1 / -1;
}

.host-field > span,
.host-availability legend {
  color: #050505;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.host-field small {
  color: #8e8e8e;
  font-size: 0.92em;
  font-weight: 300;
}

.host-field input,
.host-field select,
.host-field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: var(--white);
  color: #050505;
  padding: 0 20px;
  outline: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
}

.host-field select {
  appearance: auto;
  cursor: pointer;
}

.host-field textarea {
  min-height: 138px;
  padding-top: 18px;
  resize: vertical;
}

.host-field input::placeholder,
.host-field textarea::placeholder {
  color: #b6b6b6;
}

.host-field input:focus,
.host-field select:focus,
.host-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 51, 1, 0.12);
}

.host-field.is-invalid input,
.host-field.is-invalid select,
.host-field.is-invalid textarea,
.host-availability.is-invalid label span {
  border-color: var(--orange);
}

.host-availability {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.host-availability legend {
  margin-bottom: 0;
}

.host-availability label {
  cursor: pointer;
}

.host-availability input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.host-availability label span {
  min-height: 52px;
  border-radius: 7px;
  background: #e8e8e8;
  color: #050505;
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.host-availability input:checked + span {
  background: #050505;
  color: var(--white);
}

.host-upload input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.host-upload-box {
  min-height: 220px;
  border: 1px dashed rgba(255, 51, 1, 0.42);
  border-radius: 8px;
  background: rgba(255, 51, 1, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 24px;
}

.host-upload-box strong {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #050505;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.host-upload-box b {
  margin-top: 18px;
  color: #050505;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 500;
}

.host-upload-box small {
  margin-top: 10px;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 300;
}

.host-upload-box em {
  margin-top: 12px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 500;
}

.host-submit {
  width: min(360px, 100%);
  min-height: 58px;
  margin-top: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 30px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.host-submit-orange {
  background: var(--orange);
}

.host-form-note {
  max-width: 390px;
  margin-top: 28px;
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 300;
}

@media (max-width: 980px) {
  .host-modal {
    align-items: start;
    padding: 60px 24px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .host-modal-panel {
    width: min(100%, 520px);
    max-height: none;
    overflow: visible;
  }

  .host-modal-card {
    padding: 34px;
  }

  .host-modal-card h2 {
    font-size: 30px;
  }

  .host-modal-lead {
    font-size: 14px;
  }

  .host-form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .host-modal {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 72px 24px 44px;
  }

  .host-modal-backdrop {
    position: fixed;
  }

  .host-modal-panel {
    width: 100%;
  }

  .host-modal-card {
    border-radius: 6px;
    padding: 32px 28px 30px;
  }

  .host-modal-close {
    top: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
    margin-right: 8px;
  }

  .host-modal-kicker {
    font-size: 14px;
    padding-bottom: 6px;
  }

  .host-modal-card h2 {
    margin-top: 16px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .host-modal-lead {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.36;
  }

  .host-form {
    margin-top: 34px;
  }

  .host-field > span,
  .host-availability legend {
    font-size: 14px;
  }

  .host-field input,
  .host-field select,
  .host-field textarea {
    min-height: 50px;
    border-radius: 7px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .host-field textarea {
    min-height: 128px;
    padding-top: 14px;
  }

  .host-availability label span {
    min-height: 48px;
    font-size: 13px;
  }

  .host-upload-box {
    min-height: 176px;
  }

  .host-upload-box b {
    font-size: 14px;
  }

  .host-upload-box small {
    font-size: 12px;
  }

  .host-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 34px;
    font-size: 13px;
  }

  .host-form-note {
    margin-top: 24px;
    font-size: 13px;
  }
}

.booking {
  background: var(--black);
  color: var(--white);
}

/* --- Booking --- */
.booking {
  padding: 92px 0 118px;
}

.booking-wrap {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

.booking-kicker {
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.booking-title {
  margin-top: 30px;
  color: var(--white);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.booking-title span {
  color: var(--orange);
}

.booking-lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 100;
}

.booking-benefits {
  list-style: none;
  margin-top: 44px;
  display: grid;
  gap: 26px;
}

.booking-benefits li {
  display: flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: -0.035em;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
  cursor: pointer;
}

.booking-benefits li:hover {
  transform: translateX(8px);
  color: var(--white);
}

.booking-benefits span {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.booking-benefits li:hover span {
  transform: scale(1.1) rotate(15deg);
  background-color: #ffeae6;
}

.booking-benefits span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(93%) saturate(7463%) hue-rotate(9deg) brightness(101%) contrast(106%);
  display: block;
}

.booking-call-card {
  margin-top: 48px;
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.booking-call-card:hover {
  border-color: rgba(255, 51, 1, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(255, 51, 1, 0.08);
}

.booking-call-card p {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.booking-call-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  transition: color 0.3s ease;
  transform-origin: center center;
}

.booking-call-card:hover a {
  color: #ff502b;
}

.booking-call-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 400;
}

.booking-panel {
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  padding: 24px;
  box-shadow: none;
  max-width: 6000px;
  margin-inline: auto;
  width: 100%;
}

.booking-tabs {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 20px;
}

.booking-tab {
  border: 0;
  border-radius: 999px;
  background: #3b3b3b;
  color: rgba(255, 255, 255, 0.45);
  min-height: 42px;
  flex: 1;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.booking-tab.active {
  background: var(--orange);
  color: var(--white);
}

.booking-panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 12px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.package-card {
  min-height: 98px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #151515;
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  cursor: pointer;
}

.package-card.active {
  border-color: var(--orange);
  background: #030303;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.package-card strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.package-card span {
  margin-top: 6px;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.package-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
}

.booking-continue {
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.booking-continue:disabled,
.booking-pay:disabled,
.booking-secondary:disabled,
.booking-whatsapp.is-disabled {
  opacity: 0.54;
  cursor: not-allowed;
}

.booking-summary-strip {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-summary-strip span {
  min-height: 32px;
  border-radius: 999px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.booking-summary-strip span:first-child {
  border-color: rgba(255, 51, 1, 0.68);
  color: var(--white);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-tab {
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.booking-tab.is-complete {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 51, 1, 0.55);
}

.booking-tab:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.package-card {
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 51, 1, 0.5);
}

.package-card.active::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.datetime-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.datetime-grid .calendar-box {
  display: block;
}

.datetime-grid .slot-box {
  display: none;
}

.datetime-grid.show-slots .calendar-box {
  display: none;
}

.datetime-grid.show-slots .slot-box {
  display: block;
}

.back-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 0;
  transition: opacity 0.2s ease;
}

.back-calendar-btn:hover {
  opacity: 0.82;
}

.back-calendar-btn span {
  font-size: 18px;
}

.availability-legend {
  margin: -8px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.availability-legend span {
  min-height: 32px;
  border-radius: 999px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot-available {
  background: #2ecc71;
}

.legend-dot-partial {
  background: #f5a623;
}

.legend-dot-booked {
  background: var(--orange);
}

.calendar-box,
.slot-box {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
}

.calendar-head {
  min-height: 44px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.calendar-head strong {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.calendar-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #050505;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.calendar-nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-top: 18px;
  gap: 6px;
}

.calendar-weekdays span {
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-grid {
  margin-top: 10px;
  gap: 6px;
}

.calendar-day {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #0a0a0a;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}

.calendar-day::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.calendar-day.is-muted {
  color: rgba(255, 255, 255, 0.26);
}

.calendar-day.is-available::after {
  background: #2ecc71;
  opacity: 1;
}

.calendar-day.is-partial {
  border-color: rgba(245, 166, 35, 0.72);
}

.calendar-day.is-partial::after {
  background: #f5a623;
  opacity: 1;
}

.calendar-day.is-full {
  border-color: rgba(255, 51, 1, 0.5);
  background:
    linear-gradient(135deg, transparent 44%, rgba(255, 51, 1, 0.38) 45%, rgba(255, 51, 1, 0.38) 55%, transparent 56%),
    rgba(255, 255, 255, 0.04);
}

.calendar-day.is-full::after {
  background: var(--orange);
  opacity: 1;
}

.calendar-day.is-today {
  border-color: rgba(255, 51, 1, 0.65);
}

.calendar-day.is-selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.calendar-day:disabled {
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
}

.calendar-day.is-full:disabled {
  color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, transparent 44%, rgba(255, 51, 1, 0.38) 45%, rgba(255, 51, 1, 0.38) 55%, transparent 56%),
    rgba(255, 51, 1, 0.08);
}

.slot-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.slot-head span,
.duration-field span,
.booking-field span,
.payment-summary span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.slot-head strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.duration-field {
  display: grid;
  gap: 8px;
}

.duration-field select,
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #050505;
  color: var(--white);
  padding: 10px 12px;
  outline: 0;
  min-height: 44px;
  font-size: 14px;
}

select.is-customized-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.booking-panel .custom-select {
  position: relative;
  width: 100%;
  z-index: 8;
}

.booking-panel .custom-select.is-open {
  z-index: 90;
}

.booking-panel .custom-select-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #050505;
  color: var(--white);
  padding: 0 44px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.booking-panel .custom-select-button:focus-visible,
.booking-panel .custom-select.is-open .custom-select-button {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 51, 1, 0.18);
  outline: 0;
}

.booking-panel .custom-select-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.booking-panel .custom-select.is-invalid .custom-select-button {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 51, 1, 0.18);
}

.booking-panel .custom-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-panel .custom-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-68%) rotate(45deg);
  transition: transform 0.18s ease;
}

.booking-panel .custom-select.is-open .custom-select-arrow {
  transform: translateY(-28%) rotate(225deg);
}

.booking-panel .custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #101010;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.48);
  padding: 7px;
  display: none;
}

.booking-panel .custom-select.is-open .custom-select-menu {
  display: grid;
  gap: 3px;
}

.booking-panel .custom-select-option {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  text-align: left;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.booking-panel .custom-select-option:hover,
.booking-panel .custom-select-option:focus-visible {
  background: rgba(255, 51, 1, 0.14);
  color: var(--white);
  outline: 0;
}

.booking-panel .custom-select-option.is-selected {
  background: var(--orange);
  color: var(--white);
}

.booking-panel .custom-select-option:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

/* --- Host Form Custom Selects (Light Theme) --- */
.host-form .custom-select {
  position: relative;
  width: 100%;
  z-index: 8;
}

.host-form .custom-select.is-open {
  z-index: 90;
}

.host-form .custom-select-button {
  width: 100%;
  min-height: 58px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: var(--white);
  color: #050505;
  padding: 0 44px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.host-form .custom-select-button:focus-visible,
.host-form .custom-select.is-open .custom-select-button {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 51, 1, 0.12);
  outline: 0;
}

.host-form .custom-select-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.host-form .custom-select.is-invalid .custom-select-button,
.host-field.is-invalid .custom-select-button {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 51, 1, 0.12);
}

.host-form .custom-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.host-form .custom-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: translateY(-68%) rotate(45deg);
  transition: transform 0.18s ease;
}

.host-form .custom-select.is-open .custom-select-arrow {
  border-right-color: var(--orange);
  border-bottom-color: var(--orange);
  transform: translateY(-28%) rotate(225deg);
}

.host-form .custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 6px;
  display: none;
}

.host-form .custom-select.is-open .custom-select-menu {
  display: grid;
  gap: 3px;
}

.host-form .custom-select-option {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #050505;
  padding: 0 14px;
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.host-form .custom-select-option:hover,
.host-form .custom-select-option:focus-visible {
  background: rgba(255, 51, 1, 0.08);
  color: var(--orange);
  outline: 0;
}

.host-form .custom-select-option.is-selected {
  background: var(--orange);
  color: var(--white);
}

.host-form .custom-select-option:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.booking-field textarea {
  min-height: 116px;
  resize: vertical;
}

.duration-field select:focus,
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 51, 1, 0.18);
}

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

.time-slot {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #050505;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.time-slot span {
  display: block;
}

.time-slot small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.time-slot.is-selected {
  background: var(--orange);
  border-color: var(--orange);
}

.time-slot.is-booked {
  border-color: rgba(255, 51, 1, 0.45);
  background:
    linear-gradient(135deg, transparent 46%, rgba(255, 51, 1, 0.38) 47%, rgba(255, 51, 1, 0.38) 53%, transparent 54%),
    rgba(255, 51, 1, 0.08);
}

.time-slot.is-held {
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.1);
}

.time-slot.is-past {
  background: rgba(255, 255, 255, 0.04);
}

.time-slot:disabled {
  color: rgba(255, 255, 255, 0.26);
  cursor: not-allowed;
}

.time-slot.is-booked:disabled,
.time-slot.is-held:disabled {
  color: rgba(255, 255, 255, 0.52);
}

.empty-slots {
  grid-column: 1 / -1;
  min-height: 120px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.58);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.booking-step-actions,
.payment-actions {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.booking-step-actions .booking-continue {
  margin-top: 0;
}

.booking-secondary,
.booking-whatsapp,
.booking-pay,
.booking-invoice {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}

.booking-invoice[hidden] {
  display: none;
}

.booking-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #151515;
  color: var(--white);
}

.booking-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--white);
  color: #050505;
}

.booking-pay {
  border: 0;
  background: var(--orange);
  color: var(--white);
}

.booking-invoice {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--white);
  color: #050505;
  text-decoration: none;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.booking-field {
  display: grid;
  gap: 8px;
}

.booking-field-wide {
  grid-column: 1 / -1;
}

.payment-summary {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.payment-summary > div {
  min-height: 80px;
  border-radius: 12px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.payment-summary strong {
  margin-top: 6px;
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.booking-check {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.booking-check input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.booking-status {
  display: none;
  margin-top: 18px;
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.booking-status.show {
  display: block;
}

.booking-status.success {
  background: rgba(39, 174, 96, 0.16);
  color: #9ff0bf;
}

.booking-status.error {
  background: rgba(255, 51, 1, 0.14);
  color: #ffb29f;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--white);
  color: #050505;
  padding: 72px 0 92px;
  overflow: hidden;
}

.testimonials-head {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.testimonials-kicker {
  color: #050505;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.testimonials-kicker::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--orange);
}

.testimonials-title {
  margin-top: 24px;
  color: #050505;
  font-size: 40px;
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: 0;
}

.testimonials-title span {
  color: var(--orange);
}

.testimonial-rail-wrap {
  margin-top: 54px;
  padding-left: max(16px, calc((100vw - 1710px) / 2));
  overflow: hidden;
}

.testimonial-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-right: 16px;
}

.testimonial-rail::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(86vw, 620px);
  min-height: 360px;
  border-radius: 22px;
  background: linear-gradient(90deg, #eeeeee 0%, #f8f8f8 52%, #eeeeee 100%);
  padding: 42px 34px 38px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::after {
  content: "\201D";
  position: absolute;
  right: 24px;
  bottom: -94px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 230px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.testimonial-card p {
  max-width: 650px;
  color: #050505;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.testimonial-client {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.testimonial-client img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-client div {
  min-width: 0;
}

.testimonial-client strong {
  display: block;
  color: #050505;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.testimonial-client span {
  display: block;
  margin-top: 9px;
  color: #838383;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

.testimonial-controls {
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.testimonial-arrow {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-progress {
  width: min(46vw, 520px);
  height: 3px;
  background: #e7e7e7;
  overflow: hidden;
}

.testimonial-progress-fill {
  display: block;
  width: 28%;
  height: 100%;
  background: #050505;
  transform-origin: left center;
}

/* --- FAQ --- */
.faq {
  background: var(--white);
  padding: 82px 0 46px;
}

.faq-wrap {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: start;
}

.faq-copy {
  max-width: 620px;
}

.faq-kicker {
  display: inline-block;
  color: #050505;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.services-kicker::after,
.hq-kicker::after,
.pricing-kicker::after,
.booking-kicker::after,
.faq-kicker::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 12px;
  background: var(--orange);
}

.center .pricing-kicker::after {
  margin-inline: auto;
}

.faq-title {
  margin-top: 28px;
  color: #050505;
  font-size: 24px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.faq-title span {
  color: var(--orange);
}

.faq-lead {
  max-width: 470px;
  margin-top: 24px;
  color: #333;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.faq-cta {
  width: fit-content;
  min-width: 240px;
  min-height: 62px;
  margin-top: 34px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.faq-cta span {
  font-size: 23px;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid #dadada;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(255, 51, 1, 0.62);
  grid-template-rows: auto 1fr;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 24px;
  color: #050505;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: left;
}

.faq-q span {
  color: #050505;
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
  transition: color 0.3s ease;
}

.faq-a {
  min-height: 0;
  overflow: hidden;
  color: #666;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 300;
  padding: 0 24px;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-a {
  padding: 0 24px 28px;
  opacity: 1;
}

.faq-item.active .faq-q span {
  color: var(--orange);
}

/* --- FAQ Banner --- */
.faq-banner {
  width: 100%;
  padding: 0;
  margin: 50px 0;
  background: var(--white);
  overflow: hidden;
}

.faq-banner-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.faq-banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .faq-banner {
    margin: 85px 0;
  }
  
  .faq-banner-container {
    aspect-ratio: 21 / 9;
  }
}

/* --- Location --- */
.location {
  background: var(--white);
  padding: 46px 0 88px;
}

.location-wrap {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.location-head {
  text-align: center;
}

.location-kicker {
  color: #050505;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.location-kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--orange);
}

.location-title {
  margin-top: 24px;
  color: #050505;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.location-title span {
  color: var(--orange);
}

.location-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.location-map {
  aspect-ratio: 1 / 1;
  min-height: 390px;
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #f1f3f4;
}

.map-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 82%, rgba(255, 236, 188, 0.62) 0 11%, transparent 12%),
    radial-gradient(circle at 26% 78%, rgba(231, 236, 240, 0.72) 0 12%, transparent 13%),
    linear-gradient(135deg, #f8f5f0 0%, #eef4f8 52%, #faf8f5 100%);
}

.map-canvas::before,
.map-canvas::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    repeating-linear-gradient(0deg, transparent 0 52px, rgba(183, 200, 215, 0.58) 53px 59px, transparent 60px 116px),
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(183, 200, 215, 0.58) 65px 71px, transparent 72px 134px);
  opacity: 0.72;
}

.map-canvas::after {
  transform: rotate(-10deg) scale(1.08);
  opacity: 0.48;
}

.map-road {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  background: #cfdbe8;
}

.road-main {
  left: 58%;
  top: -12%;
  width: 54px;
  height: 126%;
  background: #acbdd1;
  transform: rotate(6deg);
}

.road-main-shadow {
  left: 60.5%;
  top: -12%;
  width: 4px;
  height: 126%;
  background: rgba(78, 95, 112, 0.42);
  transform: rotate(6deg);
}

.road-a {
  left: -6%;
  top: 28%;
  width: 62%;
  height: 9px;
  transform: rotate(7deg);
}

.road-b {
  left: 48%;
  top: 30%;
  width: 58%;
  height: 9px;
  transform: rotate(-8deg);
}

.road-c {
  left: 2%;
  top: 48%;
  width: 72%;
  height: 9px;
  transform: rotate(10deg);
}

.road-d {
  left: 66%;
  top: 54%;
  width: 52%;
  height: 8px;
  transform: rotate(12deg);
}

.road-e {
  left: 14%;
  top: 74%;
  width: 68%;
  height: 9px;
  transform: rotate(-4deg);
}

.road-f {
  left: 34%;
  top: 0;
  width: 9px;
  height: 92%;
  transform: rotate(8deg);
}

.road-g {
  left: 76%;
  top: 10%;
  width: 8px;
  height: 95%;
  transform: rotate(-12deg);
}

.map-label,
.map-badge {
  position: absolute;
  z-index: 3;
  color: #526274;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.label-one {
  left: 54%;
  top: 4%;
  text-align: right;
}

.label-two {
  left: 53%;
  top: 20%;
  transform: rotate(7deg);
}

.label-three {
  left: 23%;
  top: 45%;
  transform: rotate(8deg);
}

.label-four {
  left: 62%;
  top: 38%;
  color: #323232;
}

.label-five {
  left: 63%;
  top: 68%;
  transform: rotate(7deg);
}

.label-six {
  left: 58%;
  bottom: 8%;
  color: #7a48d8;
}

.map-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #20a46a;
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95);
}

.badge-shop {
  left: 61%;
  top: 8%;
}

.badge-place {
  left: 74%;
  bottom: 12%;
  background: #f15eb8;
}

.location-pin {
  position: absolute;
  left: 48%;
  top: 45%;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.location-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.location-info {
  display: grid;
  gap: 30px;
}

.location-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.location-detail:hover {
  transform: translateX(8px);
}

.location-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.location-detail:hover .location-icon {
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 0 20px rgba(255, 51, 1, 0.5);
  background-color: #e62e00;
}

.location-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.location-detail p,
.location-social p {
  color: #333;
  font-size: 19px;
  line-height: 1;
  font-weight: 300;
}

.location-detail strong {
  display: block;
  margin-top: 10px;
  color: #050505;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}

.location-detail strong a {
  transition: color 0.3s ease;
}

.location-detail:hover strong,
.location-detail:hover strong a {
  color: var(--orange);
}

.location-social {
  margin-top: 10px;
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #292929;
  color: var(--white);
  display: inline-grid;
  place-items: center;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a svg {
  display: block;
  fill: currentColor;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-4px);
}

.social-links a[aria-label="Facebook"]:hover {
  background: #1877F2;
}

.social-links a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[aria-label="X"]:hover {
  background: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
}

.social-links a[aria-label="YouTube"]:hover {
  background: #FF0000;
}

.social-links a:hover svg {
  transform: scale(1.1);
}

/* --- SEO Footer Band --- */
.studio-seo {
  background: #111;
  color: var(--white);
  padding: 78px 0;
  overflow: hidden;
}

.studio-seo-wrap {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.studio-seo-heading {
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: center;
}

.seo-watermark {
  position: absolute;
  left: -28px;
  top: 50%;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  transform: translateY(-50%);
}

.seo-watermark::before {
  content: "";
  position: absolute;
  left: -48px;
  bottom: -54px;
  width: 128px;
  height: 98px;
  border-left: 42px solid rgba(255, 255, 255, 0.025);
  border-bottom: 42px solid rgba(255, 255, 255, 0.025);
  border-radius: 0 0 0 34px;
  transform: rotate(14deg);
}

.seo-watermark::after {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
}

.studio-seo h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.studio-seo h2 span {
  color: var(--orange);
}

.studio-seo-copy {
  display: grid;
  gap: 24px;
}

.studio-seo-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.studio-seo-copy strong {
  color: var(--white);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: #000;
  color: var(--white);
}

.footer-wrap {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.footer-brand {
  max-width: 760px;
}

.footer-logo {
  display: inline-block;
  width: 220px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  margin-top: 24px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.footer-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-btn {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer-btn-orange {
  background: var(--orange);
}

.footer-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.footer-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials {
  margin-top: 36px;
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-socials a[aria-label="Facebook"]:hover {
  background: #1877F2;
}

.footer-socials a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-socials a[aria-label="X"]:hover {
  background: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
}

.footer-socials a[aria-label="YouTube"]:hover {
  background: #FF0000;
}

.footer-links {
  display: grid;
  gap: 20px;
  align-content: start;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.footer-contact h3 span {
  display: inline-block;
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.footer-contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}

.footer-contact-item strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.footer-bottom {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 86px;
  padding: 22px max(16px, calc((100vw - 1500px) / 2));
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(120px);
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 400;
  z-index: 300;
  transition: 0.3s;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================
   --- Progressive Tablet Enhancements ---
   ========================================== */
@media (min-width: 621px) {
  .container {
    width: min(var(--max), calc(100% - 64px));
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-visual {
    height: auto;
    margin-top: 40px;
    justify-content: center;
  }

  .hero-banner-wrapper {
    margin: 0 auto;
    max-width: 580px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 14px;
    margin-bottom: 48px;
  }

  .hero-actions .btn {
    width: auto;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    max-width: 100%;
  }

  .stat {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding: 4px 0 4px 20px;
  }

  .stat:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }

  .badge-creator-packages {
    display: block;
    position: absolute;
    top: 8%;
    left: -4%;
    z-index: 5;
  }

  .badge-next-available {
    display: flex;
    position: absolute;
    top: 27%;
    right: 2%;
    width: 120px;
    height: 120px;
    z-index: 5;
    justify-content: center;
    align-items: center;
  }

  /* Services */
  .services {
    padding: 72px 0 150px;
  }

  .services-wrap {
    width: min(var(--max), calc(100% - 64px));
  }

  .services-kicker {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .services-title {
    font-size: 50px;
  }

  .services-copy {
    font-size: 18px;
  }

  .service-stack {
    margin-top: 56px;
  }

  .service-card {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .service-card:not(:first-child) {
    margin-top: 76px;
  }

  .service-media {
    width: min(620px, calc(100% - 138px));
  }

  .service-info {
    position: absolute;
    top: 38%;
    left: 0;
    width: min(480px, 60%);
    margin-top: 0;
  }

  .service-number {
    font-size: 65px;
    margin-bottom: 18px;
  }

  .service-info h3 {
    font-size: 46px;
    text-shadow: 0 2px 0 #000, 0 12px 24px rgba(0, 0, 0, 0.72);
  }

  .service-card p {
    width: min(620px, calc(100% - 138px));
    margin: 30px 0 0 auto;
    font-size: 20px;
  }

  /* HQ */
  .hq {
    padding: 96px 0 110px;
  }

  .hq-grid {
    width: min(var(--max), calc(100% - 64px));
    gap: 54px;
  }

  .hq-kicker {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .hq-title {
    font-size: clamp(48px, 8vw, 66px);
  }

  .hq-copy {
    font-size: 20px;
    margin-top: 25px;
  }

  .hq-img {
    margin-top: 54px;
    border-radius: 28px;
  }

  .hq-features {
    padding-top: 0;
  }

  .hq-feature,
  .hq-feature.active {
    padding: 28px 25px;
    border-radius: 10px;
  }

  .hq-feature-num {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .hq-feature h3 {
    font-size: 25px;
    line-height: 1.15;
    
  }

  .hq-feature.active h3 {
    font-size: 25px;
    line-height: 1.16;
    margin-top: 0;
  }

  .hq-feature p {
    font-size: 20px;
  }

  .hq-feature.active p {
    margin-top: 21px;
    margin-bottom: 0;
  }

  .hq-feature-arrow {
    font-size: 21px;
  }

  .hq-feature.active .hq-feature-arrow {
    margin-top: 18px;
  }

  /* Pricing */
  .pricing {
    padding: 90px 0 60px;
  }

  .pricing-wrap {
    width: min(var(--max), calc(100% - 64px));
  }

  .pricing-kicker {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .pricing-title {
    font-size: 50px;
  }

  .pricing-copy {
    font-size: 20px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 72px;
  }

  .price-card {
    border-radius: 36px;
    padding: 16px 16px 70px;
    min-height: auto;
  }

  .price-card.popular {
    min-height: auto;
    transform: none;
  }

  .price-card-head {
    min-height: 340px;
    padding: 36px;
    border-radius: 28px;
  }

  .price-card.popular .price-card-head {
    min-height: 340px;
    padding: 36px;
    border-radius: 28px;
  }

  .price-card h3 {
    font-size: 33px;
  }

  .price-card-head p {
    font-size: 20px;
  }

  .price {
    font-size: clamp(56px, 4.6vw, 76px);
  }

  .price span {
    font-size: 22px;
    display: inline-block;
    margin-left: 0;
  }

  .price-features {
    padding: 0 36px;
    gap: 22px;
    margin: 54px 0 46px;
  }

  .price-card.popular .price-features {
    margin-top: 53px;
    gap: 28px;
  }

  .price-features li {
    font-size: 23px;
  }

  .price-btn {
    width: 330px;
    max-width: calc(100% - 72px);
    min-height: 80px;
    margin-left: 36px;
    padding: 0 24px;
    font-size: 18px;
    white-space: nowrap;
  }

  .pricing-addons {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
    padding: 34px;
    border-radius: 28px;
  }

  .addon-intro h3 {
    font-size: 28px;
  }

  .addon-intro p {
    font-size: 20px;
  }

  .addon-item {
    border-left: 1px solid rgba(0, 0, 0, 0.22);
    border-top: 0;
    padding-top: 0;
    min-height: 72px;
  }

  .addon-item span {
    font-size: 20px;
  }

  .addon-item strong {
    font-size: 24px;
  }

  /* Space */
  .space {
    padding: 82px 0 92px;
  }

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

  /* Cohost */
  .cohost {
    padding: 92px 0 95px;
  }

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

  /* Booking */
  .booking {
    padding-bottom: 98px;
  }

  .slot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .slot button {
    width: auto;
  }

  /* Testimonials */
  .testimonials {
    padding: 82px 0 118px;
  }

  .testimonials-head {
    width: min(1220px, calc(100% - 64px));
  }

  .testimonials-kicker {
    font-size: 20px;
  }

  .testimonials-title {
    font-size: 56px;
  }

  .testimonial-rail-wrap {
    margin-top: 60px;
    padding-left: max(32px, calc((100vw - 1710px) / 2));
  }

  .testimonial-rail {
    gap: 26px;
    padding-right: 32px;
  }

  .testimonial-card {
    flex-basis: 640px;
    min-height: 370px;
    border-radius: 26px;
    padding: 54px 50px 44px;
  }

  .testimonial-card p {
    font-size: 24px;
    line-height: 1.38;
  }

  .testimonial-client img {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .testimonial-client strong {
    font-size: 27px;
  }

  .testimonial-client span {
    font-size: 19px;
  }

  .testimonial-controls {
    margin-top: 76px;
    gap: 36px;
  }

  .testimonial-arrow {
    width: 66px;
    height: 66px;
    font-size: 32px;
  }

  .testimonial-progress {
    width: min(48vw, 650px);
  }

  /* FAQ */
  .faq {
    padding: 112px 0 58px;
  }

  .faq-wrap {
    width: min(1500px, calc(100% - 64px));
    gap: 56px;
  }

  .faq-kicker {
    font-size: 22px;
  }

  .faq-title {
    font-size: 58px;
  }

  .faq-lead {
    font-size: 21px;
  }

  .faq-q {
    padding: 28px 32px;
    font-size: 24px;
  }

  .faq-a {
    padding: 0 32px;
    font-size: 21px;
  }

  .faq-item.active .faq-a {
    padding: 0 32px 34px;
  }

  /* Location */
  .location {
    padding: 58px 0 118px;
  }

  .location-wrap {
    width: min(1500px, calc(100% - 64px));
  }

  .location-kicker {
    font-size: 21px;
  }

  .location-title {
    font-size: 58px;
  }

  .location-grid {
    margin-top: 72px;
  }

  .location-map {
    border-radius: 24px;
  }

  .location-info {
    gap: 36px;
  }

  .location-detail {
    grid-template-columns: 64px 1fr;
    gap: 22px;
  }

  .location-icon {
    width: 64px;
    height: 64px;
  }

  .location-icon img {
    width: 26px;
    height: 26px;
  }

  .location-detail p,
  .location-social p {
    font-size: 22px;
  }

  .location-detail strong {
    font-size: 25px;
  }

  .social-links a {
    width: 60px;
    height: 60px;
  }

  /* Footer */
  .studio-seo,
  .footer-wrap {
    padding-block: 96px;
  }

  .studio-seo-wrap,
  .footer-wrap {
    width: min(1500px, calc(100% - 64px));
  }

  .studio-seo h2 {
    font-size: 54px;
  }

  .studio-seo-copy p {
    font-size: 18px;
  }

  .footer-logo {
    width: 250px;
  }

  .footer-brand p {
    font-size: 17px;
  }

  .footer-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-btn {
    min-width: auto;
    min-height: 56px;
    padding: 0 32px;
    font-size: 17px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 56px;
  }

  .footer-contact {
    grid-template-columns: max-content 1fr;
  }
}

/* ==========================================
   --- Progressive Desktop Enhancements ---
   ========================================== */
@media (min-width: 981px) {
  .container {
    width: min(var(--max), calc(100% - 120px));
  }

  /* Header */
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transform: none;
    gap: 28px;
    transition: none;
    z-index: auto;
  }

  .nav-links > a {
    font-size: 20px;
    font-weight: 300;
    padding: 0;
    border-bottom: none;
    width: auto;
    display: inline-block;
    transition: color 0.25s ease;
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links > a:hover {
    padding-left: 0;
  }

  .mobile-nav-footer {
    display: none !important;
  }

  .header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .menu-btn {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 1000px;
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.8vw, 84px);
    margin-bottom: 24px;
  }

  .hero-copy {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-subprice {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 650px;
    gap: 0;
  }

  .stat {
    flex: 1;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding: 4px 24px;
  }

  .stat:first-child {
    border-left: none;
    padding-left: 0;
  }

  .stat:last-child {
    padding-right: 0;
  }

  .stat strong {
    font-size: 52px;
  }

  .stat span {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
  }

  .hero-visual {
    margin-top: 0;
    justify-content: flex-end;
  }

  .hero-banner-wrapper {
    margin: 0;
    max-width: 680px;
  }

  .badge-creator-packages {
    top: 5%;
    left: -12%;
  }

  .badge-next-available {
    top: 24%;
    right: 4%;
    width: 128px;
    height: 128px;
  }

  /* Services */
  .services-wrap {
    width: min(1580px, calc(100% - 180px));
  }

  .services-head {
    max-width: 710px;
  }

  .services-title {
    font-size: 58px;
    line-height: 1.06;
  }

  .service-stack {
    margin-top: -28px;
  }

  .service-card {
    width: min(760px, 100%);
    min-height: 655px;
  }

  .service-card:not(:first-child) {
    margin-top: -92px;
  }

  .service-card.align-right {
    margin-left: auto;
  }

  .service-card.align-left {
    margin-left: 0;
  }

  .service-media {
    width: min(552px, calc(100% - 170px));
  }

  .service-info {
    top: 224px;
    width: 500px;
  }

  .service-info h3 {
    font-size: 54px;
  }

  .service-card p {
    width: min(552px, calc(100% - 170px));
  }

  /* HQ */
  .hq {
    padding: 165px 0 180px;
  }

  .hq-grid {
    width: min(1650px, calc(100% - 240px));
    grid-template-columns: minmax(0, 0.92fr) minmax(620px, 1.08fr);
    gap: 122px;
  }

  .hq-title {
    font-size: clamp(50px, 4vw, 62px);
  }

  .hq-copy {
    font-size: 18px;
  }

  .hq-features {
    padding-top: 74px;
  }

  .hq-feature {
    min-height: 129px;
    grid-template-columns: 56px 1fr 28px;
    gap: 28px;
  }

  .hq-feature.active {
    min-height: auto;
  }

  /* Pricing */
  .pricing {
    padding: 125px 0 80px;
  }

  .pricing-wrap {
    width: min(1710px, calc(100% - 280px));
  }

  .pricing-title {
    font-size: clamp(40px, 4vw, 60px);
  }

  .pricing-copy {
    font-size: 22px;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 118px;
    gap: 24px;
  }

  .price-card {
    min-width: 0;
    min-height: 908px;
  }

  .price-card.popular {
    min-height: 958px;
    margin-top: -50px;
    transform: none;
    z-index: 2;
  }

  .price-card-head {
    min-height: 350px;
    padding: 54px 55px 44px;
  }

  .price-card.popular .price-card-head {
    min-height: 400px;
    margin-top: 0;
  }

  .price-features {
    padding: 0 55px;
  }

  .price-btn {
    margin-left: 55px;
  }

  .pricing-addons {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
    padding: 38px 67px;
  }

  .addon-item {
    padding-left: 86px;
  }

  /* Space */
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Cohost */
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Booking */
  .booking-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }

  /* Testimonials */
  .testimonials-head {
    width: min(1320px, calc(100% - 120px));
  }

  .testimonials-kicker {
    font-size: 22px;
  }

  .testimonials-title {
    margin-top: 26px;
    font-size: 64px;
    line-height: 1.12;
  }

  .testimonial-rail-wrap {
    margin-top: 64px;
    padding-left: max(48px, calc((100vw - 1710px) / 2));
  }

  .testimonial-rail {
    gap: 32px;
    padding-right: 48px;
  }

  .testimonial-card {
    flex-basis: 660px;
    min-height: 370px;
    border-radius: 28px;
    padding: 58px 58px 48px;
  }

  .testimonial-card p {
    font-size: 26px;
    line-height: 1.36;
  }

  .testimonial-controls {
    margin-top: 96px;
    gap: 46px;
  }

  .testimonial-arrow {
    width: 72px;
    height: 72px;
  }

  .testimonial-progress {
    width: min(48vw, 760px);
  }

  /* FAQ */
  .faq {
    padding: 150px 0 70px;
  }

  .faq-wrap {
    width: min(1600px, calc(100% - 180px));
    grid-template-columns: minmax(420px, 0.86fr) minmax(620px, 1.14fr);
    gap: 96px;
  }

  .faq-copy {
    padding-top: 2px;
    position: sticky;
    top: 140px;
    align-self: start;
    height: fit-content;
  }

  .faq-title {
    font-size: clamp(30px, 3vw, 68px);
  }

  .faq-lead {
    max-width: 520px;
    font-size: 23px;
  }

  .faq-cta {
    min-width: 306px;
    min-height: 74px;
    margin-top: 42px;
    padding: 0 38px;
    font-size: 23px;
  }

  .faq-list {
    gap: 22px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-q {
    padding: 34px 48px;
    font-size: 20px;
  }

  .faq-a {
    padding: 0 48px;
    font-size: 18px;
  }

  .faq-item.active .faq-a {
    padding: 0 48px 42px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 84px;
  }

  .location {
    padding: 70px 0 150px;
  }

  .location-wrap {
    width: min(1500px, calc(100% - 160px));
  }

  .location-title {
    font-size: clamp(62px, 4.6vw, 74px);
    line-height: 1.08;
  }

  .location-map {
    min-height: 700px;
    border-radius: 26px;
  }

  .location-info {
    gap: 46px;
  }

  .location-detail {
    grid-template-columns: 68px 1fr;
    gap: 24px;
  }

  .location-icon {
    width: 68px;
    height: 68px;
  }

  .location-icon img {
    width: 28px;
    height: 28px;
  }

  .location-detail p,
  .location-social p {
    font-size: 24px;
  }

  .location-detail strong {
    font-size: 27px;
  }

  /* Footer */
  .studio-seo {
    padding: 100px 0;
  }

  .studio-seo-wrap {
    width: min(1600px, calc(100% - 300px));
    grid-template-columns: minmax(520px, 0.84fr) minmax(620px, 1.16fr);
    gap: 76px;
  }

  .studio-seo-heading {
    min-height: 380px;
  }

  .seo-watermark {
    left: -52px;
    width: 390px;
    height: 390px;
    border-width: 62px;
  }

  .seo-watermark::before {
    left: -74px;
    bottom: -74px;
    width: 188px;
    height: 134px;
    border-left-width: 62px;
    border-bottom-width: 62px;
  }

  .studio-seo h2 {
    font-size: clamp(56px, 3.8vw, 68px);
    line-height: 1.18;
  }

  .studio-seo-copy {
    gap: 26px;
  }

  .studio-seo-copy p {
    font-size: 18px;
    line-height: 1.38;
  }

  .footer-wrap {
    width: min(1600px, calc(100% - 300px));
    padding: 72px 0 54px;
  }

  .footer-grid {
    grid-template-columns: minmax(620px, 1.35fr) minmax(180px, 0.42fr) minmax(220px, 0.42fr);
    gap: 90px;
  }

  .footer-logo {
    width: 280px;
  }

  .footer-brand p {
    margin-top: 26px;
    font-size: 17px;
  }

  .footer-actions {
    margin-top: 34px;
    gap: 22px;
  }

  .footer-socials {
    margin-top: 42px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 28px;
  }

  .footer-links a {
    font-size: 20px;
  }

  .footer-contact {
    margin-top: 54px;
    grid-template-columns: max-content minmax(320px, 1fr) minmax(300px, 0.8fr) minmax(300px, 0.8fr);
    gap: 54px;
    align-items: center;
  }

  .footer-contact-item {
    grid-template-columns: 58px 1fr;
  }

  .footer-bottom {
    min-height: 78px;
    padding-inline: max(16px, calc((100vw - 1600px) / 2));
    font-size: 18px;
  }
}

@media (min-width: 981px) and (max-width: 1499px) {
  .hero {
    min-height: 818px;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 32px;
  }

  .hero-kicker {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(54px, 5.1vw, 74px);
    margin-bottom: 20px;
  }

  .hero-copy {
    max-width: 520px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-subprice {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-bottom: 34px;
  }

  .hero-actions .btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  .stats {
    max-width: 560px;
  }

  .stat {
    padding: 4px 18px;
  }

  .stat strong {
    font-size: 44px;
  }

  .stat span {
    font-size: 13px;
  }

  .hero-banner-wrapper {
    max-width: 600px;
  }

  .badge-bubble {
    min-width: 202px;
    padding: 20px 30px;
  }

  .badge-val {
    font-size: 30px;
  }

  .badge-next-available {
    top: 24%;
    right: 6%;
    width: 120px;
    height: 120px;
  }

  .hq {
    padding: 96px 0 112px;
  }

  .hq-grid {
    width: min(1344px, calc(100% - 96px));
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    gap: 64px;
  }

  .hq-kicker {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .hq-title {
    font-size: clamp(44px, 3.6vw, 52px);
    line-height: 1.02;
  }

  .hq-copy {
    max-width: 580px;
    font-size: 16px;
  }

  .hq-img {
    max-width: 460px;
    margin-top: 42px;
    border-radius: 20px;
  }

  .hq-features {
    gap: 16px;
    padding-top: 34px;
  }

  .hq-feature {
    min-height: 106px;
    grid-template-columns: 48px 1fr 22px;
    gap: 22px;
    padding: 24px 26px;
  }

  .hq-feature.active {
    min-height: 154px;
  }

  .hq-feature-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .hq-feature h3,
  .hq-feature.active h3 {
    font-size: 22px;
    line-height: 1.12;
  }

  .hq-feature p {
    font-size: 17px;
    line-height: 1.4;
  }

  .hq-feature.active p {
    margin-top: 17px;
  }

  .services-wrap {
    width: min(1280px, calc(100% - 96px));
  }

  .services-head {
    max-width: 568px;
  }

  .services-title {
    font-size: 46px;
  }

  .services-copy {
    font-size: 15px;
  }

  .service-stack {
    margin-top: -22px;
  }

  .service-card {
    width: min(570px, 100%);
    min-height: 495px;
  }

  .service-card:not(:first-child) {
    margin-top: -60px;
  }

  .service-media {
    width: min(416px, calc(100% - 128px));
  }

  .service-info {
    top: 168px;
    width: 374px;
  }

  .service-info h3 {
    font-size: 40px;
  }

  .service-card p {
    width: min(416px, calc(100% - 128px));
    margin-top: 36px;
    font-size: 16px;
  }



  .pricing-wrap {
    width: min(var(--max), calc(100% - 96px));
  }

  .pricing-title {
    font-size: clamp(42px, 4vw, 44px);
  }

  .pricing-copy {
    font-size: 18px;
  }

  .price-grid {
    gap: 18px;
    margin-top: 80px;
  }

  .price-card {
    min-height: 820px;
  }

  .price-card.popular {
    min-height: 850px;
    margin-top: -30px;
    transform: none;
    z-index: 2;
  }

  .price-card-head,
  .price-card.popular .price-card-head {
    min-height: 300px;
    padding: 34px 28px;
  }

  .price-card.popular .price-card-head {
    min-height: 330px;
    margin-top: 0;
  }

  .price-card h3 {
    font-size: 27px;
  }

  .price-card-head p {
    font-size: 16px;
  }

  .price {
    font-size: clamp(46px, 4vw, 58px);
  }

  .price span {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
    font-size: 16px;
  }

  .price-features,
  .price-card.popular .price-features {
    padding: 0 28px;
    gap: 18px;
    margin: 34px 0 36px;
  }

  .price-features li {
    font-size: 16px;
  }

  .price-btn {
    width: calc(100% - 56px);
    max-width: none;
    min-height: 58px;
    margin-left: 28px;
    padding: 0 18px;
    font-size: 14px;
    white-space: nowrap;
  }

  .pricing-addons {
    grid-template-columns: 1.25fr 0.9fr 0.9fr 0.9fr;
    padding: 26px 32px;
  }

  .addon-intro h3 {
    font-size: 22px;
  }

  .addon-intro p {
    font-size: 15px;
    margin-top: 10px;
  }

  .addon-item {
    padding-left: 36px;
    min-height: 60px;
  }

  .addon-item span {
    font-size: 15px;
  }

  .addon-item strong {
    font-size: 20px;
    margin-top: 8px;
  }
}

@media (min-width: 621px) {
  .space {
    padding: 54px 0 118px;
  }

  .space-head {
    width: min(1220px, calc(100% - 64px));
  }

  .space-kicker {
    font-size: 20px;
  }

  .space-title {
    font-size: 56px;
  }

  .space-copy {
    font-size: 20px;
  }

  .tabs {
    gap: 18px;
    margin-top: 42px;
  }

  .tab {
    min-height: 48px;
    padding: 0 34px;
    font-size: 18px;
  }

  .space-gallery-wrap {
    margin-top: 60px;
    padding-left: max(32px, calc((100vw - 1710px) / 2));
  }

  .gallery {
    gap: 26px;
    padding-right: 32px;
  }

  .gallery-card {
    flex-basis: 540px;
    height: 500px;
    border-radius: 26px;
  }

  .gallery-card > span {
    left: 42px;
    bottom: 40px;
    font-size: 13px;
  }

  .space-controls {
    margin-top: 76px;
    gap: 36px;
  }

  .space-arrow {
    width: 66px;
    height: 66px;
    font-size: 32px;
  }

  .space-progress {
    width: min(48vw, 650px);
  }
}

@media (min-width: 981px) {
  .space {
    padding: 60px 0 150px;
  }

  .space-head {
    width: min(1320px, calc(100% - 120px));
  }

  .space-kicker {
    font-size: 22px;
  }

  .space-title {
    margin-top: 26px;
    font-size: 64px;
    line-height: 1.12;
  }

  .space-copy {
    margin-top: 24px;
    font-size: 21px;
  }

  .tabs {
    margin-top: 46px;
    gap: 22px;
  }

  .tab {
    min-height: 54px;
    min-width: 140px;
    padding: 0 44px;
    font-size: 20px;
  }

  .tab:first-child {
    min-width: 124px;
  }

  .space-gallery-wrap {
    margin-top: 64px;
    padding-left: max(48px, calc((100vw - 1710px) / 2));
  }

  .gallery {
    gap: 32px;
    padding-right: 48px;
  }

  .gallery-card {
    flex-basis: 560px;
    height: 520px;
    border-radius: 28px;
  }

  .gallery-card > span {
    left: 52px;
    bottom: 48px;
    font-size: 14px;
  }

  .space-controls {
    margin-top: 96px;
    gap: 46px;
  }

  .space-arrow {
    width: 72px;
    height: 72px;
  }

  .space-progress {
    width: min(48vw, 760px);
  }
}

@media (min-width: 1500px) {
  .space {
    padding: 60px 0 170px;
  }

  .space-title {
    font-size: 60px;
  }

  .space-copy {
    font-size: 18px;
  }

  .tab {
    min-height: 54px;
    min-width: 224px;
    font-size: 20px;
  }

  .tab:first-child {
    min-width: 124px;
  }

  .gallery-card {
    flex-basis: 560px;
    height: 560px;
    border-radius: 30px;
  }

  .gallery-card > span {
    left: 64px;
    bottom: 58px;
    font-size: 24px;
  }

  .space-controls {
    margin-top: 112px;
    gap: 52px;
  }

  .space-arrow {
    width: 78px;
    height: 78px;
  }

  .testimonials {
    padding: 170px 0 160px;
  }

  .testimonials-title {
    font-size: 76px;
  }

  .testimonial-rail-wrap {
    margin-top: 76px;
  }

  .testimonial-card {
    flex-basis: 888px;
    min-height: 444px;
    border-radius: 30px;
    padding: 78px 78px 62px;
  }

  .testimonial-card::after {
    right: 28px;
    bottom: -116px;
    font-size: 300px;
  }

  .testimonial-card p {
    font-size: 30px;
    line-height: 1.34;
  }

  .testimonial-client {
    gap: 20px;
    margin-top: 54px;
  }

  .testimonial-client img {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .testimonial-client strong {
    font-size: 30px;
  }

  .testimonial-client span {
    font-size: 22px;
  }

  .testimonial-controls {
    margin-top: 112px;
    gap: 52px;
  }

  .testimonial-arrow {
    width: 78px;
    height: 78px;
  }
}

@media (min-width: 621px) {
  .cohost {
    padding: 96px 0 110px;
  }

  .hosts-wrap {
    width: min(1320px, calc(100% - 64px));
  }

  .hosts-kicker {
    font-size: 20px;
  }

  .hosts-title {
    font-size: 54px;
    line-height: 1.06;
  }

  .hosts-copy {
    font-size: 18px;
  }

  .hosts-rule {
    margin-top: 64px;
  }

  .hosts-grid {
    margin-top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .host-card {
    min-height: 360px;
    padding: 44px 40px 38px;
  }

  .host-number {
    font-size: 96px;
  }

  .hosts-cta {
    margin-top: 64px;
  }

  .hosts-cta p {
    font-size: 18px;
  }

  .hosts-actions {
    gap: 18px;
  }

  .host-btn {
    min-width: 250px;
    min-height: 64px;
    padding: 0 34px;
    font-size: 19px;
  }
}

@media (min-width: 981px) {
  .cohost {
    padding: 108px 0 134px;
  }

  .hosts-wrap {
    width: min(1320px, calc(100% - 120px));
  }

  .hosts-title {
    margin-top: 25px;
    font-size: 60px;
    line-height: 1.02;
  }

  .hosts-copy {
    max-width: 900px;
    margin-top: 24px;
    font-size: 19px;
  }

  .hosts-copy br {
    display: block;
  }

  .hosts-rule {
    width: min(900px, 82%);
    margin-top: 70px;
  }

  .hosts-grid {
    margin-top: 72px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  .host-card {
    min-height: 388px;
    padding: 46px 42px 40px;
  }

  .host-card-lower {
    margin-top: 110px;
  }

  .host-card h3 {
    font-size: 30px;
  }

  .host-card h4 {
    font-size: 23px;
  }

  .host-card p {
    font-size: 17px;
  }

  .hosts-cta {
    margin-top: 72px;
  }
}

@media (min-width: 981px) and (max-width: 1499px) {
  .cohost {
    padding: 66px 0 84px;
  }

  .hosts-wrap {
    width: min(1120px, calc(100% - 96px));
  }

  .hosts-kicker {
    font-size: 16px;
  }

  .hosts-kicker::after {
    margin-top: 8px;
  }

  .hosts-title {
    margin-top: 18px;
    font-size: clamp(44px, 4vw, 50px);
    line-height: 1.02;
  }

  .hosts-copy {
    max-width: 760px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hosts-rule {
    width: min(720px, 72%);
    margin-top: 36px;
  }

  .hosts-grid {
    margin-top: 42px;
    gap: 14px;
  }

  .host-card {
    min-height: 300px;
    padding: 30px 28px 28px;
  }

  .host-card-lower {
    margin-top: 72px;
  }

  .host-number {
    font-size: 76px;
  }

  .host-card h3 {
    margin-top: 20px;
    font-size: 24px;
  }

  .host-card h4 {
    margin-top: 9px;
    font-size: 18px;
  }

  .host-card p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.32;
  }

  .hosts-cta {
    margin-top: 46px;
  }

  .hosts-cta p {
    font-size: 15px;
  }

  .host-btn {
    min-width: 210px;
    min-height: 52px;
    padding: 0 26px;
    font-size: 16px;
  }
}

@media (min-width: 1500px) {
  .cohost {
    padding: 112px 0 150px;
  }

  .hosts-wrap {
    width: min(1360px, calc(100% - 180px));
  }

  .hosts-title {
    font-size: 62px;
  }

  .hosts-copy {
    font-size: 20px;
  }

  .hosts-rule {
    margin-top: 76px;
  }

  .hosts-grid {
    margin-top: 76px;
    gap: 20px;
  }

  .host-card {
    min-height: 410px;
    padding: 48px 44px 42px;
  }

  .host-card-lower {
    margin-top: 118px;
  }

  .host-number {
    font-size: 104px;
  }

  .hosts-cta {
    margin-top: 78px;
  }
}

@media (min-width: 621px) {
  .booking {
    padding: 104px 0 126px;
  }

  .booking-wrap {
    width: min(1500px, calc(100% - 64px));
  }

  .booking-title {
    font-size: 58px;
  }

  .booking-lead {
    font-size: 18px;
  }

  .booking-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

  .booking-benefits li {
    font-size: 18px;
  }

  .booking-benefits li:last-child {
    grid-column: span 2;
  }


  .booking-call-card {
    padding: 10px 18px;
  }

  .booking-call-card a {
    font-size: 54px;
  }

  .booking-panel {
    padding: 28px;
    border-radius: 30px;
  }

  .booking-tabs {
    gap: 16px;
  }

  .booking-tab {
    min-height: 48px;
    font-size: 15px;
  }

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

@media (min-width: 981px) {
  .booking {
    padding: 126px 0 168px;
  }

  .booking-wrap {
    width: min(1540px, calc(100% - 140px));
    grid-template-columns: 1fr 600px;
    gap: 92px;
    align-items: start;
  }

  .booking-title {
    margin-top: 34px;
    font-size: clamp(60px, 4.4vw, 76px);
    line-height: 1.06;
  }

  .booking-title span {
    white-space: nowrap;
  }

  .booking-lead {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.28;
  }

  .booking-benefits {
    margin-top: 54px;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
  }

  .booking-benefits li {
    font-size: 20px;
  }

  .booking-benefits span {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .booking-benefits span img {
    width: 28px;
    height: 28px;
  }

  .booking-call-card {
    margin-top: 56px;
    max-width: 700px;
    border-radius: 26px;
    padding: 44px 58px;
  }

  .booking-call-card p {
    font-size: 22px;
  }

  .booking-call-card a {
    font-size: 54px;
  }

  .booking-call-card span {
    font-size: 23px;
  }

  .booking-panel {
    padding: 32px 34px 34px;
    border-radius: 32px;
  }

  .booking-tabs {
    margin-bottom: 24px;
    gap: 18px;
  }

  .booking-tab {
    min-height: 50px;
    font-size: 16px;
  }

  .booking-panel-label {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .package-grid {
    gap: 14px;
  }

  .package-card {
    min-height: 108px;
    padding: 16px 20px;
    border-radius: 10px;
  }

  .package-card strong {
    font-size: 17px;
  }

  .package-card span {
    font-size: 24px;
  }

  .package-card small {
    font-size: 13px;
  }

  .booking-continue {
    min-height: 54px;
    margin-top: 24px;
    font-size: 16px;
  }
}

@media (min-width: 1500px) {
  .booking {
    padding: 142px 0 210px;
  }

  .booking-wrap {
    width: min(1760px, calc(100% - 300px));
    grid-template-columns: 1fr 600px;
    gap: 126px;
  }

  .booking-kicker {
    font-size: 18px;
  }

  .booking-title {
    font-size: 56px;
  }

  .booking-panel {
    padding: 34px 36px 36px;
  }
}

@media (min-width: 981px) and (max-width: 1499px) {
  .booking-wrap {
    width: min(1320px, calc(100% - 96px));
    grid-template-columns: 1fr 600px;
    gap: 56px;
  }

  .booking-panel {
    padding: 28px;
  }

  .booking-tabs {
    gap: 14px;
  }

  .booking-tab {
    font-size: 15px;
  }

  .package-card {
    min-height: 104px;
    padding: 16px 18px;
  }

  .package-card strong {
    font-size: 16px;
  }

  .package-card span {
    font-size: 22px;
  }
}

@media (min-width: 621px) {
  .booking-summary-strip span {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .datetime-grid {
    gap: 16px;
  }

  .calendar-box,
  .slot-box {
    padding: 12px;
  }

  .slot-head {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

  .booking-step-actions,
  .payment-actions {
    grid-template-columns: 0.52fr 1fr;
    align-items: center;
  }

  .booking-step-actions .booking-continue {
    margin-top: 0;
  }
}

@media (min-width: 981px) {
  .calendar-box,
  .slot-box {
    padding: 14px;
  }

  .calendar-day {
    font-size: 13px;
  }

  .slot-head {
    grid-template-columns: minmax(0, 1fr) minmax(110px, 0.5fr);
    align-items: end;
  }
}

@media (min-width: 1500px) {
  .time-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ==========================================
   --- Services Mobile Styling Overrides ---
   ========================================== */
@media (max-width: 620px) {
  .service-stack {
    margin-top: 54px;
  }

  .service-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-info {
    margin-top: 36px;
    text-align: left;
    width: 100%;
  }

  .service-number {
    font-size: 72px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 8px;
    line-height: 1.1;
    text-align: left;
  }

  .service-info h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    display: block;
    text-align: left;
    text-shadow: none;
  }

  .service-info h3 span {
    display: inline;
    background: transparent;
    padding: 0;
  }

  .service-info h3 span:first-child {
    color: var(--white);
  }

  .service-info h3 span:last-child {
    color: var(--orange);
  }

  .service-card p {
    font-size: 16px;
    line-height: 1.45;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
}

/* --- Lenis Smooth Scrolling Optimization --- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
}

/* --- Global Section Alignment (Matching Services Section Padding) --- */
@media (min-width: 621px) {
  .container,
  .services-wrap,
  .pricing-wrap,
  .hosts-wrap,
  .booking-wrap,
  .faq-wrap,
  .location-wrap,
  .space-head,
  .testimonials-head,
  .studio-seo-wrap,
  .footer-wrap {
    width: min(var(--max), calc(100% - 64px));
    margin-inline: auto;
  }
}

@media (min-width: 981px) {
  .container,
  .services-wrap,
  .pricing-wrap,
  .hosts-wrap,
  .booking-wrap,
  .faq-wrap,
  .location-wrap,
  .space-head,
  .testimonials-head,
  .studio-seo-wrap,
  .footer-wrap {
    width: min(1580px, calc(100% - 180px));
    margin-inline: auto;
  }
}

@media (min-width: 981px) and (max-width: 1499px) {
  .container,
  .services-wrap,
  .pricing-wrap,
  .hosts-wrap,
  .booking-wrap,
  .faq-wrap,
  .location-wrap,
  .space-head,
  .testimonials-head,
  .studio-seo-wrap,
  .footer-wrap {
    width: min(1280px, calc(100% - 96px));
    margin-inline: auto;
  }
}

/* --- Gallery Lightbox Modal --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--white);
  user-select: none;
  outline: none;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 10010;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10005;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 20px;
}

.lightbox-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 25px rgba(255, 51, 1, 0.55);
}

.lightbox-arrow-left {
  left: 40px;
}

.lightbox-arrow-left:hover {
  transform: translateY(-55%) translateX(-5px);
}

.lightbox-arrow-right {
  right: 40px;
}

.lightbox-arrow-right:hover {
  transform: translateY(-55%) translateX(5px);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  position: relative;
  gap: 24px;
}

.lightbox-slider-window {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.lightbox-slider-track {
  display: flex;
  height: 100%;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  will-change: transform;
}

.lightbox-slide {
  flex: 0 0 65vw;
  max-width: 680px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.6s ease, filter 0.6s ease;
  opacity: 0.18;
  filter: blur(5px) grayscale(0.4);
  transform: scale(0.8);
  pointer-events: none;
}

.lightbox-slide.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  pointer-events: auto;
}

.lightbox-slide.prev-slide,
.lightbox-slide.next-slide {
  opacity: 0.42;
  filter: blur(2px);
  transform: scale(0.85);
  pointer-events: auto;
  cursor: pointer;
}

.lightbox-slide.prev-slide:hover,
.lightbox-slide.next-slide:hover {
  opacity: 0.7;
  filter: blur(0px);
}

.lightbox-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
}

.lightbox-details {
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10007;
}

.lightbox-category {
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lightbox-title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -0.015em;
  color: var(--white);
}

.lightbox-counter {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
}

.lightbox-thumbnails-wrap {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10008;
  padding-inline: 20px;
}

.lightbox-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
  max-width: 600px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.lightbox-thumbnails::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.35;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.lightbox-thumb:hover {
  opacity: 0.75;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--orange);
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .lightbox-arrow {
    width: 48px;
    height: 48px;
    font-size: 16px;
    background: rgba(5, 5, 5, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .lightbox-arrow-left {
    left: 16px;
  }
  
  .lightbox-arrow-right {
    right: 16px;
  }
  
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 32px;
  }
  
  .lightbox-content {
    width: 100%;
    height: 75vh;
    gap: 16px;
  }
  
  .lightbox-slider-window {
    height: 50vh;
  }
  
  .lightbox-slide {
    flex: 0 0 85vw;
  }
  
  .lightbox-slide img {
    border-radius: 14px;
  }
  
  .lightbox-title {
    font-size: 22px;
  }
  
  .lightbox-thumb {
    width: 52px;
    height: 39px;
  }
  
  .lightbox-thumbnails-wrap {
    bottom: 16px;
  }
}
