@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Design Tokens */
  --bg-light: #f6f5fa;
  --bg-card: #ffffff;
  --bg-dark: #080b16;
  
  --accent-violet: #7928ca;
  --accent-pink: #ff007f;
  --accent-gold: #e5c158;
  
  --text-dark: #181424;
  --text-sec: #5c556b;
  --text-muted: #8d859e;
  
  /* Shadows & Glows */
  --shadow-soft: 0 15px 40px rgba(121, 40, 202, 0.08);
  --shadow-card: 0 8px 30px rgba(56, 38, 12, 0.04);
  --glow-violet: 0 0 25px rgba(121, 40, 202, 0.4);
  --glow-pink: 0 0 25px rgba(255, 0, 127, 0.4);
  
  --font-sans: 'Manrope', sans-serif;
  --font-display: 'Manrope', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px !important;
  }
}

/* Typography Utilities */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
}

/* Glassmorphism Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 245, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(121, 40, 202, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text-sec);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent-violet);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 8px;
  background: rgba(121, 40, 202, 0.05);
  padding: 4px;
  border-radius: 20px;
  border: 1px solid rgba(121, 40, 202, 0.08);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-sec);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(121, 40, 202, 0.2);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--text-dark);
}

/* Animated Glow Mesh Background */
.hero-glow {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: -100px -200px -140px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 calc(100% - 140px), rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(#000 calc(100% - 140px), rgba(0,0,0,0) 100%);
}

.hero-glow-inner {
  position: absolute;
  inset: 100px 200px 140px;
}

.hero-glow-blob {
  will-change: transform, opacity;
  position: absolute;
  filter: blur(140px);
  border-radius: 50%;
  opacity: 0.12; /* Keep it soft and not screaming */
}

.hero-glow-blob--violet {
  background: radial-gradient(50% 50%, rgba(121, 40, 202, 0.6) 0%, rgba(121, 40, 202, 0) 100%);
  width: 70vw;
  height: 450px;
  top: -50px;
  left: -20vw;
  animation: hero-glow-float-blue 16s infinite alternate ease-in-out;
}

.hero-glow-blob--gold {
  background: radial-gradient(50% 50%, rgba(229, 193, 88, 0.5) 0%, rgba(229, 193, 88, 0) 100%);
  width: 60vw;
  height: 500px;
  top: 150px;
  left: 20vw;
  animation: hero-glow-float-lavender 19s infinite alternate ease-in-out;
}

.hero-glow-blob--pink {
  background: radial-gradient(50% 50%, rgba(255, 0, 127, 0.5) 0%, rgba(255, 0, 127, 0) 100%);
  width: 65vw;
  height: 550px;
  top: -100px;
  right: -15vw;
  animation: hero-glow-float-pink 13s infinite alternate ease-in-out;
}

/* Animations for Glow Mesh */
@keyframes hero-glow-float-blue {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, -5%) scale(1.15); }
}
@keyframes hero-glow-float-lavender {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.1); }
}
@keyframes hero-glow-float-pink {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 5%) scale(1.12); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--accent-pink);
  display: inline-block;
  background: rgba(255, 0, 127, 0.06);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 0, 127, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.hero-tagline:hover {
  animation: gentleWiggle 1.5s ease-in-out infinite alternate;
  color: var(--accent-violet);
  background: rgba(121, 40, 202, 0.06);
  border: 1px solid rgba(121, 40, 202, 0.15);
  transform: translateY(-2px) scale(1.02);
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: -0.8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.hero-title:hover {
  animation: gentleWiggle 1.5s ease-in-out infinite alternate;
  transform: translateY(-3px) scale(1.01);
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc, .hero-desc-sub {
  color: var(--text-dark) !important;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 540px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
  cursor: default;
}

.hero-desc {
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-desc-sub {
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-desc-sub:last-of-type {
  margin-bottom: 35px;
}

.hero-desc:hover, .hero-desc-sub:hover {
  animation: gentleWiggle 1.5s ease-in-out infinite alternate;
  color: var(--accent-violet) !important;
  transform: translateY(-3px) scale(1.01);
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 35px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(121, 40, 202, 0.25);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(121, 40, 202, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 35px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid rgba(121, 40, 202, 0.2);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent-violet);
  background: rgba(121, 40, 202, 0.03);
}

/* Visual Collage & Floating Labels */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.model-showcase-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1.1;
}

.model-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(121, 40, 202, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.model-photo:hover {
  animation: gentleWiggle 2s ease-in-out infinite alternate;
  box-shadow: 0 25px 50px rgba(121, 40, 202, 0.3);
  border: 1px solid rgba(255, 0, 127, 0.4);
  cursor: pointer;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e1b29;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 5s ease-in-out infinite;
}

.floating-badge span {
  font-size: 1.15rem;
}

.floating-badge.b-1 {
  top: 15%;
  left: -10%;
  --rotate: 6deg;
  animation-delay: 0s;
  border: 1.5px solid rgba(121, 40, 202, 0.3);
  box-shadow: 0 8px 24px rgba(121, 40, 202, 0.15);
}

.floating-badge.b-2 {
  bottom: 20%;
  right: -5%;
  --rotate: -8deg;
  animation-delay: 1.5s;
  border: 1.5px solid rgba(229, 193, 88, 0.4);
  box-shadow: 0 8px 24px rgba(229, 193, 88, 0.15);
}

.floating-badge.b-3 {
  top: 60%;
  left: -8%;
  --rotate: -4deg;
  animation-delay: 0.7s;
  border: 1.5px solid rgba(255, 0, 127, 0.3);
  box-shadow: 0 8px 24px rgba(255, 0, 127, 0.15);
}

.floating-badge:hover {
  animation-play-state: paused;
  transform: scale(1.1) translateY(-10px) rotate(calc(var(--rotate) * 1.3)) !important;
  box-shadow: 0 15px 30px rgba(121, 40, 202, 0.25);
  cursor: pointer;
}

.floating-badge.b-2:hover {
  box-shadow: 0 15px 30px rgba(229, 193, 88, 0.25);
}

.floating-badge.b-3:hover {
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.25);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-12px) rotate(calc(var(--rotate, 0deg) + 2deg));
  }
}

/* Fireworks Particle Effects */
.firework-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 15;
  animation: particle-burst 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes particle-burst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0.2);
    opacity: 0;
  }
}

