/* ==========================================
   CONTEPTIC FILMS — AWWWARDS "WOW" AESTHETIC
   ========================================== */

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

:root {
  --bg: #050505;
  --text: #FFFFFF;
  --accent: #D4AF37;
  --gray: #888888;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

input,
textarea {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.nav-link:hover::after {
  transform: translateX(0);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: grayscale(20%) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(5, 5, 5, 0.5) 50%, rgba(5, 5, 5, 0.8) 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 2rem;
  overflow: hidden;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 4rem;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Sleek Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.scroll-dot {
  width: 100%;
  height: 50%;
  background: var(--text);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* ==========================================
   SHARED SECTIONS
   ========================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-line {
  height: 1px;
  width: 100%;
  background: var(--glass-border);
  margin-top: 20px;
  transform-origin: left;
}

/* ==========================================
   MOSAIC GRID + VK LIGHTBOX
   ========================================== */
.portfolio {
  padding-bottom: 100px;
}

.portfolio .section-header {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.mosaic-tile {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #111;
}

.mosaic-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.75) grayscale(15%);
}

.mosaic-tile:hover .mosaic-thumb {
  transform: scale(1.06);
  filter: brightness(1) grayscale(0%);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
}

.mosaic-tile:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mosaic-tile:hover .mosaic-play {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--accent);
}

.mosaic-play svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

.mosaic-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 0 10px;
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
}

/* Last tile: link to VK */
.mosaic-tile--vk-link {
  background: linear-gradient(145deg, rgba(15, 15, 15, 1) 0%, rgba(5, 5, 5, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.mosaic-tile--vk-link:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(145deg, rgba(25, 22, 8, 1) 0%, rgba(10, 9, 3, 1) 100%);
}

.mosaic-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.mosaic-more-icon {
  font-size: 2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.mosaic-tile--vk-link:hover .mosaic-more-icon {
  transform: translateY(-4px);
}

.mosaic-more-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

/* VK Lightbox */
.vk-lightbox {
  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;
}

.vk-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.vk-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.vk-lightbox-inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.vk-lightbox.is-open .vk-lightbox-inner {
  transform: scale(1);
}

.vk-lightbox-close {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.vk-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vk-lightbox-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.vk-lightbox-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.vk-lightbox-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive mosaic */
@media (max-width: 1024px) {
  .mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ==========================================
   ABOUT
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  overflow: hidden;
  border-radius: 8px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1);
}

.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

.about-sub-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.about-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-details-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  position: relative;
  padding-left: 25px;
}

.about-details-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}

.about-details-list li strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-right: 4px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 0px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

.about-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-top: 5px;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-flex {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 10px 10px 25px 10px;
  margin: -10px -10px -25px -10px;
}

.price-glass {
  flex: 1;
  background: linear-gradient(145deg, rgba(15, 15, 15, 1) 0%, rgba(5, 5, 5, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.price-glass:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.03);
}

.price-glass--main {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.05);
}

.price-glass--main:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.12);
}

/* Glass spotlight effect */
.price-glass::before,
.extras-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(255, 255, 255, 0.04),
      transparent 80%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.price-glass--main::before {
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(212, 175, 55, 0.06),
      transparent 80%);
}

.price-glass:hover::before,
.extras-item:hover::before {
  opacity: 1;
}

/* Ensure children are styled appropriately to sit above spotlight background */
.price-glass>*,
.extras-item>* {
  position: relative;
  z-index: 1;
}

.price-glass .price-badge {
  position: absolute;
}

/* Popular badge */
.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-tier {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.price-cost {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin: 30px 0 10px 0;
}

.price-note {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 30px;
  min-height: 2.8em;
  /* Чтобы заголовки списков были на одном уровне */
}

.price-list {
  list-style: none;
  color: #aaaaaa;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-list li {
  padding-left: 24px;
  position: relative;
  opacity: 0.8;
}

.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.price-list-bonus {
  color: var(--text);
  font-weight: 500;
  margin-top: 8px;
}

.price-list-bonus::before {
  content: '' !important;
  display: none;
}

/* ==========================================
   COMBO TOGGLE BUTTON & PRICING
   ========================================== */
.pricing-toggle-wrap {
  margin: 50px auto 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

.btn-combo-toggle {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 18px 36px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.05);
  max-width: 650px;
  width: 100%;
}

.btn-combo-toggle:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.15);
  background: linear-gradient(135deg, rgba(30, 26, 12, 0.95) 0%, rgba(18, 16, 8, 0.95) 100%);
}

.combo-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.combo-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.combo-btn-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s ease;
}

.btn-combo-toggle:hover .combo-btn-text {
  color: var(--accent);
}

.combo-btn-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-weight: 600;
}

.combo-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-combo-toggle.is-active .combo-btn-arrow {
  transform: rotate(180deg);
}

.combo-btn-sub {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-align: center;
}

/* Collapsible container */
.combo-pricing-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, margin 0.5s ease;
  margin-top: 0;
  margin-bottom: 0;
}

.combo-pricing-wrap.is-open {
  max-height: 4000px;
  opacity: 1;
  margin-top: 60px;
  margin-bottom: 30px;
}

.combo-pricing-inner {
  padding-top: 20px;
  padding-bottom: 30px;
}

.combo-header {
  text-align: center;
  margin-bottom: 45px;
}

.combo-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.combo-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
}

.combo-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
}

