/* =========================
   KINOROOM MULTI SITE
   ========================= */

:root {
  --bg: #070707;
  --bg-2: #111111;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);

  --accent: #ffb000;
  --accent-2: #ff7a00;

  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* =========================
   HEADER
   ========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;

  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.92),
      rgba(5, 5, 5, 0.45),
      transparent
    );

  backdrop-filter: blur(8px);
}

.logo {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: #ffffff;
  text-align: center;

  text-shadow:
    0 0 6px rgba(255, 255, 255, 1),
    0 0 14px rgba(255, 255, 255, 0.9),
    0 0 28px rgba(255, 255, 255, 0.65),
    0 0 52px rgba(255, 176, 0, 0.42);

  animation: neonPulse 3.8s ease-in-out infinite;
}

/* =========================
   MAIN BACKGROUND
   ========================= */

.site-page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 72% 8%,
      rgba(255, 176, 0, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 16% 42%,
      rgba(255, 255, 255, 0.08),
      transparent 22%
    ),
    linear-gradient(
      135deg,
      #050505 0%,
      #111111 48%,
      #050505 100%
    );
}

.page-wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

/* =========================
   HOME PAGE
   ========================= */

.home {
  min-height: 100vh;
  padding: 88px 22px 42px;

  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(255, 176, 0, 0.16),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #050505,
      #111111,
      #050505
    );
}

.home__logo {
  text-align: center;
  margin-bottom: 54px;
}

.home__title {
  max-width: 920px;
  margin: 0 auto 18px;

  text-align: center;

  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.home__subtitle {
  max-width: 710px;
  margin: 0 auto 46px;

  text-align: center;

  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.home__cards {
  max-width: 1160px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 340px;
  overflow: hidden;

  border-radius: 34px;
  border: 1px solid var(--border);

  background: #151515;
  color: #ffffff;
  text-decoration: none;

  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.65),
    0 0 34px rgba(255, 176, 0, 0.17);
}

.service-card::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.14)
    );
}

.service-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.8s ease;
}

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

.service-card__content {
  position: relative;
  z-index: 2;

  min-height: 340px;
  padding: 26px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card h2 {
  margin: 0 0 12px;

  font-size: 30px;
}

.service-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.74);
  line-height: 1.48;
}

/* =========================
   LANDING PAGE HERO
   ========================= */

.hero {
  min-height: calc(100vh - 78px);
  padding: 18px 0 64px;

  display: grid;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.hero__content {
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  display: inline-flex;

  margin: 0 0 16px;
  padding: 8px 13px;

  border: 1px solid var(--border);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);

  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;

  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 570px;
  margin: 24px 0 0;

  color: var(--muted);

  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.52;
}

.price {
  margin: 26px 0 0;

  font-size: clamp(25px, 2.45vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 290px;
  margin-top: 24px;
  padding: 21px 38px;

  border: 0;
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    );

  color: #111111;
  text-decoration: none;

  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  box-shadow:
    0 18px 50px rgba(255, 122, 0, 0.36),
    0 0 26px rgba(255, 176, 0, 0.42);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.cta:hover {
  transform: translateY(-4px) scale(1.035);
  filter: brightness(1.07);

  box-shadow:
    0 26px 72px rgba(255, 122, 0, 0.48),
    0 0 42px rgba(255, 176, 0, 0.58);
}

.photo-hero {
  position: relative;

  height: min(64vh, 610px);
  min-height: 430px;
  overflow: hidden;

  border-radius: 38px;
  border: 1px solid var(--border);

  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.6),
    0 0 38px rgba(255, 176, 0, 0.12);

  animation:
    fadeUp 0.9s 0.1s ease both,
    softFloat 7s ease-in-out infinite;
}

.photo-hero::after,
.wide-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.58),
      transparent 44%
    ),
    radial-gradient(
      circle at 72% 15%,
      rgba(255, 176, 0, 0.16),
      transparent 28%
    );

  pointer-events: none;
}

.photo-hero img,
.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   PHOTO / MEANING BLOCKS
   ========================= */

.section {
  padding: 62px 0;
}

.section--tight {
  padding-top: 24px;
}