@keyframes gentleWiggle {
  0%, 100% { transform: scale(1.02) rotate(0.5deg); }
  50% { transform: scale(1.02) rotate(-0.5deg); }
}

/* Mobile Responsiveness for Header & Hero */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 15px !important;
    padding-bottom: 10px !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding: 0 10px !important;
  }
  .hero-content {
    margin: 0 auto;
    padding: 0 10px !important;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
    padding: 0 10px !important;
    box-sizing: border-box;
    width: 100%;
  }
  .model-showcase-container {
    max-width: 365px !important;
    margin: 25px auto 0 auto !important;
    width: 100%;
    padding: 0 !important;
    box-sizing: border-box;
  }
  .floating-badge.b-1 {
    top: -45px !important;
    left: 4% !important;
  }
  .floating-badge.b-2 {
    right: 4% !important;
  }
  .floating-badge.b-3 {
    left: 4% !important;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* We will add a mobile menu overlay later */
  }
  .hero-video-bg video {
    opacity: 0.5; /* Display background video with 50% opacity on mobile */
  }
  .hero-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(121, 40, 202, 0.03) 70%, rgba(255, 0, 127, 0.03) 100%);
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  .lang-btn {
    padding: 6px 8px !important;
    font-size: 0.7rem !important;
  }
  .lang-switcher {
    gap: 4px !important;
  }

}

/* Conditions Section */
.conditions-section {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid rgba(121, 40, 202, 0.05);
  overflow: hidden;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.8px;
}

