/* ========================================
   PROD.AGENCY — Landing Page Styles (v2 — Stitch-enhanced)
   ======================================== */

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111111;
}

::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #39ff14;
}

/* ===== Selection ===== */
::selection {
  background: #39ff14;
  color: #222222;
}

/* ===== CSS Custom Properties ===== */
:root {
  --clr-indigo: #3b2fff;
  --clr-green: #39ff14;
  --clr-black: #222222;
  --clr-white: #ffffff;
  --clr-bg: #111111;
  --clr-card: #222222;
  --clr-card-dark: #181818;
  --clr-border: rgba(255, 255, 255, 0.1);
  --clr-border-hover: rgba(255, 255, 255, 0.3);
  --clr-text-muted: #9ca3af;

  --ff-display: 'Unbounded', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --fs-hero: clamp(2.5rem, 7vw, 7rem);
  --fs-section: clamp(1.5rem, 3.5vw, 2.75rem);
  --fs-h3: clamp(1rem, 1.3vw, 1.125rem);
  --fs-body: 1rem;
  --fs-body-sm: 0.875rem;
  --fs-caption: 0.75rem;
  --fs-btn: 0.8rem;

  --container-max: 1200px;
  --header-height: 80px;
  --transition-base: 0.3s ease;
  --border-radius: 8px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--ff-display);
  background: var(--clr-bg);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== Utility ===== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.text-green {
  color: var(--clr-green);
}

.text-indigo {
  color: var(--clr-indigo);
}

.text-glow-green {
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
}

.text-glow-indigo {
  filter: drop-shadow(0 0 15px rgba(59, 47, 255, 0.5));
}

.text-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.gradient-text {
  background: linear-gradient(to right, #3b2fff, #39ff14);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-btn);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--green {
  background: var(--clr-green);
  color: var(--clr-black);
  border-color: var(--clr-green);
}

.btn--green:hover {
  background: var(--clr-white);
  color: var(--clr-black);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.btn--indigo {
  background: var(--clr-indigo);
  color: var(--clr-white);
  border-color: var(--clr-indigo);
  box-shadow: 0 0 20px rgba(59, 47, 255, 0.5);
}

.btn--indigo:hover {
  background: var(--clr-white);
  color: var(--clr-black);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-black);
  border-color: var(--clr-white);
}

.btn--outline-indigo {
  background: rgba(59, 47, 255, 0.1);
  color: var(--clr-indigo);
  border-color: rgba(59, 47, 255, 0.5);
  box-shadow: 0 0 15px rgba(59, 47, 255, 0.1);
}

.btn--outline-indigo:hover {
  background: var(--clr-indigo);
  color: var(--clr-white);
}

.btn--full {
  width: 100%;
}

/* ===== Section Title ===== */
.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-section);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(17, 17, 17, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-body);
  letter-spacing: -0.02em;
  z-index: 10;
}

.header__logo-svg {
  height: 30px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__link {
  font-family: var(--ff-display);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.header__link:hover {
  color: var(--clr-green);
}

.header__cta {
  font-size: var(--fs-caption);
  padding: 0.6rem 1.5rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 10;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header__burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.6), var(--clr-bg));
  z-index: 1;
}