.combo-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.price-duration-badge {
  font-size: 0.8rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.combo-category {
  margin-top: 18px;
}

.combo-cat-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.combo-list {
  margin-top: 0;
  gap: 8px;
  font-size: 0.9rem;
}

.combo-list li {
  line-height: 1.6;
}

/* Extras / Additional Services */
.extras {
  margin-top: 80px;
  padding-top: 60px;
}

.extras-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 40px;
  text-align: center;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 10px 10px 25px 10px;
  margin: -10px -10px -25px -10px;
}

.extras-item {
  padding: 50px 30px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(15, 15, 15, 1) 0%, rgba(5, 5, 5, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.extras-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.extras-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.extras-detail {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}

.extras-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
  margin-top: 15px;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact-huge {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* More visible glass form container */
.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 80px 60px;
  border-radius: 4px;
  /* Back to more strict sharp edges for premium feel */
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.c-input-wrap {
  margin-bottom: 60px;
  position: relative;
}

.c-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
  color: var(--text);
  font-size: 1.1rem;
  transition: border-color 0.4s;
  font-family: var(--font-body);
}

.c-label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Floating effect */
.c-input:focus~.c-label,
.c-input:valid~.c-label {
  top: -25px;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

/* Animated line */
.c-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.c-input:focus~.c-line {
  width: 100%;
}

.btn--form {
  width: 100%;
  padding: 22px;
  border-radius: 0;
  /* Strict cinematic style */
  background: transparent;
  color: var(--text);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  transition: all 0.4s ease;
}

.btn--form:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

textarea.c-input {
  resize: none;
  min-height: 44px;
  overflow-y: hidden;
}

/* Select button in pricing card */
.btn--price {
  width: 100%;
  padding: 14px 28px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 500;
}

.btn--price:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.price-glass--main .btn--price {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
  color: var(--accent);
}

.price-glass--main .btn--price:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Package select chips */
.c-package-section {
  margin-top: 40px;
  margin-bottom: 30px;
}

.c-package-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}

.c-package-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-package-chip {
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-package-chip:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.c-package-chip.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

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

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

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.footer-socials a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .pricing-flex {
    flex-direction: column;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .portfolio {
    padding-bottom: 100px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .video-card:nth-child(2) {
    transform: none;
  }

  .video-card:blank,
  .video-card:nth-child(1) .video-thumb-wrap,
  .video-card:nth-child(2) .video-thumb-wrap {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .footer-flex {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-stats {
    gap: 30px;
  }

  .about-lead {
    font-size: 1.35rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 11vw, 5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.2rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .price-glass {
    padding: 40px 24px;
    border-radius: 12px;
  }

  .price-cost {
    font-size: 2.5rem;
    margin: 20px 0 8px 0;
  }

  .btn-combo-toggle {
    padding: 16px 20px;
  }

  .combo-btn-inner {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .combo-btn-text {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .combo-title {
    font-size: 1.6rem;
  }

  .combo-subtitle {
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 40px 20px;
    border-radius: 12px;
  }

  .contact-huge {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .c-input-wrap {
    margin-bottom: 40px;
  }

  .c-package-group {
    gap: 8px;
  }

  .c-package-chip {
    padding: 10px 14px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .price-glass {
    padding: 32px 18px;
  }

  .price-cost {
    font-size: 2.2rem;
  }

  .contact-form-container {
    padding: 32px 16px;
  }
}

/* Lenis smooth scroll styling */
html.lenis {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

/* ==========================================
   FLOATING CONTACT BUTTON
   ========================================== */
.float-contact {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease;
}

.float-trigger::before,
.float-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: floatPulse 2.4s ease-out infinite;
}

.float-trigger::after {
  animation-delay: 1.2s;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.float-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.float-trigger svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.float-trigger-icon {
  position: absolute;
  display: flex;
}

.float-trigger-icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.float-trigger-icon--open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.float-contact.is-open .float-trigger-icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.float-contact.is-open .float-trigger-icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.float-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  pointer-events: none;
}

.float-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateX(20px) scale(0.92);
}

.float-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.float-item-icon svg {
  width: 18px;
  height: 18px;
}

.float-item:hover {
  transform: translateX(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.float-item:hover .float-item-icon {
  transform: scale(1.1);
}

.float-item--phone .float-item-icon {
  background: rgba(255, 255, 255, 0.1);
}

.float-item--phone:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.float-item--max .float-item-icon {
  background: rgba(70, 130, 230, 0.2);
  color: #4682E6;
}

.float-item--max:hover {
  border-color: rgba(70, 130, 230, 0.5);
  background: rgba(70, 130, 230, 0.08);
}

.float-item--tg .float-item-icon {
  background: rgba(41, 182, 246, 0.15);
  color: #29B6F6;
}

.float-item--tg:hover {
  border-color: rgba(41, 182, 246, 0.4);
  background: rgba(41, 182, 246, 0.08);
}

.float-item--wa .float-item-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.float-item--wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.08);
}

.float-contact.is-open .float-menu {
  pointer-events: all;
}

.float-contact.is-open .float-item {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.float-contact.is-open .float-item:nth-child(1) {
  transition-delay: 0s;
}

.float-contact.is-open .float-item:nth-child(2) {
  transition-delay: 0.06s;
}

.float-contact.is-open .float-item:nth-child(3) {
  transition-delay: 0.12s;
}

.float-contact.is-open .float-item:nth-child(4) {
  transition-delay: 0.18s;
}

@media (max-width: 600px) {
  .float-contact {
    bottom: 24px;
    right: 20px;
  }

  .float-trigger {
    width: 54px;
    height: 54px;
  }
}