.section-title span {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conditions-slider-wrapper {
  position: relative;
  width: 100%;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .conditions-slider-wrapper {
    overflow: visible;
    padding: 10px 0;
    margin: 0;
  }
  .conditions-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }
  .condition-card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
}

.condition-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  border: 1.5px solid rgba(121, 40, 202, 0.08);
  box-shadow: 0 10px 30px rgba(8, 11, 22, 0.02);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-pink));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(121, 40, 202, 0.18);
  box-shadow: 0 20px 40px rgba(121, 40, 202, 0.08), 0 5px 15px rgba(255, 0, 127, 0.03);
}

.condition-card:hover::before {
  opacity: 1;
}

.condition-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.07) 0%, rgba(255, 0, 127, 0.07) 100%);
  border: 1.5px solid rgba(121, 40, 202, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(121, 40, 202, 0.04);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.condition-card:hover .condition-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.12) 0%, rgba(255, 0, 127, 0.12) 100%);
  border-color: rgba(121, 40, 202, 0.25);
}

.condition-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.condition-card p {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* Nested Apartments Gallery inside Promo Page */
.apartments-block {
  margin-top: 50px;
  background: var(--bg-light);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(121, 40, 202, 0.06);
  overflow: hidden;
}

.apartments-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

.apartments-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.8px;
  text-align: center;
  width: 100%;
}

.apartments-header .slider-controls {
  position: absolute;
  right: 0;
}

.apartments-header h3 span {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-controls {
  display: none !important;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(121, 40, 202, 0.15);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-violet);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent-violet);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(121, 40, 202, 0.2);
}

.apartments-slider-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.apartments-slider {
  display: flex;
  transition: none !important;
  gap: 20px;
}

.slide-item {
  min-width: calc(33.333% - 13.333px);
  aspect-ratio: 16 / 10;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.slide-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .slider-controls {
    display: none !important;
  }
  .apartments-slider-wrapper {
    overflow: hidden !important;
    padding: 10px 5px;
    margin: 0;
  }
  .apartments-slider {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: max-content !important;
  }
  .slide-item {
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
    display: block !important;
  }
}

/* Calculator Section */
.calculator-section {
  padding: 50px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(121, 40, 202, 0.05);
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  background: #ffffff;
  border-radius: 35px;
  padding: 50px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(121, 40, 202, 0.05);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.calc-group-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-group-title span {
  font-family: var(--font-sans);
  color: var(--accent-pink);
  font-weight: 700;
}

/* Experience Toggle */
.experience-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 320px;
}

.toggle-btn {
  background: var(--bg-light);
  border: 1px solid rgba(121, 40, 202, 0.06);
  padding: 12px 18px;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-sec);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.toggle-btn:hover {
  border-color: rgba(121, 40, 202, 0.2);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(121, 40, 202, 0.15);
}

/* English Levels Selector */
.english-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.english-btn {
  background: var(--bg-light);
  border: 1px solid rgba(121, 40, 202, 0.06);
  padding: 12px 8px;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-sec);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.english-btn:hover {
  border-color: rgba(121, 40, 202, 0.2);
}

.english-btn.active {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(121, 40, 202, 0.15);
}

/* Custom Range Input Slider */
.range-container {
  position: relative;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(121, 40, 202, 0.08);
  outline: none;
  margin: 15px 0;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(229, 193, 88, 0.4);
  transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--accent-pink);
  box-shadow: 0 4px 10px rgba(255, 0, 127, 0.4);
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-sec);
  line-height: 1.45;
  margin-top: 15px;
}

/* Result Box Display Card */
.calc-result-card {
  background: var(--bg-dark);
  border-radius: 30px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(8, 11, 22, 0.15);
  position: relative;
}

