:root {
  --font-family-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --text-color: #ffffff;
  --background-color: #040407;
  --header-bg: transparent;
  --header-border: transparent;
  --header-blur: 0px;
  --header-padding-block: clamp(0.9rem, 2.5vw, 1.4rem);
  --header-padding-inline: clamp(1.25rem, 4vw, 3rem);
  --header-gap: clamp(0.75rem, 3vw, 2rem);
  --logo-height: 2.75rem;
  --header-height: 0px;
  --color-accent: #f97316;
  --color-accent-hover: #fb923c;
  --color-ghost-bg: rgba(255, 255, 255, 0.14);
  --color-ghost-bg-hover: rgba(255, 255, 255, 0.22);
  --color-ghost-border: rgba(255, 255, 255, 0.35);
  --hero-overlay-strong: rgba(7, 9, 20, 0.4);
  --hero-overlay-soft: rgba(7, 9, 20, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family-sans);
  color: var(--text-color);
  background-color: var(--background-color);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  border-bottom: 1px solid var(--header-border);
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease,
    transform 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(9, 11, 21, 0.55);
  backdrop-filter: blur(6px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: clamp(60rem, 87vw, 78rem);
  margin: 0 auto;
  padding: var(--header-padding-block) var(--header-padding-inline);
  display: flex;
  align-items: center;
  gap: var(--header-gap);
  flex-wrap: wrap;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.site-logo {
  height: var(--logo-height);
  width: auto;
}

.studio-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-left: auto;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-link:focus-visible,
.social-link:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 280px;
  height: 100vh;
  background-color: rgba(4, 4, 7, 0.98);
  backdrop-filter: blur(12px);
  padding: calc(var(--header-height, 0px) + 2rem) 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 24;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mobile-menu[aria-hidden="false"]::before {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 180ms ease;
}

.mobile-menu-link:focus-visible,
.mobile-menu-link:hover {
  opacity: 0.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease,
    border-color 180ms ease, transform 180ms ease;
  border: 1px solid transparent;
}

.button--primary {
  background-color: var(--color-accent);
  color: #111827;
}

.button--primary:focus-visible,
.button--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.button--ghost {
  background-color: var(--color-ghost-bg);
  border-color: var(--color-ghost-border);
  color: #f9fafb;
}

.button--ghost:focus-visible,
.button--ghost:hover {
  background-color: var(--color-ghost-bg-hover);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--header-height, 0px) + clamp(2rem, 10vh, 5rem))
    var(--header-padding-inline) clamp(3rem, 12vh, 5rem);
  /* background gradient overlay */
  background-image: linear-gradient(
      140deg,
      var(--hero-overlay-strong) 0%,
      var(--hero-overlay-soft) 45%,
      rgba(10, 12, 22, 0.3) 100%
    ),
    url("../assets/images/alex_on_stage_002_1920x1280.webp");
  /* background-image: url("../assets/images/alex_on_stage_002_1920x1280.webp"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@supports (min-height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero::before {
  /* content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 24% 28%,
      rgba(255, 255, 255, 0.18),
      transparent 52%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(249, 115, 22, 0.28),
      transparent 55%
    );
  opacity: 0.28;
  pointer-events: none; */
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(44rem, 92vw);
  background-color: rgba(9, 11, 21, 0.25);
  backdrop-filter: blur(6px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: clamp(1rem, 3vw, 1.65rem);
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.35);
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: clamp(0.8125rem, 0.75rem + 0.5vw, 1rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 1.5rem + 4vw, 3.75rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 0.875rem + 1.25vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.reviews {
  padding: clamp(4rem, 10vh, 6rem) var(--header-padding-inline);
  background: linear-gradient(
    180deg,
    #5a5245 0%,
    #8b7f6d 25%,
    #b8ab98 50%,
    #d4c8b8 75%,
    #f5f1eb 100%
  );
}

.reviews-container {
  max-width: clamp(60rem, 87vw, 78rem);
  margin: 0 auto;
}

.reviews-title {
  text-align: center;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 clamp(3rem, 6vh, 4rem);
  color: #2d2a24;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.reviews-wrapper {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}

.reviews-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  color: #2d2a24;
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, opacity 180ms ease,
    box-shadow 180ms ease;
  padding: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reviews-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.reviews-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.reviews-arrow--prev {
  left: 0.5rem;
}

.reviews-arrow--next {
  right: 0.5rem;
}

.lessons-wrapper {
  position: relative;
}

.lessons-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  color: #2d2a24;
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, opacity 180ms ease,
    box-shadow 180ms ease;
  padding: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lessons-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lessons-arrow:hover,
.lessons-arrow:focus-visible {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.lessons-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lessons-arrow--prev {
  left: 0.5rem;
}

.lessons-arrow--next {
  right: 0.5rem;
}

.review-card {
  background-color: #ffffff;
  backdrop-filter: blur(8px);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: clamp(0.75rem, 2vw, 1rem);
  border: 1px solid rgba(249, 115, 22, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(249, 115, 22, 0.05);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.25);
}

.review-stars {
  width: clamp(120px, 15vw, 150px);
  height: auto;
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.review-text {
  font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.0625rem);
  line-height: 1.7;
  color: #3a3730;
  margin: 0 0 auto;
  flex-grow: 1;
}

.review-author {
  font-size: clamp(1rem, 0.9375rem + 0.4vw, 1.125rem);
  font-weight: 600;
  color: #2d2a24;
  margin: 1.5rem 0 0.25rem;
}

.review-meta {
  font-size: clamp(0.875rem, 0.8125rem + 0.3vw, 0.9375rem);
  color: #5a5548;
  margin: 0;
}

@media (max-width: 720px) {
  .header-inner {
    gap: 0.5rem;
  }

  .header-brand {
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }

  .studio-name {
    font-size: 1.375rem;
  }

  .social-nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
  }

  .button {
    width: 100%;
    font-size: clamp(0.875rem, 0.8rem + 0.5vw, 0.95rem);
  }

  .hero {
    padding-inline: clamp(1rem, 4vw, 1.5rem);
    padding-top: calc(var(--header-height, 0px) + clamp(1.5rem, 7vh, 3rem));
    padding-bottom: clamp(0.75rem, 4vh, 2rem);
    align-items: flex-end;
    justify-items: start;
  }

  .hero-content {
    padding: clamp(1.5rem, 4vw, 2rem);
    max-width: min(44rem, 94vw);
    background-color: rgba(9, 11, 21, 0.25);
  }

  .hero-eyebrow {
    font-size: clamp(0.75rem, 0.7rem + 0.5vw, 0.875rem);
    margin-bottom: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.625rem, 1.25rem + 2.5vw, 2.25rem);
    margin-bottom: 0.875rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9375rem, 0.875rem + 1vw, 1.125rem);
    margin-bottom: 1.5rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
  }

  .reviews {
    padding: clamp(3rem, 8vh, 4.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .reviews-title {
    font-size: clamp(1.75rem, 1.5rem + 2vw, 2.25rem);
    margin-bottom: clamp(2rem, 5vh, 3rem);
  }

  .reviews-wrapper {
    position: relative;
    padding: 0 1rem;
  }

  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin-right: 0;
  }

  .reviews-arrow {
    display: flex;
  }

  .reviews-arrow--prev {
    left: -1rem;
  }

  .reviews-arrow--next {
    right: -1rem;
  }

  .review-card {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .review-stars {
    width: clamp(100px, 20vw, 130px);
  }
}

.bio {
  padding: clamp(4rem, 10vh, 6rem) var(--header-padding-inline);
  background: linear-gradient(180deg, #f5f1eb 0%, #ede8e0 100%);
}

.bio-container {
  max-width: clamp(60rem, 87vw, 78rem);
  margin: 0 auto;
}

.bio-title {
  text-align: center;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 clamp(3rem, 6vh, 4rem);
  color: #2d2a24;
  letter-spacing: 0.05em;
}

.bio-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.bio-title--desktop {
  display: none;
}

.bio-title--mobile {
  display: block;
  text-align: center;
  margin: 0 0 clamp(2rem, 5vh, 3rem);
}

.bio-image-wrapper {
  position: relative;
  border-radius: clamp(0.75rem, 2vw, 1rem);
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.bio-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.bio-text p {
  margin: 0;
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  line-height: 1.75;
  color: #3a3730;
}

.bio-summary {
  margin: 0;
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  line-height: 1.75;
  color: #3a3730;
}

.bio-expanded {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.bio-expanded p {
  margin: 0;
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  line-height: 1.75;
  color: #3a3730;
}

.bio-read-more {
  align-self: flex-start;
  margin-top: 0.5rem;
  background-color: rgba(249, 115, 22, 0.08);
  border-color: var(--color-accent);
  border-width: 2px;
  color: var(--color-accent);
  font-weight: 600;
}

.bio-read-more:hover,
.bio-read-more:focus-visible {
  background-color: rgba(249, 115, 22, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lessons {
  padding: clamp(4rem, 10vh, 6rem) var(--header-padding-inline);
  background: linear-gradient(180deg, #f0ede8 0%, #e8e4de 50%, #e0dcd5 100%);
}

.pricing {
  padding: clamp(4rem, 10vh, 6rem) var(--header-padding-inline);
  background: linear-gradient(
    180deg,
    #e0dcd5 0%,
    #d4c8b8 25%,
    #c9bca8 50%,
    #b8ab98 75%,
    #8b7f6d 100%
  );
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(249, 115, 22, 0.08),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(249, 115, 22, 0.06),
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.pricing-container {
  position: relative;
  z-index: 1;
  max-width: clamp(60rem, 87vw, 78rem);
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 4.5rem);
}

.pricing-title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #2d2a24;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.pricing-subtitle {
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  color: #3a3730;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 6vh, 4.5rem);
}

.pricing-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(249, 115, 22, 0.1);
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease,
    border-color 300ms ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.25);
}

.pricing-card--featured {
  border-color: rgba(249, 115, 22, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured:hover {
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(249, 115, 22, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--color-accent),
    var(--color-accent-hover)
  );
  color: #ffffff;
  font-size: clamp(0.6875rem, 0.625rem + 0.3vw, 0.75rem);
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
  z-index: 2;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  padding-top: 0.5rem;
}

.pricing-card-title {
  font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.25rem);
  font-weight: 700;
  color: #2d2a24;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.pricing-card-description {
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1.0625rem);
  line-height: 1.7;
  color: #3a3730;
  margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
  border-bottom: 2px solid rgba(249, 115, 22, 0.15);
}

.pricing-price-amount {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.25rem);
  font-weight: 700;
  color: #2d2a24;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price-period {
  font-size: clamp(1rem, 0.9375rem + 0.4vw, 1.125rem);
  color: #5a5548;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1.0625rem);
  color: #3a3730;
  line-height: 1.6;
}

.pricing-feature-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 0.15rem;
  filter: drop-shadow(0 1px 2px rgba(249, 115, 22, 0.2));
}

.pricing-recommendation {
  font-size: clamp(0.875rem, 0.8125rem + 0.3vw, 0.9375rem);
  color: #5a5548;
  font-style: italic;
  margin: auto 0 0;
  text-align: center;
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.pricing-trial {
  background: linear-gradient(
    to bottom right,
    #f5f1eb 0%,
    #e8e4de 25%,
    #d4c8b8 60%,
    #b8ab98 100%
  );
  backdrop-filter: blur(10px);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(249, 115, 22, 0.1);
  border: 2px solid rgba(249, 115, 22, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-trial::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.pricing-trial-content {
  position: relative;
  z-index: 1;
}

.pricing-trial-title {
  font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.25rem);
  font-weight: 700;
  color: #2d2a24;
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.01em;
}

.pricing-trial-description {
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  line-height: 1.7;
  color: #3a3730;
  margin: 0 0 clamp(2rem, 3vw, 2.5rem);
  max-width: min(600px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.pricing-trial-button {
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1rem);
  padding: clamp(0.85rem, 1.5vw, 1rem) clamp(2rem, 4vw, 2.5rem);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.pricing-trial-button:hover {
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.lessons-container {
  max-width: clamp(60rem, 87vw, 78rem);
  margin: 0 auto;
}

.lessons-title {
  text-align: center;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 clamp(3rem, 6vh, 4rem);
  color: #2d2a24;
  letter-spacing: 0.05em;
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.lesson-card {
  background-color: #ffffff;
  border-radius: clamp(0.75rem, 2vw, 1rem);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: flex;
  flex-direction: column;
}

.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lesson-image-wrapper {
  width: 100%;
  height: clamp(200px, 25vw, 280px);
  overflow: hidden;
  background-color: #f5f3f0;
}

.lesson-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lesson-card:hover .lesson-image {
  transform: scale(1.05);
}

.lesson-content {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.lesson-name {
  margin: 0;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 1.875rem);
  font-weight: 700;
  color: #2d2a24;
  line-height: 1.2;
}

.lesson-subtitle {
  margin: 0;
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1.0625rem);
  font-weight: 500;
  color: #f97316;
  letter-spacing: 0.02em;
}

.lesson-description {
  margin: 0;
  font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.0625rem);
  line-height: 1.7;
  color: #3a3730;
  flex-grow: 1;
  font-style: italic;
}

@media (max-width: 720px) {
  .bio {
    padding: clamp(3rem, 8vh, 4.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .bio-title {
    font-size: clamp(1.75rem, 1.5rem + 2vw, 2.25rem);
    margin-bottom: clamp(2rem, 5vh, 3rem);
  }

  .bio-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }

  .bio-title--mobile {
    display: block;
    text-align: center;
    margin: 0 0 clamp(2rem, 5vh, 3rem);
  }

  .bio-title--desktop {
    display: none;
  }

  .bio-read-more {
    align-self: center;
  }

  .bio-text p {
    font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.0625rem);
    line-height: 1.7;
  }

  .lessons {
    padding: clamp(3rem, 8vh, 4.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .lessons-title {
    font-size: clamp(1.75rem, 1.5rem + 2vw, 2.25rem);
    margin-bottom: clamp(2rem, 5vh, 3rem);
  }

  .lessons-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .lesson-image-wrapper {
    height: clamp(180px, 40vw, 240px);
  }

  .lesson-content {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .pricing {
    padding: clamp(3rem, 8vh, 4.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .pricing-title {
    font-size: clamp(1.75rem, 1.5rem + 2vw, 2.25rem);
    margin-bottom: 0.5rem;
  }

  .pricing-subtitle {
    font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.0625rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
  }

  .pricing-card {
    padding: clamp(1.75rem, 3vw, 2.25rem);
  }

  .pricing-badge {
    top: -0.65rem;
    font-size: clamp(0.625rem, 0.5625rem + 0.3vw, 0.6875rem);
    padding: 0.35rem 0.75rem;
  }

  .pricing-card-title {
    font-size: clamp(1.625rem, 1.375rem + 1.5vw, 2rem);
  }

  .pricing-price-amount {
    font-size: clamp(2.25rem, 1.875rem + 2vw, 2.75rem);
  }

  .pricing-trial {
    padding: clamp(2rem, 4vw, 2.75rem);
  }

  .pricing-trial-title {
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 1.875rem);
  }

  .pricing-trial-description {
    font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.0625rem);
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  }

  .pricing-card--featured .pricing-card-header {
    padding-top: 2rem;
  }
}

/* Application Form Styles */
.application-form {
  position: relative;
  padding: clamp(4rem, 10vh, 6rem) var(--header-padding-inline);
  overflow: hidden;
}

.application-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      140deg,
      var(--hero-overlay-strong) 0%,
      var(--hero-overlay-soft) 45%,
      rgba(10, 12, 22, 0.3) 100%
    ),
    url("../assets/images/alex_on_stage_002_1920x1280.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(30px);
  transform: scale(1.1);
  z-index: 0;
}

.application-form-container {
  position: relative;
  z-index: 1;
  max-width: clamp(60rem, 87vw, 78rem);
  margin: 0 auto;
}

.application-form-title {
  text-align: center;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 clamp(1.5rem, 3vh, 2rem);
  color: #ffffff;
  letter-spacing: 0.05em;
}

.application-form-intro {
  text-align: center;
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 clamp(2.5rem, 5vh, 3.5rem);
  max-width: min(900px, 95vw);
  margin-left: auto;
  margin-right: auto;
}

.application-form-footer {
  text-align: center;
  font-size: clamp(0.875rem, 0.8125rem + 0.3vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  margin: clamp(2.5rem, 5vh, 3.5rem) 0 0;
  padding-top: clamp(2rem, 4vh, 2.5rem);
}

.application-form-success {
  background: linear-gradient(180deg, #f5f1eb 0%, #ede8e0 100%);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: clamp(0.75rem, 2vw, 1rem);
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 2rem;
}

.application-form-success p {
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  color: #2d2a24;
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.application-form-form {
  background: linear-gradient(180deg, #f5f1eb 0%, #ede8e0 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(0.75rem, 2vw, 1rem);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.form-row:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1.0625rem);
  font-weight: 500;
  color: #2d2a24;
  padding-top: 0.75rem;
}

.form-label .required {
  color: #dc2626;
  margin-left: 0.25rem;
}

.form-input-group {
  display: flex;
  gap: 0.75rem;
}

.form-input,
.form-textarea {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1rem);
  font-family: var(--font-family-sans);
  color: #2d2a24;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input--error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.form-input--error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input--readonly {
  background-color: #f9fafb;
  color: #4b5563;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

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

.form-error {
  display: none;
  font-size: clamp(0.8125rem, 0.75rem + 0.3vw, 0.875rem);
  color: #dc2626;
  margin-top: 0.5rem;
  grid-column: 2;
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1rem);
  color: #2d2a24;
  cursor: pointer;
}

.form-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.form-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-submission-error {
  display: none;
  background-color: #fef2f2;
  border: 1px solid #dc2626;
  color: #dc2626;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1rem);
}

.form-actions {
  margin-top: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  justify-content: center;
}

.form-actions .button {
  min-width: 200px;
}

@media (max-width: 720px) {
  .application-form {
    padding: clamp(3rem, 8vh, 4.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .application-form-title {
    font-size: clamp(1.75rem, 1.5rem + 2vw, 2.25rem);
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
  }

  .application-form-intro {
    font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.0625rem);
    margin-bottom: clamp(2rem, 4vh, 2.5rem);
  }

  .application-form-form {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
  }

  .form-label {
    padding-top: 0;
    margin-bottom: 0.5rem;
  }

  .form-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-error {
    grid-column: 1;
  }

  .form-checkbox-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .form-actions .button {
    width: 100%;
    min-width: auto;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .bio-title--mobile {
    display: block;
    text-align: center;
    margin: 0 0 clamp(2rem, 5vh, 3rem);
  }

  .bio-title--desktop {
    display: none;
  }

  .bio-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }

  .bio-read-more {
    align-self: center;
  }

  .hero {
    padding-inline: clamp(2rem, 6vw, 6rem);
    padding-top: calc(var(--header-height, 0px) + clamp(2rem, 9vh, 4.5rem));
  }
  .hero-content {
    max-width: min(44rem, 86vw);
    background-color: rgba(9, 11, 21, 0.25);
  }
  .hero-title {
    font-size: clamp(2.5rem, 1.75rem + 3.5vw, 3.25rem);
  }
  .hero-subtitle {
    font-size: clamp(1.0625rem, 0.9375rem + 1.1vw, 1.25rem);
  }

  /* Reviews section - 2 columns with horizontal scroll for 3rd item */
  .reviews-wrapper {
    position: relative;
    padding: 0 3.5rem;
  }

  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 calc(50% - 1rem);
    scroll-snap-align: start;
    margin-right: clamp(1.5rem, 3vw, 2rem);
    min-width: 0;
  }

  .review-card:last-child {
    margin-right: 0;
  }

  .reviews-arrow {
    display: flex;
  }

  /* Lessons section - 2 columns with horizontal scroll for 3rd item */
  .lessons-container {
    position: relative;
  }

  .lessons-wrapper {
    position: relative;
    padding: 0 3.5rem;
  }

  .lessons-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
  }

  .lessons-grid::-webkit-scrollbar {
    display: none;
  }

  .lesson-card {
    flex: 0 0 calc(50% - 1rem);
    scroll-snap-align: start;
    margin-right: clamp(1.5rem, 3vw, 2rem);
    min-width: 0;
  }

  .lesson-card:last-child {
    margin-right: 0;
  }

  .lessons-arrow {
    display: flex;
  }

  /* Bio section - stack vertically on portrait iPad */
  .bio-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }

  .bio-image-wrapper {
    order: -1;
    max-width: min(400px, 75%);
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.75rem, 3vw, 2.5rem);
  }

  .pricing-trial {
    padding: clamp(2.25rem, 4.5vw, 3rem);
  }
}

@media (min-width: 1025px) {
  .hero {
    padding-inline: clamp(3rem, 10vw, 12rem);
  }
  .hero-title {
    font-size: clamp(3rem, 2rem + 2.5vw, 3.75rem);
  }
  .hero-subtitle {
    font-size: clamp(1.125rem, 1rem + 0.75vw, 1.35rem);
  }

  .bio-content {
    grid-template-columns: 1.1fr 1.4fr;
    gap: clamp(3.5rem, 6vw, 5rem);
    align-items: start;
  }

  .bio-image-wrapper {
    max-width: 100%;
  }

  .bio-title--mobile {
    display: none;
  }

  .bio-title--desktop {
    display: block;
    text-align: left;
    margin: 0 0 clamp(2rem, 3vh, 2.5rem);
    font-size: clamp(2.25rem, 2rem + 1.5vw, 2.75rem);
  }

  .bio-text {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .application-form-container {
    max-width: min(900px, 87vw);
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

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