.hero-section {
  padding: var(--space-hero-y) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vh, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-section {
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: clamp(2.5rem, 5vw, 4rem);
    row-gap: clamp(2rem, 4vh, 2.75rem);
  }
}

.hero-section__copy {
  text-align: center;
}

@media (min-width: 900px) {
  .hero-section__copy {
    text-align: left;
  }
}

.hero-section__title {
  margin: 0 0 1.35rem;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.hero-section__copy .lede {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .hero-section__copy .lede {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .hero-section__actions {
    justify-content: flex-start;
  }
}

.hero-section__note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.hero-section__note--walkthrough {
  margin-top: 0.85rem;
  font-size: 0.8rem;
}

.hero-section__note strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-section__stats {
  grid-column: 1 / -1;
  margin-top: clamp(0.5rem, 2vh, 1rem);
}

.phone-mock {
  position: relative;
  width: min(320px, 100%);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .phone-mock {
    margin: 0 0 0 auto;
  }
}

.phone-mock__frame {
  border-radius: 28px;
  padding: 0.65rem;
  background: linear-gradient(145deg, #2a343c, #1a2228);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-mock__screen {
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper-strong);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.phone-mock__status {
  padding: 0.55rem 0.85rem 0.35rem;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.phone-mock__hero {
  padding: 0.5rem 1rem 0.75rem;
  text-align: center;
}

.phone-mock__date {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.phone-mock__names {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.phone-mock__wall {
  flex: 1;
  margin: 0 0.65rem 0.65rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #1a2228;
  min-height: 220px;
}

.phone-mock__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.phone-mock__slide.is-active {
  opacity: 1;
}

.slide-fill {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-fill--1 {
  background: linear-gradient(135deg, #c4b5a0, #8a9aa6 50%, #5a6a76);
}

.slide-fill--2 {
  background: linear-gradient(135deg, #dfe8ef, #9aabb8 45%, #4a5a66);
}

.slide-fill--3 {
  background: linear-gradient(135deg, #e8dfd0, #b8a890 40%, #6a7a86);
}

.phone-mock__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.75rem 0.65rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 0.72rem;
  display: flex;
  justify-content: space-between;
}

.phone-mock__live {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-mock__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e85d5d;
  animation: pulse-live 1.4s ease infinite;
}

@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.section {
  padding: var(--space-section) clamp(1rem, 4vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.section--flush-top {
  padding-top: 0;
}

.section__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.12;
}

.section__sub {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0.35rem;
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.stat {
  padding: 1.35rem 1.15rem;
  text-align: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.stat__num {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--accent);
}

.stat__label {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.features {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 32px rgba(18, 28, 36, 0.08);
}

@media (hover: hover) {
  .feature {
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  }

  .feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.feature__copy {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.15rem;
  }
}

.step {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step__title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.step__copy {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
}

.pricing {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(18, 28, 36, 0.1);
}

@media (hover: hover) {
  .price-card {
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  }

  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}

.price-card.is-popular {
  border-color: rgba(154, 139, 110, 0.45);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(154, 139, 110, 0.2);
}

.price-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b5a48a, #9a8b6e);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.price-card__name {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.price-card__tag {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.45;
}

.price-card__amount {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.price-card__amount small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.price-card__guests {
  margin: 0 0 1.25rem;
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 500;
}

.price-card__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-card__list li {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-soft);
  padding-left: 1.15rem;
  position: relative;
}

.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 600;
  font-size: 0.78rem;
}

.testimonials {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.quote {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.quote__text {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
}

.quote__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.cta-band {
  margin: 0 clamp(1rem, 4vw, 2rem) var(--space-section);
  max-width: calc(var(--max) - 2rem);
  margin-left: auto;
  margin-right: auto;
  padding: 2.75rem clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(61, 83, 99, 0.92), rgba(47, 66, 80, 0.96));
  color: #f7fafc;
  box-shadow: var(--shadow-lg);
}

.cta-band__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
}

.cta-band__copy {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.92;
}

.book-layout {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem) 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .book-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: 2rem;
  }
}

.book-summary,
.book-form {
  padding: 1.65rem;
}

.book-summary__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
}

.package-picker {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.package-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.package-option:hover {
  border-color: rgba(61, 83, 99, 0.35);
}

.package-option.is-selected {
  border-color: var(--accent);
  background: rgba(61, 83, 99, 0.06);
}

.package-option input {
  accent-color: var(--accent);
}

.package-option__main {
  flex: 1;
}

.package-option__name {
  font-weight: 500;
  font-size: 0.95rem;
}

.package-option__meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.package-option__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.checkbox-field input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.success-layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2rem) 3rem;
}

.success-card {
  padding: 2.25rem 2rem;
  text-align: center;
}

.success-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 107, 79, 0.12);
  color: var(--ok);
  font-size: 1.5rem;
}

.success-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.12;
}

.cal-embed {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 520px;
}

.cal-embed iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.demo-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem) 3rem;
}

.demo-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.demo-panel {
  padding: 1.65rem;
}

.capability-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.capability-list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.capability-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.35rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-top: 1.15rem;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table td:last-child {
  color: var(--ok);
  font-weight: 500;
}

.feature__copy a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.feature__copy a:hover {
  color: var(--accent-hover);
}

.section--theatre {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}

.theatre-block {
  margin-top: 2.5rem;
}

.demo-layout > .theatre-block {
  margin-top: 0;
}

.demo-layout .theatre-block + .demo-grid {
  margin-top: 2.5rem;
}