.calc-result-card::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 120px;
  height: 120px;
  background: var(--accent-violet);
  filter: blur(50px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.result-header {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.result-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: 5px;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #ffffff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Form capturing Leads */
.calc-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-field {
  width: 100%;
  background: rgba(24, 20, 36, 0.02);
  border: 1.5px solid rgba(24, 20, 36, 0.08);
  padding: 14px 20px;
  border-radius: 16px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.input-field::placeholder {
  color: rgba(24, 20, 36, 0.5);
}

.input-field:focus {
  border-color: var(--accent-violet);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(121, 40, 202, 0.08);
}

/* Overrides for inputs inside the dark result card */
.calc-result-card .input-field {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.calc-result-card .input-field::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.calc-result-card .input-field:focus {
  border-color: var(--accent-violet) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 15px rgba(121, 40, 202, 0.3) !important;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 35px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(121, 40, 202, 0.3);
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(121, 40, 202, 0.4);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 5px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .calc-grid {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 40px;
  }
}

/* Proofs Section */
.proofs-section {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid rgba(121, 40, 202, 0.05);
}

.proofs-slider-wrapper {
  overflow: hidden !important;
  position: relative;
  width: 100%;
}

.proofs-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  transition: none !important;
  width: max-content !important;
  margin-bottom: 30px !important;
}

.proof-card {
  min-width: 300px !important;
  width: 300px !important;
  max-width: 300px !important;
  box-sizing: border-box;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .proofs-slider-wrapper {
    overflow: hidden !important;
    padding: 10px 5px !important;
    margin: 0 !important;
  }
  .proofs-grid {
    gap: 15px !important;
  }
  .proof-card {
    min-width: 170px !important;
    width: 170px !important;
    max-width: 170px !important;
    margin: 0 !important;
    padding: 10px 8px !important;
    border-radius: 18px !important;
  }
  .proof-card h4 {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
  }
  .proof-card p {
    font-size: 0.72rem !important;
  }
}

.proof-card {
  background: var(--bg-light);
  border-radius: 25px;
  padding: 15px 12px;
  border: 1px solid rgba(121, 40, 202, 0.05);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(121, 40, 202, 0.15);
}

.proof-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.proof-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.proof-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(121, 40, 202, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 8px;
  pointer-events: none;
}

.proof-thumbnail-wrapper:hover .proof-overlay {
  opacity: 1;
}

.proof-thumbnail-wrapper:hover img {
  transform: scale(1.05);
}

.proof-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
  line-height: 1.3;
}

.proof-card p {
  font-size: 0.75rem;
  color: var(--text-sec);
  line-height: 1.5;
}
/* Modal Window for Zooming Receipts */
.receipt-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 11, 22, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.receipt-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: var(--transition);
}

.receipt-modal.active .modal-content-wrapper {
  transform: scale(1);
}

.modal-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.modal-close-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-pink);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
  transition: var(--transition);
}

.modal-close-btn:hover {
  transform: scale(1.1);
  background: var(--accent-violet);
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.3);
}

/* Map Section */
.map-section {
  padding: 50px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(121, 40, 202, 0.05);
}

.map-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.map-info h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.map-info p {
  color: var(--text-sec);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.map-detail-icon {
  font-size: 1.4rem;
  background: rgba(121, 40, 202, 0.06);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-violet);
  flex-shrink: 0;
}

.map-detail-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.map-detail-text p {
  font-size: 0.85rem;
  color: var(--text-sec);
  margin: 0;
}

.map-container {
  border-radius: 30px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(121, 40, 202, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991px) {
  .map-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-container {
    height: 300px;
  }
}

/* Compare Section */
.compare-section {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid rgba(121, 40, 202, 0.05);
}

.compare-list-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.compare-card-new {
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-light);
  box-sizing: border-box;
}

.compare-card-new.no-altair {
  border-color: rgba(255, 0, 0, 0.05);
  transition: all 0.3s ease;
}