.wide-photo {
  position: relative;

  height: clamp(280px, 44vw, 520px);
  overflow: hidden;

  border-radius: 38px;
  border: 1px solid var(--border);

  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.56);

  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.wide-photo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-card {
  position: relative;

  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;

  border-radius: 38px;
  border: 1px solid var(--border);

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 176, 0, 0.1),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.055);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.content-card h2 {
  margin: 0 0 24px;

  font-size: clamp(31px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.content-card p {
  margin: 0;

  color: var(--muted);

  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;

  margin-top: 26px;
}

.benefit {
  padding: 16px 17px;

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);

  font-size: 17px;
  line-height: 1.35;
}

.steps {
  display: grid;
  gap: 13px;

  margin-top: 24px;
}

.step {
  padding: 17px 18px;

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;
  line-height: 1.4;
}

/* =========================
   FINAL CTA
   ========================= */

.final-cta {
  padding: clamp(34px, 6vw, 68px);

  border-radius: 42px;
  border: 1px solid rgba(255, 176, 0, 0.25);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 176, 0, 0.2),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.035)
    );

  text-align: center;

  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.52),
    0 0 36px rgba(255, 176, 0, 0.12);
}

.final-cta h2 {
  margin: 0;

  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.final-cta p {
  max-width: 620px;
  margin: 18px auto 0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.5;
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;

    text-shadow:
      0 0 8px rgba(255, 255, 255, 1),
      0 0 18px rgba(255, 255, 255, 1),
      0 0 38px rgba(255, 255, 255, 0.78),
      0 0 70px rgba(255, 176, 0, 0.48);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.012);
  }
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 980px) {
  .home__cards {
    max-width: 540px;

    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

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

  .hero__content {
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .photo-hero {
    height: 440px;
    min-height: 0;
  }

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

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px) {
  .header {
    min-height: 68px;
  }

  .logo {
    font-size: 21px;
    letter-spacing: 0.22em;
  }

  .page-wrap {
    width: min(100% - 28px, 520px);
  }

  .home {
    padding: 76px 16px 32px;
  }

  .home__title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .home__subtitle {
    margin-bottom: 28px;

    font-size: 15px;
  }

  .service-card {
    min-height: 255px;

    border-radius: 26px;
  }

  .service-card__content {
    min-height: 255px;
    padding: 20px;
  }

  .hero {
    padding: 12px 0 44px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .price {
    font-size: 25px;
  }

  .cta {
    width: 100%;
    min-width: 0;
    padding: 20px 24px;

    font-size: 18px;
  }

  .photo-hero {
    height: 320px;

    border-radius: 28px;

    animation: fadeUp 0.9s 0.1s ease both;
  }

  .section {
    padding: 34px 0;
  }

  .wide-photo {
    height: 285px;

    border-radius: 28px;
  }

  .content-card {
    border-radius: 28px;
  }

  .content-card h2 {
    font-size: clamp(31px, 10vw, 46px);
  }

  .content-card p {
    font-size: 16px;
  }

  .benefit,
  .step {
    border-radius: 18px;

    font-size: 16px;
  }

  .final-cta {
    border-radius: 30px;
  }

  .final-cta h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .final-cta p {
    font-size: 16px;
  }
}


/* =========================
   BUTTON FIX / COMPATIBILITY
   Эти стили делают красивыми и .cta, и .button
   ========================= */

.cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 290px;
  margin-top: 24px;
  padding: 21px 38px;

  border: 0;
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    );

  color: #111111 !important;
  text-decoration: none !important;

  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  box-shadow:
    0 18px 50px rgba(255, 122, 0, 0.36),
    0 0 26px rgba(255, 176, 0, 0.42);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.cta:hover,
.button:hover {
  transform: translateY(-4px) scale(1.035);
  filter: brightness(1.07);

  box-shadow:
    0 26px 72px rgba(255, 122, 0, 0.48),
    0 0 42px rgba(255, 176, 0, 0.58);
}

@media (max-width: 640px) {
  .cta,
  .button {
    width: 100%;
    min-width: 0;
    padding: 20px 24px;

    font-size: 18px;
  }
}