.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  /* 16:9 aspect ratio coverage */
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.hero__badge-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.hero__badge-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr-green);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero__badge-core {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-green);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Title */
.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__title-gradient {
  background: linear-gradient(to right, #ffffff, #ffffff, #6b7280);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Subtitle with CSS-only text changer */
.hero__subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
}

.hero-text-changer {
  font-weight: 700;
  color: var(--clr-white);
  width: 260px;
  text-align: center;
  display: inline-block;
}

.hero-text-changer::before {
  content: "ОТ МУЗЫКАНТОВ";
  animation: textChange 6s ease-in-out infinite;
  display: inline-block;
}

@keyframes textChange {
  0% {
    content: "ОТ МУЗЫКАНТОВ";
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }

  7%,
  40% {
    content: "ОТ МУЗЫКАНТОВ";
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  47% {
    content: "ОТ МУЗЫКАНТОВ";
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-8px);
  }

  47.1% {
    content: "ДЛЯ МУЗЫКАНТОВ";
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }

  54%,
  90% {
    content: "ДЛЯ МУЗЫКАНТОВ";
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  97% {
    content: "ДЛЯ МУЗЫКАНТОВ";
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-8px);
  }

  97.1% {
    content: "ОТ МУЗЫКАНТОВ";
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }

  100% {
    content: "ОТ МУЗЫКАНТОВ";
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.5rem;

}

.hero__cta {
  height: 56px;
  min-width: 200px;
  font-size: var(--fs-body);
  letter-spacing: 0.05em;
}

/* Play button */
.hero__play {
  position: relative;
  width: 150px;
  height: 150px;
  cursor: pointer;
}

.hero__play-spinner {
  position: absolute;
  inset: 0;
  animation: spin 12s linear infinite;
}

.hero__play-text {
  width: 100%;
  height: 100%;
}

.hero__play-text-path {
  font-family: var(--ff-display);
  font-size: 12.8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  transition: all var(--transition-base);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero__play-btn .material-symbols-outlined {
  font-size: 28px;
  margin-left: 2px;
}

.hero__play-btn:hover {
  background: var(--clr-green);
  color: var(--clr-black);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero__scroll-down {
  position: absolute;
  bottom: 2.5rem;
  animation: bounce 2s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.3);
}

.hero__scroll-down .material-symbols-outlined {
  font-size: 36px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* ========================================
   FEATURES (Why Choose Us)
   ======================================== */
.features {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.features__glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 47, 255, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.features__container {
  position: relative;
  z-index: 1;
}

.features__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.features__desc {
  max-width: 420px;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  line-height: 1.7;
  text-align: right;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--clr-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--clr-card-dark);
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(57, 255, 20, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  color: var(--clr-green);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  background: var(--clr-green);
  color: var(--clr-black);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
}

.feature-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}

.feature-card:hover .feature-card__title {
  color: var(--clr-green);
}

.feature-card__desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  transition: color var(--transition-base);
}

.feature-card:hover .feature-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  position: relative;
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.pricing__glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(57, 255, 20, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.pricing__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing__subtitle {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  margin-top: 0.75rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  transition: all 0.5s ease;
}

.pricing-card:hover {
  border-color: var(--clr-border-hover);
  transform: scale(1.02);
}

/* Popular card */
.pricing-card--popular {
  background: var(--clr-card-dark);
  border-color: var(--clr-green);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
  transform: translateY(-16px);
  z-index: 10;
}

.pricing-card--popular:hover {
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.2);
  transform: translateY(-16px) scale(1.03);
}

/* Premium card */
.pricing-card--premium {
  border-color: var(--clr-border);
}

.pricing-card--premium:hover {
  border-color: rgba(59, 47, 255, 0.5);
  box-shadow: 0 0 30px rgba(59, 47, 255, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--clr-green);
  color: var(--clr-black);
  font-size: var(--fs-caption);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card__name {
  font-size: var(--fs-body-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.pricing-card--popular .pricing-card__name {
  color: var(--clr-green);
}

.pricing-card--premium .pricing-card__name {
  color: var(--clr-indigo);
}

.pricing-card__price {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.pricing-card__price--large {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pricing-card__currency {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-green);
  margin-left: 2px;
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  color: #d1d5db;
  padding: 0.5rem 0;
}

.pricing-card--popular .pricing-card__features li {
  color: var(--clr-white);
}

.pricing-card__check {
  font-size: 20px;
  color: var(--clr-green);
}

.pricing-card__check--indigo {
  color: var(--clr-indigo);
}

.pricing-card__btn {
  width: 100%;
}

/* ========================================
   WORKFLOW
   ======================================== */
.workflow {
  padding: 6rem 0;
}

.workflow__title {
  text-align: center;
  margin-bottom: 4rem;
}

.workflow__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Gradient timeline line */
.workflow__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-indigo), var(--clr-green), transparent);
  transform: translateX(-50%);
}

.workflow__step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

.workflow__step:last-child {
  margin-bottom: 0;
}

.workflow__step--left {
  justify-content: flex-start;
  padding-right: calc(50% + 2rem);
}

.workflow__step--right {
  justify-content: flex-end;
  padding-left: calc(50% + 2rem);
}

/* Step icons with different colors */
.workflow__step-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.workflow__step-icon--primary {
  border: 2px solid var(--clr-indigo);
  box-shadow: 0 0 15px rgba(59, 47, 255, 0.5);
  color: var(--clr-indigo);
}

.workflow__step-icon--accent {
  border: 2px solid var(--clr-green);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
  color: var(--clr-green);
}

.workflow__step-icon--white {
  border: 2px solid var(--clr-white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  color: var(--clr-white);
}

/* Step content with border-left */
.workflow__step-content {
  background: var(--clr-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: background var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.workflow__step-content:hover {
  background: var(--clr-card-dark);
}

.workflow__step-content--primary {
  border-left: 4px solid var(--clr-indigo);
}

.workflow__step-content--accent {
  border-left: 4px solid var(--clr-green);
}

.workflow__step-content--white {
  border-left: 4px solid var(--clr-white);
}

.workflow__step-heading {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.workflow__step-desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.workflow__step-desc:last-child {
  margin-bottom: 0;
}

.workflow__step-desc a {
  color: var(--clr-green);
  transition: opacity var(--transition-base);
}

.workflow__step-desc a:hover {
  opacity: 0.8;
}

.workflow__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflow__step-list li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.workflow__step-list li:last-child {
  margin-bottom: 0;
}

.workflow__step-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-green);
  font-weight: 700;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 6rem 0;
}

.faq .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--clr-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--ff-display);
  font-size: var(--fs-body);
  font-weight: 500;
  text-align: left;
  color: var(--clr-white);
  transition: color var(--transition-base);
}

.faq__question:hover {
  color: var(--clr-green);
}

.faq__chevron {
  flex-shrink: 0;
  font-size: 24px;
  transition: transform var(--transition-base);
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ========================================
   CONTACT / CTA
   ======================================== */
.contact {
  padding: 6rem 0;
  background: var(--clr-card);
  position: relative;
  overflow: hidden;
}

.contact__inner {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact__inner:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transition: border-color 0.5s ease;
}

.contact__gradient-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--clr-indigo), var(--clr-green), var(--clr-indigo));
  opacity: 0.5;
}

.contact__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__tg-icon {
  color: var(--clr-green);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact__desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-body);
  letter-spacing: 0.03em;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.contact__tg-btn:hover {
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-body-sm);
}

.footer__logo-svg {
  height: 20px;
  width: auto;
  color: rgba(255, 255, 255, 0.5);
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__socials a {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-body-sm);
  transition: all var(--transition-base);
}

.footer__socials a:hover {
  color: var(--clr-green);
  transform: scale(1.1);
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal--open {
  opacity: 1;
  pointer-events: all;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__content {
  position: relative;
  width: 90vw;
  max-width: 960px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.video-modal--open .video-modal__content {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2;
}

.video-modal__close:hover {
  background: var(--clr-green);
  color: var(--clr-black);
  border-color: var(--clr-green);
}

.video-modal__player {
  position: relative;
  width: 100%;
  padding-bottom: 42.55%;
  /* ~2.35:1 cinematic */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-green);
  color: var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

/* ========================================
   RESPONSIVE — Tablet (768-1199px)
   ======================================== */
@media (max-width: 1199px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }

  .pricing-card--popular {
    transform: translateY(0);
  }

  .pricing-card--popular:hover {
    transform: scale(1.03);
  }

  .workflow__step--left {
    padding-right: calc(50% + 1.5rem);
  }

  .workflow__step--right {
    padding-left: calc(50% + 1.5rem);
  }

}

/* ========================================
   RESPONSIVE — Mobile (<768px)
   ======================================== */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 5;
  }

  .header__nav--open {
    opacity: 1;
    pointer-events: all;
  }

  .header__nav--open .header__link {
    font-size: var(--fs-h3);
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__actions {
    flex-direction: column;
    gap: 2rem;
  }

  .hero__title {
    font-size: clamp(1.4rem, 6vw, 3rem);
    /* Smaller min and vw to fit "МУЗЫКАЛЬНЫЕ" */
    word-break: normal;
    /* Prefer keeping words together */
    padding: 0 0.5rem;
  }

  .hero__subtitle {
    flex-direction: column;
    gap: 0.25rem;
  }

  .features__header {
    flex-direction: column;
  }

  .features__desc {
    text-align: left;
  }

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

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

  .pricing-card:last-child {
    max-width: 100%;
    grid-column: auto;
    margin-inline: 0;
  }

  .pricing-card--popular {
    transform: translateY(0);
  }

  .workflow__timeline::before {
    left: 27px;
  }

  .workflow__step {
    flex-direction: column;
    padding-left: 4.5rem;
    padding-right: 0;
  }

  .workflow__step--left,
  .workflow__step--right {
    padding-left: 4.5rem;
    padding-right: 0;
    justify-content: flex-start;
  }

  .workflow__step-icon {
    left: 27px;
    width: 44px;
    height: 44px;
  }

  .workflow__step-icon .material-symbols-outlined {
    font-size: 20px;
  }

  .faq__question {
    font-size: var(--fs-body-sm);
  }


  .footer__inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__socials {
    flex-direction: column;
    /* Stack links vertically on mobile */
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}