@keyframes shiver {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-3px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 2px) rotate(1deg); }
  30% { transform: translate(3px, -2px) rotate(-1deg); }
  40% { transform: translate(-3px, 2px) rotate(1deg); }
  50% { transform: translate(3px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, -2px) rotate(1deg); }
  70% { transform: translate(3px, 2px) rotate(-1deg); }
  80% { transform: translate(-3px, -2px) rotate(-1deg); }
  90% { transform: translate(3px, 2px) rotate(1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.compare-card-new.no-altair:hover {
  animation: shiver 0.3s infinite ease-in-out;
  border-color: rgba(255, 0, 0, 0.2);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.05);
}

.compare-card-new.with-altair {
  background: linear-gradient(135deg, #ffffff, #fafafa, #f2f2f7) padding-box,
              linear-gradient(135deg, #d4af37 0%, #f9e8a2 30%, #aa7c11 70%, #f9e8a2 100%) border-box;
  color: #1d1d1f;
  border: 2.5px solid transparent;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.09), 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.compare-card-new.with-altair:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15), 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* Stars Decoration */
.star-decor {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.star-1 { top: 15px; right: 20px; }
.star-2 { bottom: 25px; left: 15px; }
.star-3 { top: 50%; right: 15px; }

.compare-card-new.with-altair:hover .star-decor {
  opacity: 1;
  transform: scale(1.3) rotate(144deg);
  animation: star-sparkle 1.5s ease-in-out infinite alternate;
}

@keyframes star-sparkle {
  0% { transform: scale(1.3) rotate(144deg); filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.6)); }
  100% { transform: scale(1.4) rotate(180deg); filter: drop-shadow(0 0 8px rgba(212, 175, 55, 1)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.8)); }
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.compare-status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.no-altair .compare-status-badge {
  background: rgba(255, 0, 0, 0.08);
  color: #ff3b30;
}

.with-altair .compare-status-badge {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
  color: #334155;
  border: 1px solid #cbd5e1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.compare-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.no-altair .compare-list li {
  color: var(--text-sec);
}

.with-altair .compare-list li {
  color: #3a3a3c;
  font-weight: 550;
}

.compare-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Video Reviews Section */
.reviews-section {
  padding: 50px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(121, 40, 202, 0.05);
}

/* Reviews Slider Styles */
.reviews-slider-wrapper {
  overflow: hidden !important;
  position: relative;
  width: 100%;
}

.reviews-list-new {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  transition: none !important;
  width: max-content !important;
  margin-bottom: 30px !important;
}

.review-video-card-new {
  min-width: 285px !important;
  width: 285px !important;
  max-width: 285px !important;
  box-sizing: border-box;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(121, 40, 202, 0.05);
  transition: var(--transition);
}

.review-video-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(121, 40, 202, 0.15);
}

@media (max-width: 991px) {
  .reviews-slider-wrapper {
    overflow: hidden !important;
    padding: 10px 5px !important;
    margin: 0 !important;
  }
  .reviews-list-new {
    gap: 15px !important;
  }
  .review-video-card-new {
    min-width: 210px !important;
    width: 210px !important;
    max-width: 210px !important;
    margin: 0 !important;
  }
}



.video-thumbnail-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
}

.video-thumbnail-container img,
.video-thumbnail-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.blurred-model-face {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transform: scale(1.05);
}

.play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.4);
  transition: var(--transition);
  z-index: 2;
  border: 2px solid #ffffff;
}

.video-thumbnail-container:hover .play-video-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(121, 40, 202, 0.6);
}

.face-blur-spot {
  position: absolute;
  top: 10%;
  left: 38%;
  width: 24%;
  height: 42%;
  border-radius: 50%;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-meta {
  padding: 25px;
}

.review-meta h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.review-meta p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .compare-slider-wrapper {
    overflow: hidden !important;
    padding: 10px 5px !important;
    margin: 0 !important;
  }
  .compare-list-new {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    transition: none !important;
    width: max-content !important;
    margin-top: 20px !important;
  }
  .compare-card-new {
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
    padding: 30px 20px !important;
  }
}

/* FAQ Section */
.faq-section {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid rgba(121, 40, 202, 0.05);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: 20px;
  background: var(--bg-light);
  border: 1px solid rgba(121, 40, 202, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

/* Reveal-left animation for FAQ items */
.faq-item.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.faq-trigger:hover {
  color: var(--accent-violet);
}

.faq-icon-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  color: var(--accent-violet);
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(121, 40, 202, 0.15);
  flex-shrink: 0;
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--accent-violet);
  color: #ffffff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(255, 255, 255, 0.4);
}

.faq-content-inner {
  padding: 0 30px 24px 30px;
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* Call Request Section */
.call-section {
  padding: 40px 0;
  background: #ffffff;
  color: var(--text-dark);
  border-top: 1px solid rgba(24, 20, 36, 0.08);
  border-bottom: 1px solid rgba(24, 20, 36, 0.08);
  position: relative;
  overflow: hidden;
}

.call-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: var(--accent-pink);
  filter: blur(80px);
  opacity: 0.05;
  pointer-events: none;
}

.call-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid rgba(121, 40, 202, 0.08);
  border-radius: 35px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 45px rgba(121, 40, 202, 0.04);
}

.call-info h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.call-info p {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.call-form-inline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Footer Section */
footer {
  background: #ffffff;
  color: var(--text-dark);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(24, 20, 36, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand h4 span {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.5;
}

.footer-links h5, .footer-contacts h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-dark);
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  color: var(--text-dark);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--accent-violet);
  opacity: 1;
  padding-left: 5px;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.85;
}

.footer-contact-item a {
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(24, 20, 36, 0.08);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dark);
  opacity: 0.75;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text-dark);
  opacity: 0.75;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--accent-violet);
  opacity: 1;
}

@media (max-width: 991px) {
  .call-wrapper {
    grid-template-columns: 1fr;
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Interior Compare Slider Section */
.interior-compare-section {
  padding: 50px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(121, 40, 202, 0.05);
  border-bottom: 1px solid rgba(121, 40, 202, 0.05);
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  margin: 40px auto 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(8, 11, 22, 0.08);
  border: 1.5px solid rgba(121, 40, 202, 0.08);
  user-select: none;
  -webkit-user-select: none;
  background: #000000;
}

.slider-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.before-layer {
  z-index: 1;
}

.after-layer {
  z-index: 2;
  width: 50%; /* Stays 50% by default, controlled via JS */
  border-right: 3px solid #ffffff;
}

/* Image in clipped container needs dynamic absolute width adjustment via JS to match container */
.slider-container .after-layer img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.slider-label {
  position: absolute;
  bottom: 25px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  z-index: 4;
  pointer-events: none;
}

.label-left {
  left: 25px;
  background: rgba(8, 11, 22, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.label-right {
  right: 25px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.35);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #ffffff;
  z-index: 5;
  transform: translateX(-50%);
  cursor: ew-resize;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.handle-line {
  width: 2px;
  height: 35%;
  background: rgba(255, 255, 255, 0.6);
}

.handle-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent-violet);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3.5px solid var(--accent-violet);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  gap: 2px;
}

.slider-container:hover .handle-button {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .slider-container {
    aspect-ratio: 16 / 11;
  }
  .slider-label {
    font-size: 0.75rem;
    padding: 6px 14px;
    bottom: 15px;
  }
  .label-left { left: 15px; }
  .label-right { right: 15px; }
  .handle-button {
    width: 44px;
    height: 44px;
  }
}

/* Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c554 0%, #c9a03b 100%); /* Premium golden gradient */
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(201, 160, 59, 0.45);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.8);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.back-to-top-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 160, 59, 0.65);
  background: linear-gradient(135deg, #c9a03b 0%, #f0c554 100%); /* Inverted hover effect */
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Why Altair Section (Premium Light) */
.why-altair-section {
  padding: 50px 0;
  background-color: #ffffff;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(24, 20, 36, 0.08);
}

.why-altair-section .section-title {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-altair-section .section-subtitle {
  text-align: center;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 1.1rem;
  margin-bottom: 50px;
  font-weight: 500;
}

.why-altair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(121, 40, 202, 0.08);
  border-radius: 24px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(121, 40, 202, 0.03);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.05), rgba(255, 0, 127, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.why-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 127, 0.4);
  box-shadow: 0 15px 35px rgba(121, 40, 202, 0.1), 0 0 15px rgba(255, 0, 127, 0.05);
  background: #ffffff;
}

.why-card:hover::before {
  opacity: 1;
}

/* Reveal-left animation for why cards */
.why-card.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .why-card {
    width: 280px !important;
    max-width: 280px !important;
    margin: 0 auto 5px auto !important;
    padding: 15px 10px !important;
    box-sizing: border-box;
  }
}

/* Stats Section ("Мы в цифрах") */
.stats-section {
  padding: 50px 0;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-top: 1px solid rgba(121, 40, 202, 0.15);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

/* Vertical stacked grid for stat cards */
.stats-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .stats-grid-vertical {
    max-width: 700px;
  }
}

/* New Stats Grid Layout & Styles */
.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 40px auto 0 auto;
}

.stat-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  min-height: 40px;
}

.stat-progress-bar {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #7928ca);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    margin-top: 30px;
  }
  .stat-num {
    font-size: 2.0rem;
  }
  .stat-desc {
    font-size: 0.75rem;
    min-height: auto;
  }
  .stat-progress-bar {
    width: 80px;
    margin-top: 8px;
  }
}

/* VNZH proof gallery in stats section */
.vnzh-container {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 50px;
}

/* VNZH Slider Styles */
.vnzh-slider-wrapper {
  overflow: hidden !important;
  position: relative;
  width: 100%;
}

.vnzh-list-new {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  transition: none !important;
  width: max-content !important;
  margin-top: 40px !important;
  margin-bottom: 30px !important;
}

.vnzh-card-new {
  min-width: 380px !important;
  width: 380px !important;
  max-width: 380px !important;
  box-sizing: border-box;
  flex-shrink: 0;
}

.vnzh-card-new .proof-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(121, 40, 202, 0.15);
}

.vnzh-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vnzh-card-new:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .vnzh-slider-wrapper {
    overflow: hidden !important;
    padding: 10px 5px !important;
    margin: 0 !important;
  }
  .vnzh-list-new {
    gap: 15px !important;
    margin-top: 20px !important;
  }
  .vnzh-card-new {
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
  }
}

/* Graphs proof gallery in stats section */
.graphs-container {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

/* Graphs Slider Styles */
.graphs-slider-wrapper {
  overflow: hidden !important;
  position: relative;
  width: 100%;
}

.graphs-list-new {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: max-content !important;
  margin-top: 40px !important;
  margin-bottom: 30px !important;
}

.graph-card-new {
  min-width: 380px !important;
  width: 380px !important;
  max-width: 380px !important;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.graph-card-new .proof-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(121, 40, 202, 0.15);
}

.graph-card-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.graph-card-new:hover img {
  transform: scale(1.03);
}

.graph-card-new .graph-card-content {
  max-width: 100%;
}

.graph-card-new .graph-card-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.graph-card-new .graph-card-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .graphs-slider-wrapper {
    overflow: hidden !important;
    padding: 10px 5px !important;
    margin: 0 !important;
  }
  .graphs-list-new {
    gap: 15px !important;
    margin-top: 20px !important;
  }
  .graph-card-new {
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Seamless Infinite Running Text Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid rgba(24, 20, 36, 0.08);
  border-bottom: 1px solid rgba(24, 20, 36, 0.08);
  padding: 18px 0;
  position: relative;
  z-index: 5;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-slide 40s linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker__item {
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  opacity: 1;
  transition: var(--transition);
}

.ticker__item:hover {
  color: var(--accent-violet) !important;
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Swiper Override Custom Styling for Altair */
.vnzh-swiper, .graphs-swiper {
  width: 100%;
  padding: 20px 0 50px 0 !important;
}

.vnzh-swiper .swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
}

.graphs-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--text-dark) !important;
  opacity: 0.15 !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 4px !important;
  background: var(--accent-pink) !important;
  opacity: 1 !important;
}

/* Premium Staggered Text Reveal */
.reveal-title {
  overflow: hidden;
  white-space: normal;
}

.reveal-word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: normal;
}

.reveal-title.active .reveal-word {
  transform: translateY(0);
  opacity: 1;
}

.reveal-word.gradient-text {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-tagline {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInDesc2 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInDesc2 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

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

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

/* Scroll Reveal animations for cards */
.faq-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper slide constraints override */


.graphs-swiper .graph-slide {
  min-width: 0 !important;
  width: 100%;
}

/* Condition Card Scroll Reveal styling */
.condition-card.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.condition-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .condition-card.reveal {
    opacity: 0 !important;
    transform: translateX(-100px) !important;
    transition: opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  }
  
  .condition-card.reveal.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* Apartment Card Scroll Reveal styling (desktop reset, mobile custom) */
.slide-item.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .slide-item.reveal {
    opacity: 0 !important;
    transform: translateX(-100px) !important;
    transition: opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  }
  
  .slide-item.reveal.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* Interactive hover wiggle animation for active reveal titles */
.reveal-title.active {
  transition: transform 0.3s ease;
}

.reveal-title.active:hover {
  animation: titleWiggle 0.6s ease-in-out infinite alternate;
}

@keyframes titleWiggle {
  0% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(4px);
  }
}

/* Proof Card Scroll Reveal styling (desktop reset, mobile custom) */
.proof-card.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .proof-card.reveal {
    opacity: 0 !important;
    transform: translateX(-100px) !important;
    transition: opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  }
  
  .proof-card.reveal.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* Comprehensive Mobile Spacing Optimization (15px spacing rules) */
@media (max-width: 991px) {
  .conditions-section,
  .calculator-section,
  .proofs-section,
  .stats-section,
  .why-altair-section,
  .compare-section,
  .interior-compare-section,
  .reviews-section,
  .faq-section,
  .call-section,
  .map-section {
    padding: 35px 0 !important;
  }
  
  .apartments-block {
    margin-top: 15px !important;
    padding: 20px 15px !important;
  }
  
  .section-title {
    margin-bottom: 15px !important;
  }
  
  .calc-grid,
  .call-wrapper {
    padding: 20px 15px !important;
    gap: 15px !important;
  }
  
  .vnzh-container,
  .proofs-slider-wrapper,
  .why-altair-section .why-grid {
    margin-top: 15px !important;
  }
}

/* Touch and Drag optimizations for all custom carousels */
.apartments-slider-wrapper,
.proofs-slider-wrapper,
.vnzh-slider-wrapper,
.graphs-slider-wrapper,
.reviews-slider-wrapper,
.stats-slider-wrapper {
  touch-action: pan-y !important;
}

.apartments-slider-wrapper img,
.proofs-slider-wrapper img,
.vnzh-slider-wrapper img,
.graphs-slider-wrapper img,
.reviews-slider-wrapper img,
.stats-slider-wrapper img {
  pointer-events: none !important;
  -webkit-user-drag: none !important;
  user-select: none !important;
  cursor: zoom-in;
}


.review-text-wrap {
  position: relative;
  width: 100%;
}
.review-text-wrap.collapsed .review-text-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-text-wrap .read-more-btn {
  display: inline-block;
  color: var(--accent-pink, #ff007f);
  cursor: pointer;
  font-weight: 600;
  margin-top: 5px;
  font-size: 0.85rem;
  border-bottom: 1px dashed var(--accent-pink, #ff007f);
  user-select: none;
}
.review-text-wrap .read-more-btn:hover {
  color: #e60072;
  border-color: #e60072;
}
